mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-01-07 05:59:35 -05:00
TileRenderer: some cleanup
This commit is contained in:
parent
01a982a0bc
commit
69a1e454d2
1 changed files with 1 additions and 4 deletions
|
|
@ -50,15 +50,13 @@ class TileRenderer extends Renderer
|
|||
|
||||
public function renderBreadCrumb()
|
||||
{
|
||||
$breadcrumb = Element::create('ul', array('class' => 'breadcrumb'));
|
||||
$breadcrumb = Element::create( 'ul', array(
|
||||
'class' => 'breadcrumb',
|
||||
'data-base-target' => '_main'
|
||||
));
|
||||
|
||||
|
||||
$breadcrumb->add(Element::create('li')->add(
|
||||
Link::create('Process', $this->getBaseUrl()))
|
||||
Link::create($this->bp->getTitle(), $this->getBaseUrl()))
|
||||
);
|
||||
$bp = $this->bp;
|
||||
$path = $this->getMyPath();
|
||||
|
|
@ -88,7 +86,6 @@ class TileRenderer extends Renderer
|
|||
$p->attributes()->add('class', $this->getNodeClasses($parent));
|
||||
$p->setTag('li');
|
||||
return $p;
|
||||
// $p->attributes()->add('class', 'parent');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue