OSDN Git Service

254d44a5e002f796d7f274b9927b441c7f247152
[nucleus-jp/nucleus-jp-ancient.git] / euc / build / testcases / plugindeptestcases / NP_DepA.php
1 <?php\r
2 class NP_DepA extends NucleusPlugin {\r
3 \r
4    function getName() { return 'NP_DepA'; }\r
5    function getAuthor()  { return 'Edmond Hui (admun)'; }\r
6    function getURL() { return 'http://www.nowhere.com'; }\r
7    function getVersion() { return 'v0.0'; }\r
8    function getDescription() {\r
9       return 'This plugin is a test dummy Dep';\r
10    }\r
11 \r
12    function supportsFeature($what) {\r
13      switch($what) {\r
14        case 'SqlTablePrefix':\r
15          return 1;\r
16        default:\r
17          return 0;\r
18      }\r
19    }\r
20 \r
21    function getPluginDep() {\r
22      return array('NP_DepB');\r
23    }\r
24 }\r
25 ?>\r