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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Design_MainEdit extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_Design_MainEdit 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/main_edit.tpl'; 
     
    5961     * @return void 
    6062     */ 
    61     function process() { 
     63    function process() 
     64    { 
    6265        $this->action(); 
    6366        $this->sendResponse(); 
     
    6972     * @return void 
    7073     */ 
    71     function action() { 
     74    function action() 
     75    { 
    7276 
    7377        $objLayout = new SC_Helper_PageLayout_Ex(); 
     
    141145     * @return void 
    142146     */ 
    143     function destroy() { 
     147    function destroy() 
     148    { 
    144149        parent::destroy(); 
    145150    } 
     
    153158     * @return void 
    154159     */ 
    155     function lfInitParam(&$objFormParam) { 
     160    function lfInitParam(&$objFormParam) 
     161    { 
    156162        $objFormParam->addParam('ページID', 'page_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    157163        $objFormParam->addParam('端末種別ID', 'device_type_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
     
    172178     * @return array ページデータの配列 
    173179     */ 
    174     function getTplMainpage($device_type_id, $page_id, &$objLayout) { 
     180    function getTplMainpage($device_type_id, $page_id, &$objLayout) 
     181    { 
    175182        $arrPageData = $objLayout->getPageProperties($device_type_id, $page_id); 
    176183 
     
    196203     *                         失敗した場合 false 
    197204     */ 
    198     function doRegister(&$objFormParam, &$objLayout) { 
     205    function doRegister(&$objFormParam, &$objLayout) 
     206    { 
    199207        $filename = $objFormParam->getValue('filename'); 
    200208        $arrParams['device_type_id'] = $objFormParam->getValue('device_type_id'); 
     
    251259     * @return integer ページID 
    252260     */ 
    253     function registerPage($arrParams, &$objLayout) { 
     261    function registerPage($arrParams, &$objLayout) 
     262    { 
    254263        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    255264 
     
    295304     * @return array エラーメッセージの配列 
    296305     */ 
    297     function lfCheckError(&$objFormParam, &$arrErr) { 
     306    function lfCheckError(&$objFormParam, &$arrErr) 
     307    { 
    298308        $arrParams = $objFormParam->getHashArray(); 
    299309        $objErr = new SC_CheckError_Ex($arrParams); 
     
    344354     * @return boolean 作成に成功した場合 true 
    345355     */ 
    346     function createPHPFile($filename) { 
     356    function createPHPFile($filename) 
     357    { 
    347358        $path = USER_REALDIR . $filename . '.php'; 
    348359 
Note: See TracChangeset for help on using the changeset viewer.