public function ToolbarMenuElement::loadMenu in Toolbar Menu 8.2
Same name and namespace in other branches
- 8 src/Entity/ToolbarMenuElement.php \Drupal\toolbar_menu\Entity\ToolbarMenuElement::loadMenu()
Get the full loaded menu entity.
Return value
\Drupal\system\Entity\Menu|null|static Loaded menu.
File
- src/
Entity/ ToolbarMenuElement.php, line 77
Class
- ToolbarMenuElement
- Defines the Toolbar element entity.
Namespace
Drupal\toolbar_menu\EntityCode
public function loadMenu() {
if ($this
->menu()) {
return Menu::Load($this
->menu());
}
return NULL;
}