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

    r22206 r22567  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Design extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_Design 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/index.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(); 
     
    148152     * @return void 
    149153     */ 
    150     function destroy() { 
     154    function destroy() 
     155    { 
    151156        parent::destroy(); 
    152157    } 
     
    159164     * @return void 
    160165     */ 
    161     function lfInitParam(&$objFormParam, $bloc_cnt = 0) { 
     166    function lfInitParam(&$objFormParam, $bloc_cnt = 0) 
     167    { 
    162168        $objFormParam->addParam('ページID', 'page_id', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK')); 
    163169        $objFormParam->addParam('端末種別ID', 'device_type_id', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK')); 
     
    181187     * @return array レイアウト情報の配列 
    182188     */ 
    183     function getLayout($device_type_id, $page_id, &$objLayout) { 
     189    function getLayout($device_type_id, $page_id, &$objLayout) 
     190    { 
    184191        $arrResults = array(); 
    185192        $i = 0; 
     
    212219     * @return void 
    213220     */ 
    214     function copyBloc(&$arrDest, $arrFrom, $cnt) { 
     221    function copyBloc(&$arrDest, $arrFrom, $cnt) 
     222    { 
    215223        $arrDest[$cnt]['target_id'] = $this->arrTarget[$arrFrom['target_id']]; 
    216224        $arrDest[$cnt]['bloc_id'] = $arrFrom['bloc_id']; 
     
    227235     * @return bool 存在する場合 true 
    228236     */ 
    229     function existsBloc($arrBloc, $arrToBlocs) { 
     237    function existsBloc($arrBloc, $arrToBlocs) 
     238    { 
    230239        foreach ($arrToBlocs as $arrToBloc) { 
    231240            if ($arrBloc['bloc_id'] === $arrToBloc['bloc_id']) { 
     
    243252     * @return string プレビューを行う tpl_mainpage ファイル名 
    244253     */ 
    245     function savePreviewData($page_id, &$objLayout) { 
     254    function savePreviewData($page_id, &$objLayout) 
     255    { 
    246256        $arrPageData = $objLayout->getPageProperties(DEVICE_TYPE_PC, $page_id); 
    247257        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    258268     * @return void 
    259269     */ 
    260     function placingBlocs(&$objFormParam, $is_preview = false) { 
     270    function placingBlocs(&$objFormParam, $is_preview = false) 
     271    { 
    261272        $page_id = $is_preview ? 0 : $objFormParam->getValue('page_id'); 
    262273        $device_type_id = $objFormParam->getValue('device_type_id'); 
Note: See TracChangeset for help on using the changeset viewer.