Rev Author Line No. Line
228 kaklik 1 <?php
2  
3 /**
4 * Default singapore admin template.
5 *
6 * @author Tamlyn Rhodes <tam at zenology dot co dot uk>
7 * @copyright (c)2003, 2004 Tamlyn Rhodes
8 * @version 1.0
9 */
10  
11  
12 //include header file
13 include $sg->config->base_path.$sg->config->pathto_admin_template."header.tpl.php";
14  
15 //include selected file
16 include $sg->config->base_path.$sg->config->pathto_admin_template.$sg->includeFile.".tpl.php";
17  
18 //include footer file
19 include $sg->config->base_path.$sg->config->pathto_admin_template."footer.tpl.php";
20  
21 ?>