Changeset 18918


Ignore:
Timestamp:
2010/11/06 16:07:20 (13 years ago)
Author:
miningbrownie
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/camp/camp-2_5-E/data/class/SC_Plugin.php

    r18912 r18918  
     1<?php 
     2 
     3 
     4 
     5abstract 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 
     34    protected function getUninstallSQL(){ 
     35 
     36    } 
     37 
     38 
     39} 
Note: See TracChangeset for help on using the changeset viewer.