diff options
author | wei <> | 2006-01-29 04:59:32 +0000 |
---|---|---|
committer | wei <> | 2006-01-29 04:59:32 +0000 |
commit | 397f1f02d104a08321e9500aa65e83e5b3d22c4e (patch) | |
tree | 5109066e57064f973978fabbd40d6fab2f844df0 /framework/Web/UI/TPage.php | |
parent | c89523c4ab1bda766d6b0b4b4d2ade3513046400 (diff) |
Allow TPage constructor to alter application configuration.
Diffstat (limited to 'framework/Web/UI/TPage.php')
-rw-r--r-- | framework/Web/UI/TPage.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/framework/Web/UI/TPage.php b/framework/Web/UI/TPage.php index 70439237..28f1b036 100644 --- a/framework/Web/UI/TPage.php +++ b/framework/Web/UI/TPage.php @@ -111,11 +111,18 @@ class TPage extends TTemplateControl private $_previousPagePath='';
/**
- * Constructor.
+ * Constructor, overrides parent implementation. Parent constructor called in initializeProperties.
+ */
+ public function __construct()
+ {
+
+ }
+
+ /**
* If initial property values are given, they will be set to the page.
* @param array initial property values for the page.
*/
- public function __construct($initProperties=null)
+ public function initializeProperties($initProperties=null)
{
Prado::trace('Constructing page','System.Web.UI.TPage');
$this->setPage($this);
@@ -125,6 +132,7 @@ class TPage extends TTemplateControl foreach($initProperties as $name=>$value)
$this->setSubProperty($name,$value);
}
+ //ask template control to initialize
parent::__construct();
}
|