source:
branches/camp/camp-2_5-E/data/class/SC_Plugin.php
@
18919
Revision 18919, 409 bytes checked in by miningbrownie, 12 years ago (diff) |
---|
Line | |
---|---|
1 | <?php |
2 | |
3 | |
4 | |
5 | abstract class SC_Plugin |
6 | { |
7 | |
8 | /** |
9 | * |
10 | * plugin_path |
11 | * @var String |
12 | */ |
13 | private $path; |
14 | |
15 | public function __construct(){ |
16 | $this->init(); |
17 | } |
18 | |
19 | public abstract function init(); |
20 | |
21 | |
22 | public function install(){ |
23 | |
24 | } |
25 | |
26 | public function uninstall(){ |
27 | |
28 | } |
29 | |
30 | protected function getInstallSQL(){ |
31 | } |
32 | |
33 | protected function getUninstallSQL(){ |
34 | |
35 | } |
36 | |
37 | |
38 | } |
Note: See TracBrowser
for help on using the repository browser.