parent
bf2cb9ab7e
commit
ee43fdad0a
|
@ -47,4 +47,17 @@ class DashboardPane extends NavigationItem
|
||||||
{
|
{
|
||||||
$this->setUrl(Url::fromPath('dashboard', array('pane' => $this->getName())));
|
$this->setUrl(Url::fromPath('dashboard', array('pane' => $this->getName())));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function merge(NavigationItem $item)
|
||||||
|
{
|
||||||
|
parent::merge($item);
|
||||||
|
|
||||||
|
$this->setDashlets(array_merge(
|
||||||
|
$this->getDashlets(),
|
||||||
|
$item->getDashlets()
|
||||||
|
));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue