| 1 | jonen | 1.1 | <?php | 
| 2 |  |  |  | 
| 3 |  |  | include_once("localinc.php"); | 
| 4 |  |  |  | 
| 5 |  |  | $page = new HTMLPageClass("test.php"); | 
| 6 |  |  | $page->set_body_attributes(array("bgcolor"=> "#ffffff")); | 
| 7 |  |  |  | 
| 8 |  |  | $nav_table = new NavTable("Test title", "test subtitle", "30%"); | 
| 9 |  |  |  | 
| 10 |  |  | //get the link to the widget's css file. | 
| 11 |  |  | $page->push_css_link( $nav_table->get_css_file() ); | 
| 12 |  |  |  | 
| 13 |  |  | $nav_table->push("http://www.cnn.com", "Go to CNN"); | 
| 14 |  |  | $nav_table->push_blank(); | 
| 15 |  |  | $nav_table->push("http://www.yahoo.com", "Go to Yahoo dude"); | 
| 16 |  |  | $nav_table->push_blank(); | 
| 17 |  |  | $nav_table->push_text("Some lame text here"); | 
| 18 |  |  |  | 
| 19 |  |  |  | 
| 20 |  |  | $page->push( $nav_table ); | 
| 21 |  |  |  | 
| 22 |  |  | print $page->render(); | 
| 23 |  |  | ?> |