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