Newer
Older
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
57
58
59
60
61
62
63
64
65
66
<?php
/**
* This file contains \QUI\Menu\DropDownMenu
*/
namespace QUI\Menu;
use QUI;
/**
* Class DropDownMenu
* Creates an Drop Down Menu
*
* @package QUI\Menu
* @author www.pcsg.de (Henning Leutz)
*/
class DropDownMenu extends QUI\Control
{
/**
* @param array $attributes
*/
public function __construct($attributes = array())
{
parent::__construct($attributes);
$this->setAttribute('class', 'qui-menu-dropdown');
$this->setAttribute('qui-class', 'package/quiqqer/menu/bin/DropDownMenu');
$this->addCSSFile(dirname(__FILE__).'/DropDownMenu.css');
}
/**
* Create the Body
*
* @return string
* @throws QUI\Exception
*/
public function getBody()
{
$Engine = QUI::getTemplateManager()->getEngine();
$Engine->assign(array(
'this' => $this,
'Site' => $this->_getSite(),
'Project' => $this->_getProject(),
'FileMenu' => dirname(__FILE__).'/DropDownMenu.Children.html'
));
return $Engine->fetch(dirname(__FILE__).'/DropDownMenu.html');
}
/**
* Return the current site
*
* @return mixed|QUI\Projects\Site
*/
protected function _getSite()
{
if ($this->getAttribute('Site')) {
return $this->getAttribute('Site');
}
return QUI::getRewrite()->getSite();
}
}