| 1 |
jonen |
1.1 |
<?php |
| 2 |
|
|
/** |
| 3 |
|
|
* This file builds the CSSContainer object |
| 4 |
|
|
* that will hold all of the CSSBuilder objects |
| 5 |
|
|
* for all of the phpHtmlLib widgets. |
| 6 |
|
|
* |
| 7 |
|
|
* This enables you to create themes for you |
| 8 |
|
|
* own websites. |
| 9 |
|
|
* |
| 10 |
|
|
* @author Walter A. Boring IV <waboring@buildabetterweb.com> |
| 11 |
|
|
* @package phpHtmlLib |
| 12 |
|
|
* |
| 13 |
|
|
* @copyright LGPL - See LICENCE |
| 14 |
|
|
* |
| 15 |
|
|
*/ |
| 16 |
|
|
$css_container = new CSSContainer; |
| 17 |
|
|
$css_container->add( new FooterNavCSS(TRUE) ); |
| 18 |
|
|
$css_container->add( new InfoTableCSS ); |
| 19 |
|
|
$css_container->add( new NavTableCSS ); |
| 20 |
|
|
$css_container->add( new TextCSSNavCSS ); |
| 21 |
jonen |
1.2 |
$css_container->add( new TextNavCSS ); |
| 22 |
jonen |
1.1 |
$css_container->add( new VerticalCSSNavTableCSS ); |
| 23 |
|
|
$css_container->add( new ImageThumbnailWidgetCSS ); |
| 24 |
|
|
$css_container->add( new ActiveTabCSS ); |
| 25 |
|
|
$css_container->add( new RoundTitleTableCSS ); |
| 26 |
jonen |
1.3 |
$css_container->add( new ButtonPanelCSS ); |
| 27 |
|
|
$css_container->add( new TabListCSS ); |
| 28 |
jonen |
1.1 |
?> |