<?php
@version @since @author @copyright @package
require_once '../config/ApplicationCfg.php';
require_once PD_WEB_INCLUDES_ROOT. 'common.inc.php';
define('PAGE_TR_ID' , 'home');
define('PAGE_ID' , 'index'. PD_WEB_FILE_EXT);
define('_FILE_', basename(__FILE__));
define('DEFAULT_ACTION', 'GETNEWS');
$Dbg->add('I am a debug info ! Grrrrrrrrrr ;)');
$smarty->assign('bodyTpl', PAGE_TR_ID);
$smarty->assign('file', PD_WEB_PHP_DEBUG_ROOT. DIRECTORY_SEPARATOR. PAGE_ID);
$smarty->assign('debugBuffer', $Dbg->getOutput());
$smarty->display('index.tpl');
?> |