summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/features/protected/pages/ActiveControls/ActiveControl.php
blob: e9a6226a9a64e11e985bf36a2afb9defdd006222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
/*
 * Created on 2/05/2006
 */
 
class ActiveControl extends TPage
{
	public function control1onCallback($sender, $param)
	{
		sleep(5);
		$this->label1->setText("The time is ".time()." from ".$sender->ID);
	}
}
?>