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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Design_MainEdit extends LC_Page_Admin_Ex  
    35 { 
     34class LC_Page_Admin_Design_MainEdit 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/main_edit.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(); 
     
    145141     * @return void 
    146142     */ 
    147     function destroy() 
    148     { 
     143    function destroy() { 
    149144        parent::destroy(); 
    150145    } 
     
    158153     * @return void 
    159154     */ 
    160     function lfInitParam(&$objFormParam) 
    161     { 
     155    function lfInitParam(&$objFormParam) { 
    162156        $objFormParam->addParam('ページID', 'page_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    163157        $objFormParam->addParam('端末種別ID', 'device_type_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
     
    178172     * @return array ページデータの配列 
    179173     */ 
    180     function getTplMainpage($device_type_id, $page_id, &$objLayout) 
    181     { 
     174    function getTplMainpage($device_type_id, $page_id, &$objLayout) { 
    182175        $arrPageData = $objLayout->getPageProperties($device_type_id, $page_id); 
    183176 
     
    203196     *                         失敗した場合 false 
    204197     */ 
    205     function doRegister(&$objFormParam, &$objLayout) 
    206     { 
     198    function doRegister(&$objFormParam, &$objLayout) { 
    207199        $filename = $objFormParam->getValue('filename'); 
    208200        $arrParams['device_type_id'] = $objFormParam->getValue('device_type_id'); 
     
    259251     * @return integer ページID 
    260252     */ 
    261     function registerPage($arrParams, &$objLayout) 
    262     { 
     253    function registerPage($arrParams, &$objLayout) { 
    263254        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    264255 
     
    304295     * @return array エラーメッセージの配列 
    305296     */ 
    306     function lfCheckError(&$objFormParam, &$arrErr) 
    307     { 
     297    function lfCheckError(&$objFormParam, &$arrErr) { 
    308298        $arrParams = $objFormParam->getHashArray(); 
    309299        $objErr = new SC_CheckError_Ex($arrParams); 
     
    354344     * @return boolean 作成に成功した場合 true 
    355345     */ 
    356     function createPHPFile($filename) 
    357     { 
     346    function createPHPFile($filename) { 
    358347        $path = USER_REALDIR . $filename . '.php'; 
    359348 
Note: See TracChangeset for help on using the changeset viewer.