blob: 9fc3cfad83b61e5b49598484dffc95c954bc76af (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
<?php
/**
* TControl, TControlCollection, TEventParameter and INamingContainer class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package System.Web.UI
*/
/**
* TControlCollection class
*
* TControlCollection implements a collection that enables
* controls to maintain a list of their child controls.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @package System.Web.UI
* @since 3.0
*/
class TControlCollection extends TList
{
/**
* the control that owns this collection.
* @var TControl
*/
private $_o;
/**
* Constructor.
* @param TControl the control that owns this collection.
* @param boolean whether the list is read-only
*/
public function __construct(TControl $owner,$readOnly=false)
{
$this->_o=$owner;
parent::__construct(null,$readOnly);
}
/**
* @return TControl the control that owns this collection.
*/
protected function getOwner()
{
return $this->_o;
}
/**
* Inserts an item at the specified position.
* This overrides the parent implementation by performing additional
* operations for each newly added child control.
* @param integer the speicified position.
* @param mixed new item
* @throws TInvalidDataTypeException if the item to be inserted is neither a string nor a TControl.
*/
public function insertAt($index,$item)
{
if($item instanceof TControl)
{
parent::insertAt($index,$item);
$this->_o->addedControl($item);
}
else if(is_string($item) || ($item instanceof IRenderable))
parent::insertAt($index,$item);
else
throw new TInvalidDataTypeException('controlcollection_control_required');
}
/**
* Removes an item at the specified position.
* This overrides the parent implementation by performing additional
* cleanup work when removing a child control.
* @param integer the index of the item to be removed.
* @return mixed the removed item.
*/
public function removeAt($index)
{
$item=parent::removeAt($index);
if($item instanceof TControl)
$this->_o->removedControl($item);
return $item;
}
/**
* Overrides the parent implementation by invoking {@link TControl::clearNamingContainer}
*/
public function clear()
{
parent::clear();
if($this->_o instanceof INamingContainer)
$this->_o->clearNamingContainer();
}
}
|