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_Editdb.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_System_Editdb extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_System_Editdb 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/editdb.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(); 
     
    9498     * @return void 
    9599     */ 
    96     function destroy() { 
     100    function destroy() 
     101    { 
    97102        parent::destroy(); 
    98103    } 
     
    105110     * @return void 
    106111     */ 
    107     function initForm(&$objFormParam, &$arrParams) { 
     112    function initForm(&$objFormParam, &$arrParams) 
     113    { 
    108114 
    109115        $objFormParam->addParam('モード', 'mode', INT_LEN, 'n', array('ALPHA_CHECK', 'MAX_LENGTH_CHECK')); 
     
    116122    } 
    117123 
    118     function lfDoChange(&$objFormParam) { 
     124    function lfDoChange(&$objFormParam) 
     125    { 
    119126        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    120127        $arrTarget = $this->lfGetTargetData($objFormParam); 
     
    141148    } 
    142149 
    143     function lfGetTargetData(&$objFormParam) { 
     150    function lfGetTargetData(&$objFormParam) 
     151    { 
    144152        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    145153        $arrIndexFlag    = $objFormParam->getValue('indexflag'); 
     
    184192     * @return void 
    185193     */ 
    186     function lfGetIndexList() { 
     194    function lfGetIndexList() 
     195    { 
    187196        // データベースからインデックス設定一覧を取得する 
    188197        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
Note: See TracChangeset for help on using the changeset viewer.