public MenuLinkContent::isEnabled()
Returns whether the menu link is marked as enabled.
Return value
bool TRUE if is enabled, otherwise FALSE.
Overrides MenuLinkContentInterface::isEnabled
File
- core/modules/menu_link_content/src/Entity/MenuLinkContent.php, line 105
Class
- MenuLinkContent
- Defines the menu link content entity class.
Namespace
Drupal\menu_link_content\Entity
Code
public function isEnabled() { return (bool) $this->get('enabled')->value; }
Please login to continue.