summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/validators/protected/pages/Button.php
blob: 94aaf6c8fa2509b5de797a79e3f7e24b327ae3ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php

class Button extends TPage
{
	public function button1Clicked($sender,$param)
	{
		$this->Result1->Text="Button1 is clicked";
		if($this->IsValid)
			$this->Result1->Text.=' and valid';
	}

	public function button2Clicked($sender,$param)
	{
		$this->Result2->Text="Button2 is clicked";
		if($this->IsValid)
			$this->Result2->Text.=' and valid';
	}

	public function button3Clicked($sender,$param)
	{
		$this->Result3->Text="Button3 is clicked";
		if($this->IsValid)
			$this->Result3->Text.=' and valid';
	}
}

?>