📄 main_template_vars.php
字号:
<?php
/**
* Common Template main_template_vars handler
*
* Normally a page will automatically load its own template based on the page name.<br />
* so that a page called some_page will load tpl_some_page_default.php from the template directory.<br />
* <br />
* However sometimes a page may need to choose the template it displays based on a set of criteria.<br />
* Placing a file in the includes/modules/pages/some_page/ directory called main_template_vars.php<br />
* allows you to override this page and choose the template that loads.<br />
*
* @package templateSystem
* @copyright Copyright 2003-2005 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: main_template_vars.php 2620 2005-12-20 00:52:57Z drbyte $
*/
if (file_exists(DIR_WS_MODULES . 'pages/' . $current_page_base . '/main_template_vars.php')) {
$body_code = DIR_WS_MODULES . 'pages/' . $current_page_base . '/main_template_vars.php';
} else {
$body_code = $template->get_template_dir('tpl_' . preg_replace('/.php/', '',$_GET['main_page']) . '_default.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_' . $_GET['main_page'] . '_default.php';
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -