Skip to content
Code-Schnipsel Gruppen Projekte
Commit 5fa06dcc erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen

refactor: Abstract Menu Parent Class

Übergeordneter 49057cf3
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
<?php
namespace QUI\Menu;
use QUI;
/**
* Class AbstractMenu
* Starting point for menu controls
*
* @package QUI\Menu
*/
abstract class AbstractMenu extends QUI\Control
{
/**
* @var string
*/
protected $append = '';
/**
* @var string
*/
protected $prepend = '';
/**
* append html to the menu
* adds a html after the menu
*
* @param string $html
*/
public function appendHTML($html)
{
$this->append = $html;
}
/**
* prepend html to the menu
* adds a html before the menu
*
* @param string $html
*/
public function prependHTML($html)
{
$this->prepend = $html;
}
}
.quiqqer-menu-megaMenu {
float: left;
position: relative;
z-index: 1000;
z-index: 50;
width: 100%;
}
.quiqqer-menu-megaMenu-list {
......
<nav>
{$prepend}
<ul class="quiqqer-menu-megaMenu-list">
{if $this->getAttribute('showStart')}
<li class="quiqqer-menu-megaMenu-list-item{if $Site->getId() == $Start->getId()} quiqqer-menu-megaMenu-list-item--current{/if}">
......@@ -66,4 +68,6 @@
</li>
{/foreach}
</ul>
{$append}
</nav>
\ No newline at end of file
......@@ -12,7 +12,7 @@
*
* @package QUI\Menu
*/
class MegaMenu extends QUI\Control
class MegaMenu extends AbstractMenu
{
/**
* @param array $attributes
......@@ -46,7 +46,9 @@ public function getBody()
'Start' => $this->getStart(),
'children' => $this->getStart()->getNavigation(),
'Rewrite' => QUI::getRewrite(),
'jsControl' => 'package/quiqqer/menu/bin/MegaMenu'
'jsControl' => 'package/quiqqer/menu/bin/MegaMenu',
'prepend' => $this->prepend,
'append' => $this->append
));
return $Engine->fetch(dirname(__FILE__) . '/MegaMenu.html');
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren