summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/LabeledTextBox2/Home.php
blob: 2b18972d478ba91ee0a5ee7446a2ee71aa348517 (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;
	}
}

?>