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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_System_Parameter extends LC_Page_Admin_Ex  
    35 { 
     34class LC_Page_Admin_System_Parameter extends LC_Page_Admin_Ex { 
    3635 
    3736    // {{{ properties 
     
    5453     * @return void 
    5554     */ 
    56     function init() 
    57     { 
     55    function init() { 
    5856        parent::init(); 
    5957        $this->tpl_mainpage = 'system/parameter.tpl'; 
     
    6967     * @return void 
    7068     */ 
    71     function process() 
    72     { 
     69    function process() { 
    7370        $this->action(); 
    7471        $this->sendResponse(); 
     
    8077     * @return void 
    8178     */ 
    82     function action() 
    83     { 
     79    function action() { 
    8480 
    8581        $masterData = new SC_DB_MasterData_Ex(); 
     
    123119     * @return void 
    124120     */ 
    125     function destroy() 
    126     { 
     121    function destroy() { 
    127122        parent::destroy(); 
    128123    } 
     
    136131     * @return void 
    137132     */ 
    138     function update(&$arrKeys, &$arrForm) 
    139     { 
     133    function update(&$arrKeys, &$arrForm) { 
    140134        $data = array(); 
    141135        $masterData = new SC_DB_MasterData_Ex(); 
     
    158152     * @return void 
    159153     */ 
    160     function errorCheck(&$arrKeys, &$arrForm) 
    161     { 
     154    function errorCheck(&$arrKeys, &$arrForm) { 
    162155        $objErr = new SC_CheckError_Ex($arrForm); 
    163156        for ($i = 0; $i < count($arrKeys); $i++) { 
     
    175168     * @return array パラメーターのキーの配列 
    176169     */ 
    177     function getParamKeys(&$masterData) 
    178     { 
     170    function getParamKeys(&$masterData) { 
    179171        $keys = array(); 
    180172        $i = 0; 
Note: See TracChangeset for help on using the changeset viewer.