public function MenuLinkContent::getUrlObject in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 82 - Contains \Drupal\menu_link_content\Entity\MenuLinkContent.
Class
- MenuLinkContent
- Defines the menu link content entity class.
Namespace
Drupal\menu_link_content\EntityCode
public function getUrlObject() {
return $this->link
->first()
->getUrl();
}