/[cvs]/nfo/php/libs/com.newsblob.phphtmllib/examples/widget3.php
ViewVC logotype

Contents of /nfo/php/libs/com.newsblob.phphtmllib/examples/widget3.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (show annotations)
Thu May 6 16:27:17 2004 UTC (20 years, 2 months ago) by jonen
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +0 -0 lines
 updated all to v2.4.1 - Apr 01, 2004

1 <?php
2
3 /**
4 * This example illustrates the use of the
5 * TextCSSNav widget.
6 *
7 *
8 * $Id: widget3.php,v 1.6 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 //create the page object
24 $page = new HTMLPageClass("phpHtmlLib Widgets - TextCSSNav",
25 XHTML_TRANSITIONAL);
26
27 //enable output debugging.
28 if (isset($_GET['debug'])) {
29 $page->set_text_debug( TRUE );
30 }
31
32 //add the css
33 $page->add_css_link( "/phphtmllib/css/defaulttheme.php" );
34
35 //create the InfoTable Object
36 //create the widget and enable
37 //the auto highlighting of the selected Nav
38 $textcssnav = new TextCSSNav(TRUE);
39 $textcssnav->add($_SERVER["PHP_SELF"], "TextCSSNav", "Some Link dude");
40 $textcssnav->add($_SERVER["PHP_SELF"], "Some Link", "Some Link dude");
41 $textcssnav->add($_SERVER["PHP_SELF"], "Another", "Another link...Click me");
42 $textcssnav->add($_SERVER["PHP_SELF"], "And another", "Some Link dude");
43
44 $page->add( $textcssnav );
45
46 print $page->render();
47 ?>

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed