summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.php
blob: abb6c8c8625ac90b0939fb148340187979260092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

class PageStateTest extends TPage
{
	function button1_oncallback($sender, $param)
	{
		sleep(rand(0,5));
		$this->label1->Text .= " button1 clicked ";
	}
}

?>