OSDN Git Service

git-svn-id: https://svn.sourceforge.jp/svnroot/nucleus-jp/plugin@882 1ca29b6e-896d...
[nucleus-jp/nucleus-plugins.git] / NP_UpdatePingServer / trunk / updatepingserver / index.php
1 <?php
2 /**
3   * NP_UpdatePingServer Management Page
4   *     Taka ( http://spectra.reverb.jp/ ) 2006-08-23
5   */
6
7         // if your 'plugin' directory is not in the default location,
8         // edit this variable to point to your site directory
9         // (where config.php is)
10         $strRel = '../../../';
11
12         require($strRel . 'config.php');
13
14         if (!$member->isLoggedIn())
15                 doError('You\'re not logged in.');
16
17         require($DIR_LIBS . 'PLUGINADMIN.php');
18         require('./admin/PlugView.php');
19         require('./admin/PlugTemplate.php');
20         require('./admin/PlugManagement.php');
21         require('./admin/PlugController.php');
22         require('./admin/UpdatePingServer_Management.php');
23
24         $MyTagsController = new PlugController('UpdatePingServer');
25         $MyTagsController->forward(requestVar('action'));