Changeset 20560


Ignore:
Timestamp:
2011/03/09 11:05:01 (13 years ago)
Author:
t_yuo
Message:

#948 (コンテンツ管理>CSV出力設定、デザイン管理 サブタイトルが欲しい)

  • デザイン管理に対応しました。
Location:
branches/version-2_5-dev/data/class/pages/admin/design
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/admin/design/LC_Page_Admin_Design.php

    r20541 r20560  
    5252        $masterData = new SC_DB_MasterData_Ex(); 
    5353        $this->arrTarget = $masterData->getMasterData("mtb_target"); 
     54        $this->arrDeviceType = $masterData->getMasterData('mtb_device_type'); 
    5455    } 
    5556 
     
    8788            $device_type_id = DEVICE_TYPE_PC; 
    8889        } 
     90 
     91        //サブタイトルの追加 
     92        $this->tpl_subtitle .= ' - ' . $this->arrDeviceType[$device_type_id]; 
    8993 
    9094        // 編集可能ページを取得 
  • branches/version-2_5-dev/data/class/pages/admin/design/LC_Page_Admin_Design_Bloc.php

    r20538 r20560  
    5151        $this->tpl_mainno = 'design'; 
    5252        $this->tpl_subtitle = 'ブロック設定'; 
     53        $masterData = new SC_DB_MasterData_Ex(); 
     54        $this->arrDeviceType = $masterData->getMasterData('mtb_device_type'); 
    5355    } 
    5456 
     
    8991        $this->objLayout = new SC_Helper_PageLayout_Ex(); 
    9092        $package_path = $this->objLayout->getTemplatePath($device_type_id) . BLOC_DIR; 
     93 
     94        //サブタイトルの追加 
     95        $this->tpl_subtitle .= ' - ' . $this->arrDeviceType[$device_type_id]; 
    9196 
    9297        // ブロック一覧を取得 
  • branches/version-2_5-dev/data/class/pages/admin/design/LC_Page_Admin_Design_CSS.php

    r20538 r20560  
    5151        $this->tpl_mainno = 'design'; 
    5252        $this->tpl_subtitle = 'CSS設定'; 
     53        $masterData = new SC_DB_MasterData_Ex(); 
     54        $this->arrDeviceType = $masterData->getMasterData('mtb_device_type'); 
    5355    } 
    5456 
     
    100102            $device_type_id = DEVICE_TYPE_PC; 
    101103        } 
     104 
     105        //サブタイトルの追加 
     106        $this->tpl_subtitle .= ' - ' . $this->arrDeviceType[$device_type_id]; 
    102107 
    103108        $css_dir = $this->objLayout->getTemplatePath($device_type_id, true) . "css/"; 
  • branches/version-2_5-dev/data/class/pages/admin/design/LC_Page_Admin_Design_Header.php

    r20538 r20560  
    5151        $this->tpl_mainno = 'design'; 
    5252        $this->tpl_subtitle = 'ヘッダー/フッター設定'; 
     53        $masterData = new SC_DB_MasterData_Ex(); 
     54        $this->arrDeviceType = $masterData->getMasterData('mtb_device_type'); 
    5355    } 
    5456 
     
    7981        } 
    8082        $this->device_type_id = $device_type_id; 
     83 
     84        //サブタイトルの追加 
     85        $this->tpl_subtitle .= ' - ' . $this->arrDeviceType[$device_type_id]; 
    8186 
    8287        // テンプレートのパス 
  • branches/version-2_5-dev/data/class/pages/admin/design/LC_Page_Admin_Design_MainEdit.php

    r20538 r20560  
    5050        $this->tpl_mainno = 'design'; 
    5151        $this->tpl_subtitle = 'ページ詳細設定'; 
     52        $masterData = new SC_DB_MasterData_Ex(); 
     53        $this->arrDeviceType = $masterData->getMasterData('mtb_device_type'); 
    5254    } 
    5355 
     
    8587            $device_type_id = DEVICE_TYPE_PC; 
    8688        } 
     89 
     90        //サブタイトルの追加 
     91        $this->tpl_subtitle .= ' - ' . $this->arrDeviceType[$device_type_id]; 
    8792 
    8893        // ページ一覧を取得 
  • branches/version-2_5-dev/data/class/pages/admin/design/LC_Page_Admin_Design_Template.php

    r20538 r20560  
    5454        $this->arrForm = array(); 
    5555        ini_set("max_execution_time", 300); 
     56        $masterData = new SC_DB_MasterData_Ex(); 
     57        $this->arrDeviceType = $masterData->getMasterData('mtb_device_type'); 
    5658    } 
    5759 
     
    8183            $device_type_id = DEVICE_TYPE_PC; 
    8284        } 
     85         
     86        //サブタイトルの追加 
     87        $this->tpl_subtitle .= ' - ' . $this->arrDeviceType[$device_type_id]; 
    8388 
    8489        $this->tpl_select = $this->getTemplateName($device_type_id); 
  • branches/version-2_5-dev/data/class/pages/admin/design/LC_Page_Admin_Design_UpDown.php

    r20543 r20560  
    5454        $this->arrForm = array(); 
    5555        ini_set("max_execution_time", 300); 
     56        $masterData = new SC_DB_MasterData_Ex(); 
     57        $this->arrDeviceType = $masterData->getMasterData('mtb_device_type'); 
    5658    } 
    5759 
     
    8183            $device_type_id = DEVICE_TYPE_PC; 
    8284        } 
     85 
     86        //サブタイトルの追加 
     87        $this->tpl_subtitle .= ' - ' . $this->arrDeviceType[$device_type_id]; 
    8388 
    8489        switch($this->getMode()) { 
Note: See TracChangeset for help on using the changeset viewer.