blob: cca7d57b70daafb5754998eede232534847b5f2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
class Home extends TPage
{
public function onPreInit($param)
{
parent::onPreInit($param);
if(!$this->getUser()->getIsGuest())
$this->setTheme('');
}
public function testClick($sender,$param)
{
if($sender->BackColor==='')
$sender->BackColor='blue';
else
$sender->BackColor='';
}
}
?>
|