* Fecha: 18/7/2005 * Ultima actualización: 18/7/2005 * guia.php * * Guia de compra. * */ if (file_exists ('./includes/pre_include.php')) { require_once './includes/pre_include.php'; } else { require_once '../includes/pre_include.php'; } // Creamos la plantilla $tpl=new TemplatePower($prefix.'/plantillas/general.tpl.html'); //Cargando ficheros externos $tpl->assignInclude ('index',$prefix.'/plantillas/webmaster.tpl.html'); $tpl->assignInclude ('menu',$prefix.'/plantillas/menu.tpl.html'); $tpl->assignInclude ('admin',$prefix.'/plantillas/admin.tpl.html'); $tpl->assign("total_cesta",$_COOKIE['tot']); // Inicializo las plantillas $tpl->prepare(); $tpl->newblock ("general"); $tpl->assign("title",NAME); /** Muestro Bloques */ $tpl->newBlock("webmaster"); switch ($_GET['accion']){ case 'escoger': $tpl->newBlock ("escoger"); break; case 'comocomprar': $tpl->newBlock ("comocomprar"); break; } include ("./includes/menu.inc.php"); $tpl->printToScreen(); ?>