Changeset 21778


Ignore:
Timestamp:
2012/04/25 11:59:48 (12 years ago)
Author:
adachi
Message:

#1772 購入商品一覧を、モジュール管理へ変更

Location:
branches/version-2_12-dev
Files:
1 edited
4 moved

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/Smarty/templates/admin/ownersstore/module.tpl

    r21539 r21778  
    4545 
    4646    <div class="btn"> 
    47         <a class="btn-normal" href="javascript:;" onclick="OwnersStore.products_list();return false;"><span>購入商品一覧を取得する</span></a> 
     47        <a class="btn-normal" href="javascript:;" onclick="OwnersStore.products_list();return false;"><span>モジュール一覧を取得する</span></a> 
    4848    </div> 
    4949 
  • branches/version-2_12-dev/data/Smarty/templates/admin/ownersstore/subnavi.tpl

    r21539 r21778  
    2525<ul class="level1"> 
    2626    <li id="navi-ownersstore-index" class="<!--{if $tpl_subno == 'index'}-->on<!--{/if}-->"> 
    27         <a href="<!--{$smarty.const.ROOT_URLPATH}--><!--{$smarty.const.ADMIN_DIR}-->ownersstore/<!--{$smarty.const.DIR_INDEX_PATH}-->"><span>購入商品一覧</span></a></li> 
     27        <a href="<!--{$smarty.const.ROOT_URLPATH}--><!--{$smarty.const.ADMIN_DIR}-->ownersstore/<!--{$smarty.const.DIR_INDEX_PATH}-->"><span>プラグイン管理</span></a></li> 
     28    <li id="navi-ownersstore-module" class="<!--{if $tpl_subno == 'module'}-->on<!--{/if}-->"> 
     29        <a href="<!--{$smarty.const.ROOT_URLPATH}--><!--{$smarty.const.ADMIN_DIR}-->ownersstore/module.php"><span>モジュール管理</span></a></li> 
    2830    <li id="navi-ownersstore-settings" class="<!--{if $tpl_subno == 'settings'}-->on<!--{/if}-->"> 
    2931        <a href="<!--{$smarty.const.ROOT_URLPATH}--><!--{$smarty.const.ADMIN_DIR}-->ownersstore/settings.php"><span>認証キー設定</span></a></li> 
  • branches/version-2_12-dev/data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Module.php

    r21420 r21778  
    3232 * @version $Id$ 
    3333 */ 
    34 class LC_Page_Admin_OwnersStore extends LC_Page_Admin_Ex { 
     34class LC_Page_Admin_OwnersStore_Module extends LC_Page_Admin_Ex { 
    3535 
    3636    var $tpl_subno = 'index'; 
     
    4646        parent::init(); 
    4747 
    48         $this->tpl_mainpage = 'ownersstore/index.tpl'; 
     48        $this->tpl_mainpage = 'ownersstore/module.tpl'; 
    4949        $this->tpl_mainno   = 'ownersstore'; 
    50         $this->tpl_subno    = 'index'; 
     50        $this->tpl_subno    = 'module'; 
    5151        $this->tpl_maintitle = 'オーナーズストア'; 
    52         $this->tpl_subtitle = '購入商品一覧'; 
     52        $this->tpl_subtitle = 'モジュール管理'; 
    5353    } 
    5454 
  • branches/version-2_12-dev/data/class_extends/page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Module_Ex.php

    r21420 r21778  
    2323 
    2424// {{{ requires 
    25 require_once CLASS_REALDIR . 'pages/admin/ownersstore/LC_Page_Admin_OwnersStore.php'; 
    26  
     25require_once CLASS_REALDIR . 'pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Module.php'; 
     26     
    2727/** 
    28  * オーナーズストア管理:購入商品一覧 のページクラス(拡張). 
     28 * オーナーズストア:モジュール管理 のページクラス(拡張). 
    2929 * 
    3030 * LC_Page_Admin_OwnersStore をカスタマイズする場合はこのクラスを編集する. 
     
    3434 * @version $Id$ 
    3535 */ 
    36 class LC_Page_Admin_OwnersStore_Ex extends LC_Page_Admin_OwnersStore { 
     36class LC_Page_Admin_OwnersStore_Module_Ex extends LC_Page_Admin_OwnersStore_Module { 
    3737 
    3838    // }}} 
  • branches/version-2_12-dev/html/admin/ownersstore/module.php

    r21420 r21778  
    2424// {{{ requires 
    2525require_once '../require.php'; 
    26 require_once CLASS_EX_REALDIR . 'page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Ex.php'; 
     26require_once CLASS_EX_REALDIR . 'page_extends/admin/ownersstore/LC_Page_Admin_OwnersStore_Module_Ex.php'; 
    2727 
    2828// }}} 
    2929// {{{ generate page 
    3030 
    31 $objPage = new LC_Page_Admin_OwnersStore_Ex(); 
     31$objPage = new LC_Page_Admin_OwnersStore_Module_Ex(); 
    3232$objPage->init(); 
    3333$objPage->process(); 
Note: See TracChangeset for help on using the changeset viewer.