diff options
author | xue <> | 2006-01-25 14:11:32 +0000 |
---|---|---|
committer | xue <> | 2006-01-25 14:11:32 +0000 |
commit | 3afd35b166267c00f368239b00662866c79bb090 (patch) | |
tree | 9406d19428734aa05250f58b064ddbdad20c1c85 /framework | |
parent | bf66ad7bb36e881f53437491333940d74d77139e (diff) |
Changed back the usage of ensureChildControls in TTemplateControl. Added TControl::getRegisteredObject. Modified LabeledTextBox accordingly.
Diffstat (limited to 'framework')
-rw-r--r-- | framework/Web/UI/TControl.php | 12 | ||||
-rw-r--r-- | framework/Web/UI/TTemplateControl.php | 1 |
2 files changed, 12 insertions, 1 deletions
diff --git a/framework/Web/UI/TControl.php b/framework/Web/UI/TControl.php index a87563b4..8b272f30 100644 --- a/framework/Web/UI/TControl.php +++ b/framework/Web/UI/TControl.php @@ -871,6 +871,18 @@ class TControl extends TComponent }
/**
+ * Returns the named registered object.
+ * A component with explicit ID on a template will be registered to
+ * the template owner. This method allows you to obtain this component
+ * with the ID.
+ * @return mixed the named registered object. Null if object is not found.
+ */
+ public function getRegisteredObject($name)
+ {
+ return isset($this->_rf[self::RF_NAMED_OBJECTS][$name])?$this->_rf[self::RF_NAMED_OBJECTS][$name]:null;
+ }
+
+ /**
* This method is invoked after the control is instantiated by a template.
* When this method is invoked, the control should have a valid TemplateControl
* and has its properties initialized according to template configurations.
diff --git a/framework/Web/UI/TTemplateControl.php b/framework/Web/UI/TTemplateControl.php index e3c4d3e9..72731ecd 100644 --- a/framework/Web/UI/TTemplateControl.php +++ b/framework/Web/UI/TTemplateControl.php @@ -65,7 +65,6 @@ class TTemplateControl extends TControl implements INamingContainer {
foreach($tpl->getDirective() as $name=>$value)
$this->setSubProperty($name,$value);
- $this->ensureChildControls();
}
}
|