Ignore:
Timestamp:
2013/05/02 18:11:36 (11 years ago)
Author:
h_yoshimoto
Message:

#2236 2.12.3リリース以降の2.12-devへのコミット差し戻し

File:
1 edited

Legend:

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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_System_Editdb extends LC_Page_Admin_Ex  
    35 { 
     34class LC_Page_Admin_System_Editdb extends LC_Page_Admin_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846        $this->tpl_mainpage = 'system/editdb.tpl'; 
     
    5856     * @return void 
    5957     */ 
    60     function process() 
    61     { 
     58    function process() { 
    6259        $this->action(); 
    6360        $this->sendResponse(); 
     
    6966     * @return void 
    7067     */ 
    71     function action() 
    72     { 
     68    function action() { 
    7369 
    7470        $objFormParam = new SC_FormParam_Ex(); 
     
    9894     * @return void 
    9995     */ 
    100     function destroy() 
    101     { 
     96    function destroy() { 
    10297        parent::destroy(); 
    10398    } 
     
    110105     * @return void 
    111106     */ 
    112     function initForm(&$objFormParam, &$arrParams) 
    113     { 
     107    function initForm(&$objFormParam, &$arrParams) { 
    114108 
    115109        $objFormParam->addParam('モード', 'mode', INT_LEN, 'n', array('ALPHA_CHECK', 'MAX_LENGTH_CHECK')); 
     
    122116    } 
    123117 
    124     function lfDoChange(&$objFormParam) 
    125     { 
     118    function lfDoChange(&$objFormParam) { 
    126119        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    127120        $arrTarget = $this->lfGetTargetData($objFormParam); 
     
    148141    } 
    149142 
    150     function lfGetTargetData(&$objFormParam) 
    151     { 
     143    function lfGetTargetData(&$objFormParam) { 
    152144        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    153145        $arrIndexFlag    = $objFormParam->getValue('indexflag'); 
     
    192184     * @return void 
    193185     */ 
    194     function lfGetIndexList() 
    195     { 
     186    function lfGetIndexList() { 
    196187        // データベースからインデックス設定一覧を取得する 
    197188        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
Note: See TracChangeset for help on using the changeset viewer.