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

class Home extends TPage
{
	public function buttonClicked($sender,$param)
	{
		if($param instanceof TCommandEventParameter)
			$sender->Text="Name: {$param->CommandName}, Param: {$param->CommandParameter}";
		else
			$sender->Text="I'm clicked";
	}
}

?>