blob: 80f2259ce33169c5a2f686df06bbfc8003b8647a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<?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();
}
}
?>
|