Skip to content
Code-Schnipsel Gruppen Projekte
Commit b3e062b5 erstellt von Michael Danielczok's avatar Michael Danielczok
Dateien durchsuchen

refactor: Code style

Übergeordneter eb57136b
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
......@@ -54,12 +54,6 @@ public function __construct($attributes = [])
*/
public function getBody()
{
$Engine = QUI::getTemplateManager()->getEngine();
if (!$this->getAttribute('menuId') && !$this->getAttribute('startId')) {
return '';
}
if ($this->getAttribute('menuId')) {
// independent menu
$children = $this->getChildrenForIndependentMenu();
......@@ -69,15 +63,21 @@ public function getBody()
$children = $this->getChildrenForQUISite();
$template = dirname(__FILE__).'/UrlList.Default.html';
} else {
$children = [];
return '';
}
$icon = '';
$Engine = QUI::getTemplateManager()->getEngine();
$icon = '';
$restLinkColorCss = '';
if ($this->getAttribute('icon') && strpos($this->getAttribute('icon'), 'fa ') === 0) {
$icon = $this->getAttribute('icon');
}
if ($this->getAttribute('resetLinkColor')) {
$restLinkColorCss = 'quiqqer-urlList-entry-link__resetLinkColor';
}
switch ($this->getAttribute('display')) {
default:
case 'default':
......@@ -85,12 +85,6 @@ public function getBody()
break;
}
$restLinkColorCss = '';
if ($this->getAttribute('resetLinkColor')) {
$restLinkColorCss = 'quiqqer-urlList-entry-link__resetLinkColor';
}
$Engine->assign([
'this' => $this,
'headerText' => $this->getAttribute('headerText'),
......
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