function MenuLinkContent::getParentId

Same name and namespace in other branches
  1. 11.x core/modules/menu_link_content/src/Entity/MenuLinkContent.php \Drupal\menu_link_content\Entity\MenuLinkContent::getParentId()
  2. 10 core/modules/menu_link_content/src/Entity/MenuLinkContent.php \Drupal\menu_link_content\Entity\MenuLinkContent::getParentId()
  3. 8.9.x core/modules/menu_link_content/src/Entity/MenuLinkContent.php \Drupal\menu_link_content\Entity\MenuLinkContent::getParentId()

File

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

Class

MenuLinkContent
Defines the menu link content entity class.

Namespace

Drupal\menu_link_content\Entity

Code

public function getParentId() {
  // Cast the parent ID to a string, only an empty string means no parent,
  // NULL keeps the existing parent.
  return (string) $this->get('parent')->value;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.