Changeset 18986


Ignore:
Timestamp:
2010/11/06 19:53:31 (13 years ago)
Author:
miningbrownie
Message:
 
Location:
branches/camp/camp-2_5-E/data
Files:
4 added
2 edited

Legend:

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

    r18977 r18986  
    11<?php 
    22 
    3 abstract class SC_Plugin 
     3class SC_Plugin 
    44{ 
    55     
     
    99     * @var String 
    1010     */ 
    11     private $path; 
     11    var $path; 
    1212 
     13    function SC_Plugin(){ 
     14        $this->__construct(); 
     15    } 
     16     
    1317    public function __construct(){ 
    1418        if(!defined(PLUGIN_PATH)){ 
     
    1822    } 
    1923     
    20     public abstract function init(); 
     24    function init(){ 
     25         
     26    } 
    2127     
    22     public abstract function enable(); 
     28    function enable(); 
    2329     
    24     public abstract function getVersion(); 
     30    function getVersion(); 
    2531     
    26     public abstract function getName(); 
     32    function getName(); 
    2733     
    28     public abstract function process(); 
     34    function process(); 
    2935     
    30     public abstract function mobileprocess(); 
     36    function mobileprocess(); 
    3137     
    3238    public function install(){ 
  • branches/camp/camp-2_5-E/data/class/helper/SC_Helper_Plugin.php

    r18976 r18986  
    5252 
    5353 
     54     
     55     
    5456    /* プラグイン 
    5557     * 
Note: See TracChangeset for help on using the changeset viewer.