summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/validators/protected/pages/ImageButton.php
blob: 175c5f55c069e70a582ee095e5b759ab13e7bc8e (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
<?php

class ImageButton 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';
	}
}