blob: fc91200347d25f83c537423530434d793f12bfb7 (
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
|
<?php
class LabeledTextBox extends TCompositeControl
{
private $_label;
private $_textbox;
public function createChildControls()
{
$this->_label=new TLabel;
$this->_label->setID('Label');
$this->getControls()->add($this->_label);
$this->getControls()->add(' ');
$this->_textbox=new TTextBox;
$this->_textbox->setID('TextBox');
$this->_label->setForControl('TextBox');
$this->getControls()->add($this->_textbox);
}
public function getLabel()
{
$this->ensureChildControls();
return $this->_label;
}
public function getTextBox()
{
$this->ensureChildControls();
return $this->_textbox;
}
}
?>
|