| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* this file includes all of the widgets |
| 5 |
* that live in this dir. |
| 6 |
* If you add a new widget, you should add it here. |
| 7 |
* |
| 8 |
* $Id: includes.inc,v 1.25 2003/10/25 00:59:20 hemna Exp $ |
| 9 |
* |
| 10 |
* @author Walter A. Boring IV <waboring@buildabetterweb.com> |
| 11 |
* @package phpHtmlLib |
| 12 |
* |
| 13 |
*/ |
| 14 |
|
| 15 |
/** |
| 16 |
* do the includes |
| 17 |
* |
| 18 |
* commented widgets are not really ready for |
| 19 |
* prime time. |
| 20 |
* |
| 21 |
*/ |
| 22 |
include_once($phphtmllib."/widgets/BaseWidget.inc"); |
| 23 |
include_once($phphtmllib."/widgets/ContainerWidget.inc"); |
| 24 |
include_once($phphtmllib."/widgets/CSSContainer.inc"); |
| 25 |
include_once($phphtmllib."/widgets/CSSBuilder.inc"); |
| 26 |
include_once($phphtmllib."/widgets/HTMLPageClass.inc"); |
| 27 |
include_once($phphtmllib."/widgets/HTMLRedirectPage.inc"); |
| 28 |
include_once($phphtmllib."/widgets/PageWidget.inc"); |
| 29 |
|
| 30 |
|
| 31 |
include_once($phphtmllib."/widgets/ActiveTab.inc"); |
| 32 |
include_once($phphtmllib."/widgets/ButtonPanel.inc"); |
| 33 |
include_once($phphtmllib."/widgets/DialogWidget.inc"); |
| 34 |
include_once($phphtmllib."/widgets/FooterNav.inc"); |
| 35 |
include_once($phphtmllib."/widgets/InfoTable.inc"); |
| 36 |
include_once($phphtmllib."/widgets/ImageThumbnailWidget.inc"); |
| 37 |
include_once($phphtmllib."/widgets/MessageBoxWidget.inc"); |
| 38 |
include_once($phphtmllib."/widgets/NavTable.inc"); |
| 39 |
include_once($phphtmllib."/widgets/RoundTitleTable.inc"); |
| 40 |
include_once($phphtmllib."/widgets/StandardDialogWidget.inc"); |
| 41 |
include_once($phphtmllib."/widgets/TabWidget.inc"); |
| 42 |
include_once($phphtmllib."/widgets/TextNav.inc"); |
| 43 |
include_once($phphtmllib."/widgets/TextCSSNav.inc"); |
| 44 |
include_once($phphtmllib."/widgets/VerticalCSSNavTable.inc"); |
| 45 |
|
| 46 |
include_once($phphtmllib."/widgets/xml/XMLDocumentClass.inc"); |
| 47 |
include_once($phphtmllib."/widgets/wml/WMLDocumentClass.inc"); |
| 48 |
include_once($phphtmllib."/widgets/svg/SVGDocumentClass.inc"); |
| 49 |
|
| 50 |
//not fully baked |
| 51 |
//include_once($phphtmllib."/widgets/TreeNav.inc"); |
| 52 |
|
| 53 |
?> |