summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/LabeledTextBox2/Home.php
blob: ae3f9e8b68578b820cd5de6d2d6eb423bd70c7e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

Prado::using('Application.pages.Controls.Samples.LabeledTextBox2.LabeledTextBox');

class Home extends TPage
{
	public function buttonClicked($sender,$param)
	{
		$sender->Text=$this->Input->TextBox->Text;
	}
}

?>