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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_System_Parameter extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_System_Parameter extends LC_Page_Admin_Ex  
     35{ 
    3536 
    3637    // {{{ properties 
     
    5354     * @return void 
    5455     */ 
    55     function init() { 
     56    function init() 
     57    { 
    5658        parent::init(); 
    5759        $this->tpl_mainpage = 'system/parameter.tpl'; 
     
    6769     * @return void 
    6870     */ 
    69     function process() { 
     71    function process() 
     72    { 
    7073        $this->action(); 
    7174        $this->sendResponse(); 
     
    7780     * @return void 
    7881     */ 
    79     function action() { 
     82    function action() 
     83    { 
    8084 
    8185        $masterData = new SC_DB_MasterData_Ex(); 
     
    119123     * @return void 
    120124     */ 
    121     function destroy() { 
     125    function destroy() 
     126    { 
    122127        parent::destroy(); 
    123128    } 
     
    131136     * @return void 
    132137     */ 
    133     function update(&$arrKeys, &$arrForm) { 
     138    function update(&$arrKeys, &$arrForm) 
     139    { 
    134140        $data = array(); 
    135141        $masterData = new SC_DB_MasterData_Ex(); 
     
    152158     * @return void 
    153159     */ 
    154     function errorCheck(&$arrKeys, &$arrForm) { 
     160    function errorCheck(&$arrKeys, &$arrForm) 
     161    { 
    155162        $objErr = new SC_CheckError_Ex($arrForm); 
    156163        for ($i = 0; $i < count($arrKeys); $i++) { 
     
    168175     * @return array パラメーターのキーの配列 
    169176     */ 
    170     function getParamKeys(&$masterData) { 
     177    function getParamKeys(&$masterData) 
     178    { 
    171179        $keys = array(); 
    172180        $i = 0; 
Note: See TracChangeset for help on using the changeset viewer.