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 / actions / pluginhelp.php
1 <?php
2
3 class UpdatePingServer_pluginhelp
4 {
5         function execute(&$controller, $msg)
6         {
7                 $admin =& $controller->getAdmin();
8                 
9                 $helpfile = $admin->getHelpPath();
10                 
11                 $view =& $admin->getView();
12                 $view->assign('helpfile', $helpfile);
13                 
14                 $view->display('pluginhelp.tpl.php');
15         }
16 }
17
18 ?>