diff options
author | xue <> | 2006-01-29 09:14:14 +0000 |
---|---|---|
committer | xue <> | 2006-01-29 09:14:14 +0000 |
commit | 976e3aa06ebe82fe6d1c7317c827425111be5df6 (patch) | |
tree | 7ca22e6681cd1203a70acb4710c1ee3cfa2bc337 /framework/Web/UI/TPage.php | |
parent | 80c39c977568b5b84f5ea2b93f8c1e8d799d558a (diff) |
Added support to template tag.
Diffstat (limited to 'framework/Web/UI/TPage.php')
-rw-r--r-- | framework/Web/UI/TPage.php | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/framework/Web/UI/TPage.php b/framework/Web/UI/TPage.php index a5e4fa52..b7c1bae6 100644 --- a/framework/Web/UI/TPage.php +++ b/framework/Web/UI/TPage.php @@ -121,21 +121,6 @@ class TPage extends TTemplateControl }
/**
- * If initial property values are given, they will be set to the page.
- * @param array initial property values for the page.
- */
- public function initializeProperties($initProperties=null)
- {
- Prado::trace('Constructing page','System.Web.UI.TPage');
- if(is_array($initProperties))
- {
- Prado::trace('Initializing page properties specified in configurations','System.Web.UI.TPage');
- foreach($initProperties as $name=>$value)
- $this->setSubProperty($name,$value);
- }
- }
-
- /**
* Runs through the page lifecycles.
* This method runs through the page lifecycles.
* @param THtmlTextWriter the HTML writer
|