* so that a page called some_page will load tpl_some_page_default.php from the template directory.
*
* However sometimes a page may need to choose the template it displays based on a set of criteria.
* Placing a file in the includes/modules/pages/some_page/ directory called main_template_vars.php
* allows you to override this page and choose the template that loads.
*
* @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';
}
?>