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

class ActivePanelTest extends TPage
{
	function callback1_requested($sender, $param)
	{
		$this->content1->visible = true;
		$this->panel1->render($param->output);
	}
}

?>