Changeset 791 for trunk/Application/System.php
- Timestamp:
- Jan 22, 2016, 5:31:05 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/System.php
r790 r791 10 10 include_once(dirname(__FILE__).'/UpdateTrace.php'); 11 11 include_once(dirname(__FILE__).'/View.php'); 12 include_once(dirname(__FILE__).'/DefaultConfig.php'); 12 13 13 14 class Core extends Application … … 26 27 var $Setup; 27 28 var $CommandLine; 29 var $PageHeaders; 28 30 29 31 function __construct() … … 40 42 $this->RootURLFolder = substr($this->RootURLFolder, 0, -10); 41 43 $this->CommandLine = array(); 44 $this->PageHeaders = array(); 42 45 } 43 46 … … 228 231 $this->Bars[$BarName][$ItemName] = $Callback; 229 232 } 233 234 function RegisterPageHeader($Name, $Callback) 235 { 236 $this->PageHeaders[$Name] = $Callback; 237 } 230 238 } 231 239
Note:
See TracChangeset
for help on using the changeset viewer.