blob: 43d93d3007c4401366b3b1f42ba7a8fb4952e115 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/*
* Created on 2/05/2006
*/
class ActiveControl extends TPage
{
public function control1onCallback($sender, $param)
{
$this->button2->setVisible(true);
$this->button2->setText("Time is ".time());
$this->control1->render($param->getOutput());
}
}
?>
|