You are here

public function MenuLinkContent::isExpanded in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/menu_link_content/src/Entity/MenuLinkContent.php \Drupal\menu_link_content\Entity\MenuLinkContent::isExpanded()

Returns whether the menu link is marked as always expanded.

Return value

bool TRUE for expanded, FALSE otherwise.

Overrides MenuLinkContentInterface::isExpanded

1 call to MenuLinkContent::isExpanded()
MenuLinkContent::getPluginDefinition in core/modules/menu_link_content/src/Entity/MenuLinkContent.php
Builds up the menu link plugin definition for this entity.

File

core/modules/menu_link_content/src/Entity/MenuLinkContent.php, line 128

Class

MenuLinkContent
Defines the menu link content entity class.

Namespace

Drupal\menu_link_content\Entity

Code

public function isExpanded() {
  return (bool) $this
    ->get('expanded')->value;
}