Changeset 383 for trunk/Common/Global.php
- Timestamp:
- Jan 23, 2012, 10:37:31 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Global.php
r379 r383 18 18 include_once('HTML.php'); 19 19 include_once('XHTML.php'); 20 include_once('URL.php'); 20 21 include_once('PageList.php'); 21 22 include_once('TableHeader.php'); … … 23 24 include_once('ViewList.php'); 24 25 include_once('ViewForm.php'); 26 include_once('Types/Type.php'); 25 27 26 28 … … 28 30 { 29 31 var $Pages = array(); 32 var $Type; 33 34 function __construct($Database) 35 { 36 parent::__construct($Database); 37 $this->Type = new Type($this); 38 } 30 39 31 40 function HumanDate($Time) … … 39 48 40 49 return($Config['Web']['RootFolder'].$Target); 41 } 50 } 42 51 } 43 52
Note:
See TracChangeset
for help on using the changeset viewer.