OSDN Git Service

This commit was generated by cvs2svn to compensate for changes in r4,
[nucleus-jp/nucleus-jp-ancient.git] / euc / build / testcases / plugindeptestcases / NP_DepC.php
1 <?php\r
2 class NP_DepC extends NucleusPlugin {\r
3 \r
4    function getName() { return 'NP_DepC'; }\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', 'NP_DepA');\r
23    }\r
24 }\r
25 ?>\r