Ignore:
Timestamp:
2013/02/18 19:09:54 (11 years ago)
Author:
shutta
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.12.4)
Zend Framework PHP 標準コーディング規約のコーディングスタイルへ準拠。
classおよびfunctionの開始波括弧「{」のスタイルを修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/admin/system/LC_Page_Admin_System_System.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_System_System extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_System_System extends LC_Page_Admin_Ex  
     35{ 
    3536 
    3637    // }}} 
     
    4243     * @return void 
    4344     */ 
    44     function init() { 
     45    function init() 
     46    { 
    4547        parent::init(); 
    4648        $this->tpl_mainpage = 'system/system.tpl'; 
     
    5658     * @return void 
    5759     */ 
    58     function process() { 
     60    function process() 
     61    { 
    5962        $this->action(); 
    6063        $this->sendResponse(); 
     
    6669     * @return void 
    6770     */ 
    68     function action() { 
     71    function action() 
     72    { 
    6973 
    7074        $objFormParam = new SC_FormParam_Ex(); 
     
    9296     * @return void 
    9397     */ 
    94     function destroy() { 
     98    function destroy() 
     99    { 
    95100        parent::destroy(); 
    96101    } 
     
    103108     * @return void 
    104109     */ 
    105     function initForm(&$objFormParam, &$arrParams) { 
     110    function initForm(&$objFormParam, &$arrParams) 
     111    { 
    106112        $objFormParam->addParam('mode', 'mode', INT_LEN, '', array('ALPHA_CHECK', 'MAX_LENGTH_CHECK')); 
    107113        $objFormParam->setParam($arrParams); 
     
    113119     * @return array システム情報 
    114120     */ 
    115     function getSystemInfo() { 
     121    function getSystemInfo() 
     122    { 
    116123        $objDB = SC_DB_DBFactory_Ex::getInstance(); 
    117124 
Note: See TracChangeset for help on using the changeset viewer.