function MenuLinkContent::getUrlObject

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

Gets the URL object pointing to the URL of the menu link content entity.

Return value

\Drupal\Core\Url A Url object instance.

Overrides MenuLinkContentInterface::getUrlObject

1 call to MenuLinkContent::getUrlObject()
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 103

Class

MenuLinkContent
Defines the menu link content entity class.

Namespace

Drupal\menu_link_content\Entity

Code

public function getUrlObject() {
  $url = $this->link
    ->first()
    ->getUrl();
  assert($url instanceof Url);
  if ($attributes = $url->getOption('attributes')) {
    $url->setOption('attributes', AttributeXss::sanitizeAttributes($attributes));
  }
  return $url;
}

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