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

    r22567 r22796  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_Design_CSS extends LC_Page_Admin_Ex  
    35 { 
     34class LC_Page_Admin_Design_CSS 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/css.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(); 
     
    146142     * @return void 
    147143     */ 
    148     function destroy() 
    149     { 
     144    function destroy() { 
    150145        parent::destroy(); 
    151146    } 
     
    157152     * @return void 
    158153     */ 
    159     function lfInitParam(&$objFormParam) 
    160     { 
     154    function lfInitParam(&$objFormParam) { 
    161155        $objFormParam->addParam('端末種別ID', 'device_type_id', INT_LEN, 'n', array('NUM_CHECK', 'MAX_LENGTH_CHECK')); 
    162156        $objFormParam->addParam('CSSファイル名', 'css_name', STEXT_LEN, 'a', array('MAX_LENGTH_CHECK')); 
     
    178172     * @return boolean 登録が成功した場合 true; 失敗した場合 false 
    179173     */ 
    180     function doRegister($css_dir, $css_name, $old_css_name, $css_path, $css_data) 
    181     { 
     174    function doRegister($css_dir, $css_name, $old_css_name, $css_path, $css_data) { 
    182175        $objFileManager = new SC_Helper_FileManager_Ex(); 
    183176 
     
    203196     * @return boolean 削除が成功した場合 true; 失敗した場合 false 
    204197     */ 
    205     function doDelete($css_path) 
    206     { 
     198    function doDelete($css_path) { 
    207199        if (!unlink($css_path)) { 
    208200            $this->arrErr['err'] = '※ CSSの削除に失敗しました<br />'; 
     
    218210     * @return array ファイルリスト 
    219211     */ 
    220     function getCSSList($css_dir) 
    221     { 
     212    function getCSSList($css_dir) { 
    222213        $objFileManager = new SC_Helper_FileManager_Ex(); 
    223214 
     
    240231     * @return array エラーメッセージの配列 
    241232     */ 
    242     function lfCheckError(&$objFormParam, &$arrErr) 
    243     { 
     233    function lfCheckError(&$objFormParam, &$arrErr) { 
    244234        $arrParams = $objFormParam->getHashArray(); 
    245235        $objErr = new SC_CheckError_Ex($arrParams); 
     
    276266     * @return string CSSディレクトリ 
    277267     */ 
    278     function getCSSDir($device_type_id) 
    279     { 
     268    function getCSSDir($device_type_id) { 
    280269        return SC_Helper_PageLayout_Ex::getTemplatePath($device_type_id, true) . 'css/'; 
    281270    } 
     
    286275     * @return boolean  
    287276     */ 
    288     function checkPath($str) 
    289     { 
     277    function checkPath($str) { 
    290278        // 含む場合はfalse 
    291279        if (preg_match('|\./|', $str)) { 
Note: See TracChangeset for help on using the changeset viewer.