summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/THtmlArea/Home.php
blob: 255a2bf30aec7af5cfdbc7d2ce149d4a3d3d90c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

class Home extends TPage
{
	public function button1Clicked($sender,$param)
	{
		$this->Result1->Text="You have entered: ".$this->HtmlArea1->Text;
	}

	public function button2Clicked($sender,$param)
	{
		$this->Result2->Text="You have entered: ".$this->HtmlArea2->Text;
	}

	public function button3Clicked($sender,$param)
	{
		$this->Result3->Text="You have entered: ".$this->HtmlArea3->Text;
	}
}

?>