当前位置: 首页>>代码示例>>PHP>>正文


PHP LC_Page::init方法代码示例

本文整理汇总了PHP中LC_Page::init方法的典型用法代码示例。如果您正苦于以下问题:PHP LC_Page::init方法的具体用法?PHP LC_Page::init怎么用?PHP LC_Page::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在LC_Page的用法示例。


在下文中一共展示了LC_Page::init方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: init

 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $this->tpl_mainpage = 'order/edit.tpl';
     $this->tpl_subnavi = 'order/subnavi.tpl';
     $this->tpl_mainno = 'order';
     $this->tpl_subno = 'index';
     $this->tpl_subtitle = '受注管理';
     if (empty($_GET['order_id']) && empty($_POST['order_id'])) {
         $this->tpl_subno = 'add';
         $this->tpl_mode = 'add';
         $this->tpl_subtitle = '新規受注入力';
     }
     $masterData = new SC_DB_MasterData_Ex();
     $this->arrPref = $masterData->getMasterData("mtb_pref", array("pref_id", "pref_name", "rank"));
     $this->arrORDERSTATUS = $masterData->getMasterData("mtb_order_status");
     /* ペイジェント決済モジュール連携用 */
     if (function_exists("sfPaygentOrderPage")) {
         $this->arrDispKind = sfPaygentOrderPage();
     }
     /* F-REGI決済モジュール連携用 */
     if (file_exists(MODULE_PATH . 'mdl_fregi/LC_Page_Mdl_Fregi_Config.php') === TRUE) {
         global $arrFregiPayment;
         $this->arrFregiPayment = $arrFregiPayment;
         global $arrFregiDispKind;
         $this->arrFregiDispKind = $arrFregiDispKind;
     }
 }
开发者ID:khrisna,项目名称:eccubedrm,代码行数:33,代码来源:LC_Page_Admin_Order_Edit.php

示例2: init

 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $this->tpl_mainpage = "rss/product.tpl";
     $this->encode = "UTF-8";
     $this->title = "商品一覧情報";
 }
开发者ID:khrisna,项目名称:eccubedrm,代码行数:12,代码来源:LC_Page_Rss_Products.php

示例3: init

 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $this->tpl_mainpage = TEMPLATE_DIR . 'mypage/login.tpl';
     $this->tpl_title = 'MYページ(ログイン)';
     $this->tpl_column_num = 1;
 }
开发者ID:khrisna,项目名称:eccubedrm,代码行数:12,代码来源:LC_Page_Mypage_Login.php

示例4: init

 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $this->tpl_mainpage = 'error.tpl';
     $this->tpl_column_num = 1;
     $this->tpl_title = 'エラー';
 }
开发者ID:khrisna,项目名称:eccubedrm,代码行数:12,代码来源:LC_Page_Error.php

示例5: init

 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $this->tpl_mainpage = "rss/index.tpl";
     $this->encode = "UTF-8";
     $this->description = "新着情報";
 }
开发者ID:khrisna,项目名称:eccubedrm,代码行数:12,代码来源:LC_Page_Rss.php

示例6: init

 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $this->tpl_mainpage = 'regist/complete.tpl';
     $this->tpl_title = '会員登録(完了ページ)';
     $this->tpl_conv_page = AFF_ENTRY_COMPLETE;
 }
开发者ID:khrisna,项目名称:eccubedrm,代码行数:12,代码来源:LC_Page_Regist_Complete.php

示例7: init

 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $this->tpl_mainpage = 'contact/complete.tpl';
     $this->tpl_title = 'お問い合わせ(完了ページ)';
     $this->tpl_mainno = 'contact';
 }
开发者ID:khrisna,项目名称:eccubedrm,代码行数:12,代码来源:LC_Page_Contact_Complete.php

示例8: init

 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $this->tpl_mainpage = 'abouts/index.tpl';
     $this->tpl_page_category = 'abouts';
     $this->tpl_title = '当サイトについて';
 }
开发者ID:khrisna,项目名称:eccubedrm,代码行数:12,代码来源:LC_Page_Abouts.php

示例9: init

 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $this->tpl_mainpage = 'contents/campaign_create_tag.tpl';
     $this->tpl_mainno = 'create';
     $this->tpl_subtitle = '商品設定';
     $this->allowClientCache();
 }
开发者ID:khrisna,项目名称:eccubedrm,代码行数:13,代码来源:LC_Page_Admin_Contents_CampaignCreateTag.php

示例10: init

 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $this->tpl_mainpage = 'system/masterdata.tpl';
     $this->tpl_subnavi = 'system/subnavi.tpl';
     $this->tpl_subno = 'masterdata';
     $this->tpl_mainno = 'system';
 }
开发者ID:khrisna,项目名称:eccubedrm,代码行数:13,代码来源:LC_Page_Admin_System_Masterdata.php

示例11: init

 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $this->tpl_mainpage = 'products/upload_csv_category.tpl';
     $this->tpl_subnavi = 'products/subnavi.tpl';
     $this->tpl_mainno = 'products';
     $this->tpl_subno = 'upload_csv_category';
 }
开发者ID:khrisna,项目名称:eccubedrm,代码行数:13,代码来源:LC_Page_Admin_Products_UploadCSVCategory.php

示例12: init

 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $this->tpl_mainpage = 'contents/recomend_search.tpl';
     $this->tpl_mainno = 'contents';
     $this->tpl_subnavi = '';
     $this->tpl_subno = "";
 }
开发者ID:khrisna,项目名称:eccubedrm,代码行数:13,代码来源:LC_Page_Admin_Contents_RecommendSearch.php

示例13: init

 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     // ページ送り用ナンバーの取得
     $this->tpl_pageno = isset($_REQUEST['pageno']) ? $_REQUEST['pageno'] : 1;
     // マスタ-データから権限配列を取得
     $masterData = new SC_DB_MasterData_Ex();
     $this->arrAUTHORITY = $masterData->getMasterData('mtb_authority');
 }
开发者ID:khrisna,项目名称:eccubedrm,代码行数:14,代码来源:LC_Page_Admin_System_Input.php

示例14: init

 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $this->tpl_mainpage = TEMPLATE_DIR . 'mypage/delivery_addr.tpl';
     $this->tpl_title = "新しいお届け先の追加・変更";
     $masterData = new SC_DB_MasterData_Ex();
     $this->arrPref = $masterData->getMasterData("mtb_pref", array("pref_id", "pref_name", "rank"));
     $this->allowClientCache();
 }
开发者ID:khrisna,项目名称:eccubedrm,代码行数:14,代码来源:LC_Page_Mypage_DeliveryAddr.php

示例15: init

 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $this->tpl_mainpage = 'mail/history.tpl';
     $this->tpl_mainno = 'mail';
     $this->tpl_subnavi = 'mail/subnavi.tpl';
     $this->tpl_subno = "history";
     $this->tpl_subtitle = '配信履歴';
 }
开发者ID:khrisna,项目名称:eccubedrm,代码行数:14,代码来源:LC_Page_Admin_Mail_History.php


注:本文中的LC_Page::init方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。