Ignore:
Timestamp:
2012/04/25 12:31:20 (12 years ago)
Author:
adachi
Message:

#1772 ファイル名、ヘッダ等の修正

Location:
branches/version-2_12-dev
Files:
3 moved

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore.php

    r21781 r21782  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_System_Plugin extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_OwnersStore extends LC_Page_Admin_Ex { 
    3535 
    3636    // }}} 
     
    4444    function init() { 
    4545        parent::init(); 
    46         $this->tpl_mainpage = 'system/plugin.tpl'; 
    47         $this->tpl_subno    = 'plugin'; 
    48         $this->tpl_mainno   = 'system'; 
    49         $this->tpl_maintitle = 'システム設定'; 
     46        $this->tpl_mainpage = 'ownersstore/plugin.tpl'; 
     47        $this->tpl_subno    = 'index'; 
     48        $this->tpl_mainno   = 'ownersstore'; 
     49        $this->tpl_maintitle = 'オーナーズストア'; 
    5050        $this->tpl_subtitle = 'プラグイン管理'; 
    5151    } 
  • branches/version-2_12-dev/data/class_extends/page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Ex.php

    r21781 r21782  
    2323 
    2424// {{{ requires 
    25 require_once CLASS_REALDIR . 'pages/admin/system/LC_Page_Admin_System_Plugin.php'; 
     25require_once CLASS_REALDIR . 'pages/admin/ownersstore/LC_Page_Admin_OwnersStore.php'; 
    2626 
    2727/** 
     
    3434 * @version $Id$ 
    3535 */ 
    36 class LC_Page_Admin_System_Plugin_Ex extends LC_Page_Admin_System_Plugin { 
     36class LC_Page_Admin_OwnersStore_Ex extends LC_Page_Admin_OwnersStore { 
    3737 
    3838    // }}} 
  • branches/version-2_12-dev/html/admin/ownersstore/index.php

    r21781 r21782  
    2424// {{{ requires 
    2525require_once '../require.php'; 
    26 require_once CLASS_EX_REALDIR . 'page_extends/admin/system/LC_Page_Admin_System_Plugin_Ex.php'; 
     26require_once CLASS_EX_REALDIR . 'page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Ex.php'; 
    2727 
    2828// }}} 
    2929// {{{ generate page 
    3030 
    31 $objPage = new LC_Page_Admin_System_Plugin_Ex(); 
     31$objPage = new LC_Page_Admin_OwnersStore_Ex(); 
    3232register_shutdown_function(array($objPage, 'destroy')); 
    3333$objPage->init(); 
Note: See TracChangeset for help on using the changeset viewer.