diff options
author | xue <> | 2006-04-28 11:02:12 +0000 |
---|---|---|
committer | xue <> | 2006-04-28 11:02:12 +0000 |
commit | b97d6a698d80d946e3669595e8d87f0c378b3520 (patch) | |
tree | 2d86bf8e566e8f95b0ac90a9dd2dc227c92f6051 /framework/Web/UI/WebControls/TCompositeControl.php | |
parent | 19989e32667e653d9dd65066ba26c91562a3cdc8 (diff) |
A few minor fixes.
Diffstat (limited to 'framework/Web/UI/WebControls/TCompositeControl.php')
-rw-r--r-- | framework/Web/UI/WebControls/TCompositeControl.php | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/framework/Web/UI/WebControls/TCompositeControl.php b/framework/Web/UI/WebControls/TCompositeControl.php deleted file mode 100644 index 80f2259c..00000000 --- a/framework/Web/UI/WebControls/TCompositeControl.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php
-/**
- * TCompositeControl class file.
- *
- * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @link http://www.pradosoft.com/
- * @copyright Copyright © 2005 PradoSoft
- * @license http://www.pradosoft.com/license/
- * @version $Revision: $ $Date: $
- * @package System.Web.UI
- */
-
-/**
- * The TCompositeControl class is an abstract class that provides naming
- * container and control designer functionality for custom controls that
- * encompass child controls in their entirety or use the functionality of other
- * controls. You cannot use this class directly.
- *
- * To create a custom composite control, derive from the CompositeControl class.
- * The functionality this class provides is built-in verification that child
- * controls have been created prior to being accessed
- *
- * @author Wei Zhuo <weizhuo[at]gmail[dot]com>
- * @version $Revision: $ $Date: $
- * @package System.Web.UI
- * @since 3.0
- */
-abstract class TCompositeControl extends TTemplateControl
-{
- /**
- * The constructor ensures the child controls are created.
- */
- public function __construct()
- {
- parent::__construct();
- $this->recreateChildControls();
- }
-
- /**
- * Recreates the child controls in a control derived from TCompositeControl.
- */
- protected function recreateChildControls()
- {
- $this->ensureChildControls();
- }
-
-}
-
-?>
|