| 1 |
jonen |
1.1 |
<?php |
| 2 |
|
|
|
| 3 |
|
|
/** |
| 4 |
|
|
* This file holds some global defines used by several |
| 5 |
|
|
* classes of phpHtmlLib. |
| 6 |
|
|
* |
| 7 |
|
|
* $Id: defines.inc,v 1.1 2002/09/25 01:12:34 hemna Exp $ |
| 8 |
|
|
* |
| 9 |
|
|
* @author Walter A. Boring IV <waboring@buildabetterweb.com> |
| 10 |
|
|
* @package phpHtmlLib |
| 11 |
|
|
* |
| 12 |
|
|
*/ |
| 13 |
|
|
|
| 14 |
|
|
/** |
| 15 |
|
|
* Some global defines, used by the classes and widgets |
| 16 |
|
|
* to specify what type of output document format to use. |
| 17 |
|
|
* |
| 18 |
|
|
*/ |
| 19 |
|
|
define("XHTML_TRANSITIONAL", "xhtml_transitional"); |
| 20 |
|
|
define("XHTML", "xhtml_transitional"); |
| 21 |
|
|
define("XHTML_STRICT", "xhtml_strict"); |
| 22 |
|
|
define("XHTML_FRAMESET", "xhtml_frameset"); |
| 23 |
|
|
define("HTML", "html"); |
| 24 |
|
|
|
| 25 |
|
|
/** |
| 26 |
|
|
* Some defines to tell the class what style of |
| 27 |
|
|
* indenting of the output the user wants. |
| 28 |
|
|
*/ |
| 29 |
|
|
define("INDENT_NICE", 0); |
| 30 |
|
|
define("INDENT_LEFT_JUSTIFY", -1); |
| 31 |
|
|
?> |