Ignore:
Timestamp:
Jan 22, 2016, 5:31:05 PM (9 years ago)
Author:
chronos
Message:
  • Updated: Common package.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/System.php

    r790 r791  
    1010include_once(dirname(__FILE__).'/UpdateTrace.php');
    1111include_once(dirname(__FILE__).'/View.php');
     12include_once(dirname(__FILE__).'/DefaultConfig.php');
    1213
    1314class Core extends Application
     
    2627  var $Setup;
    2728  var $CommandLine;
     29  var $PageHeaders;
    2830
    2931  function __construct()
     
    4042      $this->RootURLFolder = substr($this->RootURLFolder, 0, -10);
    4143    $this->CommandLine = array();
     44    $this->PageHeaders = array();
    4245  }
    4346
     
    228231    $this->Bars[$BarName][$ItemName] = $Callback;
    229232  }
     233
     234  function RegisterPageHeader($Name, $Callback)
     235  {
     236    $this->PageHeaders[$Name] = $Callback;
     237  }
    230238}
    231239
Note: See TracChangeset for help on using the changeset viewer.