/var/www-protected/php-debug.com/www/testimonials.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
 
/**
 * This the testimonial page
 *
 * @version V2.1.2
 * @since   2.1.2 - 12 jan 2008
 * @author  Vernet Loic
 * 
 * @package PHP_Debug_Website
 */
 
 
// CONFIG ======================================================================
 
 
// Applications variables & gen includes  ======================================
require_once '../config/ApplicationCfg.php';
require_once PD_WEB_INCLUDES_ROOT. 'common.inc.php';
 
// Page constants ==============================================================
define('PAGE_ID' ,    'testimonials'. PD_WEB_FILE_EXT);
define('PAGE_TR_ID' , 'testimonials');
define('_FILE_', basename(__FILE__));
define('DEFAULT_ACTION', 'TESTIMONIALS');
 
 
// MODEL =======================================================================
 
 
// CONTROLLER ==================================================================
$Dbg->setAction(DEFAULT_ACTION);
 
 
// VIEW ========================================================================
 
// Assign debug infos
$smarty->assign('file', PD_WEB_PHP_DEBUG_ROOT. DIRECTORY_SEPARATOR. PAGE_ID);
$smarty->assign('bodyTpl', PAGE_TR_ID);
$smarty->assign('debugBuffer', $Dbg->getOutput());       
 
// Display template
$smarty->display('index.tpl');
 
?>