| 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 |
$css_container->add( new VerticalCSSNavTableCSS ); |
| 22 |
$css_container->add( new ImageThumbnailWidgetCSS ); |
| 23 |
$css_container->add( new ActiveTabCSS ); |
| 24 |
$css_container->add( new RoundTitleTableCSS ); |
| 25 |
?> |