Ignore:
Timestamp:
2012/02/11 04:20:07 (14 years ago)
Author:
Seasoft
Message:

#1625 (typo修正・ソース整形・ソースコメントの改善)

  • ソース整形(主に制御構造のスペース)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/SC_Plugin.php

    r20764 r21479  
    1010    var $path; 
    1111 
    12     function SC_Plugin(){ 
     12    function SC_Plugin() { 
    1313        $this->__construct(); 
    1414    } 
    1515 
    16     function __construct(){ 
     16    function __construct() { 
    1717        if (!defined(PLUGIN_REALDIR)) { 
    1818            define('PLUGIN_REALDIR', USER_REALDIR . 'plugins/'); 
     
    2121    } 
    2222 
    23     function init(){ 
     23    function init() { 
    2424    } 
    2525 
    26     function enable($classname){ 
     26    function enable($classname) { 
    2727    } 
    2828 
    29     function getVersion(){ 
     29    function getVersion() { 
    3030    } 
    3131 
    32     function getName(){ 
     32    function getName() { 
    3333    } 
    3434 
    35     function process(){ 
     35    function process() { 
    3636    } 
    3737 
    38     function mobileprocess(){ 
     38    function mobileprocess() { 
    3939    } 
    4040 
    41     function install(){ 
     41    function install() { 
    4242    } 
    4343 
    44     function uninstall(){ 
     44    function uninstall() { 
    4545    } 
    4646 
    47     function disablePlugin(){ 
     47    function disablePlugin() { 
    4848        $objQuery = new SC_Query_Ex(); 
    4949        $name = preg_replace("/.php/", "", __FILE__); // XXX 正規表現エスケープ漏れでは? 
     
    5151    } 
    5252 
    53     function enablePlugin(){ 
     53    function enablePlugin() { 
    5454        $objQuery = new SC_Query_Ex(); 
    5555        $name = preg_replace("/.php/", "", __FILE__); // XXX 正規表現エスケープ漏れでは? 
     
    6161     * @return String インストール用のSQL 
    6262     */ 
    63     function getInstallSQL(){ 
     63    function getInstallSQL() { 
    6464    } 
    6565 
    66     function getUninstallSQL(){ 
     66    function getUninstallSQL() { 
    6767    } 
    6868} 
Note: See TracChangeset for help on using the changeset viewer.