summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/ActivePanelTest.php
blob: b29f8920aaffc1b60419b60598c2975a05d1f411 (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->NewWriter);
	}
}

?>