MenuLinkContent::isExpanded

public MenuLinkContent::isExpanded()

Returns whether the menu link is marked as always expanded.

Return value

bool TRUE for expanded, FALSE otherwise.

Overrides MenuLinkContentInterface::isExpanded

File

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

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;
}
doc_Drupal
2016-10-29 09:26:33
Comments
Leave a Comment

Please login to continue.