本文整理汇总了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;
}
}
示例2: init
/**
* Page を初期化する.
*
* @return void
*/
function init()
{
parent::init();
$this->tpl_mainpage = "rss/product.tpl";
$this->encode = "UTF-8";
$this->title = "商品一覧情報";
}
示例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;
}
示例4: init
/**
* Page を初期化する.
*
* @return void
*/
function init()
{
parent::init();
$this->tpl_mainpage = 'error.tpl';
$this->tpl_column_num = 1;
$this->tpl_title = 'エラー';
}
示例5: init
/**
* Page を初期化する.
*
* @return void
*/
function init()
{
parent::init();
$this->tpl_mainpage = "rss/index.tpl";
$this->encode = "UTF-8";
$this->description = "新着情報";
}
示例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;
}
示例7: init
/**
* Page を初期化する.
*
* @return void
*/
function init()
{
parent::init();
$this->tpl_mainpage = 'contact/complete.tpl';
$this->tpl_title = 'お問い合わせ(完了ページ)';
$this->tpl_mainno = 'contact';
}
示例8: init
/**
* Page を初期化する.
*
* @return void
*/
function init()
{
parent::init();
$this->tpl_mainpage = 'abouts/index.tpl';
$this->tpl_page_category = 'abouts';
$this->tpl_title = '当サイトについて';
}
示例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();
}
示例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';
}
示例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';
}
示例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 = "";
}
示例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');
}
示例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();
}
示例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 = '配信履歴';
}