blob: 79e3d46c7c29466fb8e4137c8738b07a2e684226 (
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->flush($param->output);
}
}
?>
|