Template file: Home.page
Class file: Home.php
Class file: LabeledTextBox.php
Template file: LabeledTextBox.tpl

/Controls/Samples/LabeledTextBox1/LabeledTextBox.php

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
 
class LabeledTextBox extends TTemplateControl
{
    public function getLabel()
    {
        $this->ensureChildControls();
        return $this->getRegisteredObject('Label');
    }
 
    public function getTextBox()
    {
        $this->ensureChildControls();
        return $this->getRegisteredObject('TextBox');
    }
}
 
?>