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

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

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

?>