You are here

public function RedirectSourceItem::getUrl in Redirect 8

File

src/Plugin/Field/FieldType/RedirectSourceItem.php, line 108

Class

RedirectSourceItem
Plugin implementation of the 'link' field type for redirect source.

Namespace

Drupal\redirect\Plugin\Field\FieldType

Code

public function getUrl() {
  return Url::fromUri('base:' . $this->path, [
    'query' => $this->query,
  ]);
}