diff options
author | xue <> | 2006-05-04 19:57:16 +0000 |
---|---|---|
committer | xue <> | 2006-05-04 19:57:16 +0000 |
commit | 05b69a565ebf001f42fdb6558f204bf3f1a9b61a (patch) | |
tree | 78d4149cf7b6bf80bad0ced5710617ffad4e0597 /framework/Web/UI/TCompositeControl.php | |
parent | eb93f8a2fd9f701106310a93bc6e491ec2dfa3fe (diff) |
Added TCompositeControl.
Diffstat (limited to 'framework/Web/UI/TCompositeControl.php')
-rw-r--r-- | framework/Web/UI/TCompositeControl.php | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/framework/Web/UI/TCompositeControl.php b/framework/Web/UI/TCompositeControl.php new file mode 100644 index 00000000..4e33bb83 --- /dev/null +++ b/framework/Web/UI/TCompositeControl.php @@ -0,0 +1,39 @@ +<?php
+/**
+ * TCompositeControl class file.
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @link http://www.pradosoft.com/
+ * @copyright Copyright © 2005 PradoSoft
+ * @license http://www.pradosoft.com/license/
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI
+ */
+
+/**
+ * TCompositeControl class.
+ * TCompositeControl is the base class for controls that are composed
+ * by other controls.
+ *
+ * @author Qiang Xue <qiang.xue@gmail.com>
+ * @version $Revision: $ $Date: $
+ * @package System.Web.UI
+ * @since 3.0
+ */
+class TCompositeControl extends TControl implements INamingContainer
+{
+ /**
+ * Performs the OnInit step for the control and all its child controls.
+ * This method overrides the parent implementation
+ * by ensuring child controls are created first.
+ * Only framework developers should use this method.
+ * @param TControl the naming container control
+ */
+ protected function initRecursive($namingContainer=null)
+ {
+ $this->ensureChildControls();
+ parent::initRecursive($namingContainer);
+ }
+}
+
+?>
\ No newline at end of file |