1 |
jonen |
1.1 |
<?php |
2 |
|
|
|
3 |
|
|
/** |
4 |
jonen |
1.4 |
* this contains the current version |
5 |
jonen |
1.1 |
* define and some util functions |
6 |
|
|
* related to the lib version. |
7 |
|
|
* |
8 |
jonen |
1.4 |
* $Id: version.inc,v 1.27 2004/04/01 17:39:45 hemna Exp $ |
9 |
jonen |
1.1 |
* |
10 |
|
|
* @author Walter A. Boring IV <waboring@buildabetterweb.com> |
11 |
|
|
* @package phpHtmlLib |
12 |
|
|
* |
13 |
jonen |
1.4 |
*/ |
14 |
jonen |
1.1 |
|
15 |
|
|
|
16 |
|
|
/** |
17 |
|
|
* This is the version of the libs |
18 |
|
|
* @var string - the version string. |
19 |
|
|
*/ |
20 |
jonen |
1.4 |
define("PHPHTMLLIB_VERSION", "2.4.1"); |
21 |
jonen |
1.1 |
|
22 |
|
|
|
23 |
|
|
/** |
24 |
|
|
* get the current version of |
25 |
|
|
* the phphtmllib libraries. |
26 |
|
|
* |
27 |
|
|
* @return string - the current version string |
28 |
|
|
*/ |
29 |
|
|
function phphtmllib_get_version() { |
30 |
|
|
return PHPHTMLLIB_VERSION; |
31 |
|
|
} |
32 |
|
|
|
33 |
|
|
|
34 |
|
|
?> |