/html/eccube_super/data/class/SC_View.php
// テンプレート変数を割り当て
$this->assign("TPL_DIR", TPL_DIR);
// ヘッダとフッタを割り当て
$header_tpl = USER_PATH . USER_PACKAGE_DIR . TEMPLATE_NAME . "/" . "header.tpl";
$footer_tpl = USER_PATH . USER_PACKAGE_DIR . TEMPLATE_NAME . "/" . "footer.tpl";
// @2009.05.21 追加
$topimage_tpl = USER_PATH . USER_PACKAGE_DIR . TEMPLATE_NAME . "/" . "bloc/topimage.tpl";
// ユーザー作成のテンプレートが無ければ, 指定テンプレートを割り当て
if (!$this->_smarty->template_exists($header_tpl)) {
$header_tpl = TEMPLATE_DIR . "header.tpl";
}
if (!$this->_smarty->template_exists($footer_tpl)) {
$footer_tpl = TEMPLATE_DIR . "footer.tpl";
}
$this->assign("header_tpl", $header_tpl);
$this->assign("footer_tpl", $footer_tpl);
$this->assign("topimage_tpl", $topimage_tpl);
}
2011-09-19
2009-06-01
2009-05-28
2009-05-27
2009-05-26
2009-05-25
2009-05-19
2009-05-15
2009-05-14
2009-05-13
2009-05-12
2009-05-11