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/design/LC_Page_Admin_Design_Bloc.php

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Design_Bloc extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_Design_Bloc 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 = 'design/bloc.tpl'; 
     
    6062     * @return void 
    6163     */ 
    62     function process() { 
     64    function process() 
     65    { 
    6366        $this->action(); 
    6467        $this->sendResponse(); 
     
    7073     * @return void 
    7174     */ 
    72     function action() { 
     75    function action() 
     76    { 
    7377 
    7478        $objFormParam = new SC_FormParam_Ex(); 
     
    150154     * @return void 
    151155     */ 
    152     function destroy() { 
     156    function destroy() 
     157    { 
    153158        parent::destroy(); 
    154159    } 
     
    160165     * @return void 
    161166     */ 
    162     function lfInitParam(&$objFormParam) { 
     167    function lfInitParam(&$objFormParam) 
     168    { 
    163169        $objFormParam->addParam('ブロックID', 'bloc_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    164170        $objFormParam->addParam('端末種別ID', 'device_type_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
     
    176182     * @return array ブロック情報の配列 
    177183     */ 
    178     function getBlocTemplate($device_type_id, $bloc_id, &$objLayout) { 
     184    function getBlocTemplate($device_type_id, $bloc_id, &$objLayout) 
     185    { 
    179186        $arrBloc = $objLayout->getBlocs($device_type_id, 'bloc_id = ?', array($bloc_id)); 
    180187        if (SC_Utils_Ex::isAbsoluteRealPath($arrBloc[0]['tpl_path'])) { 
     
    200207     *                         失敗した場合 false 
    201208     */ 
    202     function doRegister(&$objFormParam, &$objLayout) { 
     209    function doRegister(&$objFormParam, &$objLayout) 
     210    { 
    203211        $arrParams = $objFormParam->getHashArray(); 
    204212 
     
    257265     * @return boolean 登録が成功した場合 true; 失敗した場合 false 
    258266     */ 
    259     function doDelete(&$objFormParam, &$objLayout) { 
     267    function doDelete(&$objFormParam, &$objLayout) 
     268    { 
    260269        $arrParams = $objFormParam->getHashArray(); 
    261270        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    299308     * @return array エラーメッセージの配列 
    300309     */ 
    301     function lfCheckError(&$objFormParam, &$arrErr, &$objLayout) { 
     310    function lfCheckError(&$objFormParam, &$arrErr, &$objLayout) 
     311    { 
    302312        $arrParams = $objFormParam->getHashArray(); 
    303313        $objErr = new SC_CheckError_Ex($arrParams); 
Note: See TracChangeset for help on using the changeset viewer.