OSDN Git Service

本家Nucleus CMSの開発を補助するためにコミット
[nucleus-jp/nucleus-next.git] / build / testcases / plugindeptestcases / NP_DepC.php
1 <?php
2 class NP_DepC extends NucleusPlugin {
3
4    function getName() { return 'NP_DepC'; }
5    function getAuthor()  { return 'Edmond Hui (admun)'; }
6    function getURL() { return 'http://www.nowhere.com'; }
7    function getVersion() { return 'v0.0'; }
8    function getDescription() {
9       return 'This plugin is a test dummy Dep';
10    }
11
12    function supportsFeature($what) {
13      switch($what) {
14        case 'SqlTablePrefix':
15          return 1;
16        default:
17          return 0;
18      }
19    }
20
21    function getPluginDep() {
22      return array('NP_DepB', 'NP_DepA');
23    }
24 }
25 ?>