blob: 51df05833c8cab0df3e8c4a60d2ccb01f905ba17 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<?php
/**
* SiteMap template class file.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2006 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Id: SiteMap.php 3189 2012-07-12 12:16:21Z ctrlaltca $
* @package Demos
*/
/**
* SiteMap menu is rendered depending on user roles.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @version $Id: SiteMap.php 3189 2012-07-12 12:16:21Z ctrlaltca $
* @package Demos
* @since 3.1
*/
class SiteMap extends TTemplateControl
{
/**
* Sets the active menu item using css class.
*/
public function onPreRender($param)
{
parent::onPreRender($param);
$page = explode('.',$this->Request->ServiceParameter);
$active = null;
switch($page[count($page)-1])
{
case 'ProjectList':
case 'ProjectDetails':
$active = $this->ProjectMenu;
break;
case 'UserList':
case 'UserCreate':
$active = $this->AdminMenu;
break;
case 'ReportProject':
case 'ReportResource':
$active = $this->ReportMenu;
break;
default:
$active = $this->LogMenu;
break;
}
//add 'active' string to place holder body.
if(!is_null($active))
$active->Controls[] = 'active';
}
}
|