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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Design extends LC_Page_Admin_Ex  
    35 { 
     34class LC_Page_Admin_Design extends LC_Page_Admin_Ex { 
    3635 
    3736    // }}} 
     
    4342     * @return void 
    4443     */ 
    45     function init() 
    46     { 
     44    function init() { 
    4745        parent::init(); 
    4846        $this->tpl_mainpage = 'design/index.tpl'; 
     
    6159     * @return void 
    6260     */ 
    63     function process() 
    64     { 
     61    function process() { 
    6562        $this->action(); 
    6663        $this->sendResponse(); 
     
    7269     * @return void 
    7370     */ 
    74     function action() 
    75     { 
     71    function action() { 
    7672 
    7773        $objLayout = new SC_Helper_PageLayout_Ex(); 
     
    152148     * @return void 
    153149     */ 
    154     function destroy() 
    155     { 
     150    function destroy() { 
    156151        parent::destroy(); 
    157152    } 
     
    164159     * @return void 
    165160     */ 
    166     function lfInitParam(&$objFormParam, $bloc_cnt = 0) 
    167     { 
     161    function lfInitParam(&$objFormParam, $bloc_cnt = 0) { 
    168162        $objFormParam->addParam('ページID', 'page_id', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK')); 
    169163        $objFormParam->addParam('端末種別ID', 'device_type_id', INT_LEN, 'n', array('MAX_LENGTH_CHECK', 'NUM_CHECK')); 
     
    187181     * @return array レイアウト情報の配列 
    188182     */ 
    189     function getLayout($device_type_id, $page_id, &$objLayout) 
    190     { 
     183    function getLayout($device_type_id, $page_id, &$objLayout) { 
    191184        $arrResults = array(); 
    192185        $i = 0; 
     
    219212     * @return void 
    220213     */ 
    221     function copyBloc(&$arrDest, $arrFrom, $cnt) 
    222     { 
     214    function copyBloc(&$arrDest, $arrFrom, $cnt) { 
    223215        $arrDest[$cnt]['target_id'] = $this->arrTarget[$arrFrom['target_id']]; 
    224216        $arrDest[$cnt]['bloc_id'] = $arrFrom['bloc_id']; 
     
    235227     * @return bool 存在する場合 true 
    236228     */ 
    237     function existsBloc($arrBloc, $arrToBlocs) 
    238     { 
     229    function existsBloc($arrBloc, $arrToBlocs) { 
    239230        foreach ($arrToBlocs as $arrToBloc) { 
    240231            if ($arrBloc['bloc_id'] === $arrToBloc['bloc_id']) { 
     
    252243     * @return string プレビューを行う tpl_mainpage ファイル名 
    253244     */ 
    254     function savePreviewData($page_id, &$objLayout) 
    255     { 
     245    function savePreviewData($page_id, &$objLayout) { 
    256246        $arrPageData = $objLayout->getPageProperties(DEVICE_TYPE_PC, $page_id); 
    257247        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
     
    268258     * @return void 
    269259     */ 
    270     function placingBlocs(&$objFormParam, $is_preview = false) 
    271     { 
     260    function placingBlocs(&$objFormParam, $is_preview = false) { 
    272261        $page_id = $is_preview ? 0 : $objFormParam->getValue('page_id'); 
    273262        $device_type_id = $objFormParam->getValue('device_type_id'); 
Note: See TracChangeset for help on using the changeset viewer.