blob: 21eb764e809a63e9ab4531c72356734d6228b135 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
class Layout extends TTemplateControl
{
public function __construct()
{
if(isset($this->Request['notheme']))
$this->Service->RequestedPage->EnableTheming=false;
parent::__construct();
}
public function onLoad($param)
{
parent::onLoad($param);
$url=$this->Request->RequestUri;
if(strpos($url,'?')===false)
$url.='index.php?notheme=true';
else
$url.='¬heme=true';
$this->PrinterLink->NavigateUrl=$url;
if(isset($this->Request['notheme']))
{
$this->MainMenu->Visible=false;
$this->TopicPanel->Visible=false;
}
}
}
?>
|