Ignore:
Timestamp:
2013/08/26 15:52:37 (11 years ago)
Author:
m_uehara
Message:

#2348 r23116 - r23125 をマージ

File:
1 edited

Legend:

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

    r22926 r23126  
    3838     * @return void 
    3939     */ 
    40     function init() 
     40    public function init() 
    4141    { 
    4242        parent::init(); 
     
    5353     * @return void 
    5454     */ 
    55     function process() 
     55    public function process() 
    5656    { 
    5757        $this->action(); 
     
    6464     * @return void 
    6565     */ 
    66     function action() 
     66    public function action() 
    6767    { 
    6868        $objFormParam = new SC_FormParam_Ex(); 
     
    8989     * フォームパラメーター初期化 
    9090     * 
    91      * @param object $objFormParam 
    92      * @param array $arrParams $_POST値 
    93      * @return void 
    94      */ 
    95     function initForm(&$objFormParam, &$arrParams) 
     91     * @param  object $objFormParam 
     92     * @param  array  $arrParams    $_POST値 
     93     * @return void 
     94     */ 
     95    public function initForm(&$objFormParam, &$arrParams) 
    9696    { 
    9797        $objFormParam->addParam('モード', 'mode', INT_LEN, 'n', array('ALPHA_CHECK', 'MAX_LENGTH_CHECK')); 
     
    103103    } 
    104104 
    105     function lfDoChange(&$objFormParam) 
     105    public function lfDoChange(&$objFormParam) 
    106106    { 
    107107        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    110110        if (is_array($arrTarget) && count($arrTarget) == 0) { 
    111111            $message = "window.alert('変更対象となるデータはありませんでした。');"; 
     112 
    112113            return $message; 
    113114        } elseif (!is_array($arrTarget) && $arrTarget != '') { 
     
    130131    } 
    131132 
    132     function lfGetTargetData(&$objFormParam) 
     133    public function lfGetTargetData(&$objFormParam) 
    133134    { 
    134135        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    157158                // 通常の送信ではエラーにならないはずです。 
    158159                $message = "window.alert('不正なデータがあったため処理を中断しました。');"; 
     160 
    159161                return $message; 
    160162            } 
     
    175177     * @return void 
    176178     */ 
    177     function lfGetIndexList() 
     179    public function lfGetIndexList() 
    178180    { 
    179181        // データベースからインデックス設定一覧を取得する 
Note: See TracChangeset for help on using the changeset viewer.