Menu: Link to the navigation dashboard if menu entry has children but no URL
This commit is contained in:
parent
a83a9cef03
commit
b6b87796ed
|
@ -543,7 +543,7 @@ class NavigationItem implements IteratorAggregate
|
||||||
public function getUrl()
|
public function getUrl()
|
||||||
{
|
{
|
||||||
if ($this->url === null && $this->hasChildren()) {
|
if ($this->url === null && $this->hasChildren()) {
|
||||||
$this->setUrl(Url::fromPath('#'));
|
$this->setUrl(Url::fromPath('navigation/dashboard', array('name' => strtolower($this->getName()))));
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->url;
|
return $this->url;
|
||||||
|
|
Loading…
Reference in New Issue