1 |
<?php |
2 |
|
3 |
include_once("local_includes.inc"); |
4 |
|
5 |
require_once($phphtmllib."/widgets/includes.inc"); |
6 |
|
7 |
//cache this |
8 |
Header("Cache-Control: public"); |
9 |
|
10 |
$footer = new FooterNavCSS(TRUE); |
11 |
print $footer->render(); |
12 |
|
13 |
$info = new InfoTableCSS; |
14 |
print $info->render(); |
15 |
|
16 |
$navtable = new NavTableCSS; |
17 |
print $navtable->render(); |
18 |
|
19 |
$navcss = new TextCSSNavCSS; |
20 |
print $navcss->render(); |
21 |
|
22 |
$nav = new VerticalCSSNavTableCSS; |
23 |
print $nav->render(); |
24 |
|
25 |
$imagethumbnail = new ImageThumbnailWidgetCSS; |
26 |
print $nav->render(); |
27 |
|
28 |
$activetab = new ActiveTabCSS; |
29 |
print $activetab->render(); |
30 |
?> |