Changeset 19492
- Timestamp:
- 2010/11/07 03:33:51 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/camp/camp-2_5-E/data/class/SC_Plugin.php
r19490 r19492 3 3 class SC_Plugin 4 4 { 5 5 6 6 /** 7 7 * … … 14 14 $this->__construct(); 15 15 } 16 16 17 17 function __construct(){ 18 18 if(!defined(PLUGIN_PATH)){ … … 21 21 $this->init(); 22 22 } 23 23 24 24 function init(){ 25 26 25 26 27 27 } 28 28 29 29 function enable($classname){ 30 30 31 31 } 32 32 33 33 function getVersion(){ 34 34 35 35 } 36 36 37 37 function getName(){ 38 38 39 39 } 40 40 41 41 function process(){ 42 42 43 43 } 44 44 45 45 function mobileprocess(){ 46 46 47 47 } 48 48 49 49 public function install(){ 50 50 51 51 } 52 52 … … 54 54 55 55 } 56 57 publicfunction disablePlugin(){58 56 57 function disablePlugin(){ 58 59 59 } 60 61 public function enablePlugin(){ 62 63 60 61 function enablePlugin(){ 62 64 63 } 65 64 66 65 67 66 /** 68 * 67 * 69 68 * @return String インストール用のSQL 70 69 */ 71 protectedfunction getInstallSQL(){72 70 function getInstallSQL(){ 71 73 72 } 74 73 75 76 protectedfunction getUninstallSQL(){74 75 function getUninstallSQL(){ 77 76 78 77 }
Note: See TracChangeset
for help on using the changeset viewer.