You are here

public function LinkItem::getUrl in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/link/src/Plugin/Field/FieldType/LinkItem.php \Drupal\link\Plugin\Field\FieldType\LinkItem::getUrl()

Gets the URL object.

Return value

\Drupal\Core\Url Returns an Url object.

Overrides LinkItemInterface::getUrl

File

core/modules/link/src/Plugin/Field/FieldType/LinkItem.php, line 176
Contains \Drupal\link\Plugin\Field\FieldType\LinkItem.

Class

LinkItem
Plugin implementation of the 'link' field type.

Namespace

Drupal\link\Plugin\Field\FieldType

Code

public function getUrl() {
  return Url::fromUri($this->uri);
}