blob: 8323667aad3e4577a75b64269596bdd014580060 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/*
* Created on 2/05/2006
*/
class ActiveControl extends TPage
{
public function control1onCallback($sender, $param)
{
$this->label1->setText("The time is ".time());
}
}
?>
|