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/TTemplateControl.php | |
parent | eb93f8a2fd9f701106310a93bc6e491ec2dfa3fe (diff) |
Added TCompositeControl.
Diffstat (limited to 'framework/Web/UI/TTemplateControl.php')
-rw-r--r-- | framework/Web/UI/TTemplateControl.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/framework/Web/UI/TTemplateControl.php b/framework/Web/UI/TTemplateControl.php index f18678f1..0595a9e5 100644 --- a/framework/Web/UI/TTemplateControl.php +++ b/framework/Web/UI/TTemplateControl.php @@ -11,6 +11,11 @@ */
/**
+ * Includes TCompositeControl class
+ */
+Prado::using('System.Web.UI.TCompositeControl');
+
+/**
* TTemplateControl class.
* TTemplateControl is the base class for all controls that use templates.
* By default, a control template is assumed to be in a file under the same
@@ -22,7 +27,7 @@ * @package System.Web.UI
* @since 3.0
*/
-class TTemplateControl extends TControl implements INamingContainer
+class TTemplateControl extends TCompositeControl
{
/**
* template file extension.
|