| 1 | <?php | 
| 2 |  | 
| 3 | /** | 
| 4 | * This example illustrates the use of the | 
| 5 | * VerticalCSSNavTable widget. | 
| 6 | * | 
| 7 | * | 
| 8 | * $Id: widget4.php,v 1.5 2003/07/28 17:02:03 hemna Exp $ | 
| 9 | * | 
| 10 | * @author Walter A. Boring IV <waboring@buildabetterweb.com> | 
| 11 | * @package phpHtmlLib | 
| 12 | * @subpackage widget-examples | 
| 13 | * @version 2.0 | 
| 14 | * | 
| 15 | */ | 
| 16 |  | 
| 17 | /** | 
| 18 | * Include the phphtmllib libraries | 
| 19 | * | 
| 20 | */ | 
| 21 | include_once("includes.inc"); | 
| 22 |  | 
| 23 |  | 
| 24 | //create the page object | 
| 25 | $page = new HTMLPageClass("phpHtmlLib Widgets - VerticalCSSNavTable", | 
| 26 | XHTML_TRANSITIONAL); | 
| 27 |  | 
| 28 | //enable output debugging. | 
| 29 | if (isset($_GET['debug'])) { | 
| 30 | $page->set_text_debug( TRUE ); | 
| 31 | } | 
| 32 |  | 
| 33 | //add the css | 
| 34 | $page->add_css_link( "/css/defaulttheme.php" ); | 
| 35 |  | 
| 36 | //create the VerticalCSSNavTable Object | 
| 37 | //create the widget with | 
| 38 | //Title of 'VerticalCSSNavTable' and | 
| 39 | //subtitle of 'Widget' | 
| 40 | //overall width of 400 pixels ( u can use % as well ) | 
| 41 | $cssnavtable = new VerticalCSSNavTable("VerticalCSSNavTable", "Widget", 400); | 
| 42 | $cssnavtable->add("#", "Some Link", "This is title text"); | 
| 43 | $cssnavtable->add("#", "Another"); | 
| 44 | $cssnavtable->add("#", "Another", "This is title text"); | 
| 45 |  | 
| 46 | $page->add( $cssnavtable ); | 
| 47 |  | 
| 48 | print $page->render(); | 
| 49 | ?> |