public Entity::url($rel = 'canonical', $options = array())
Gets the public URL for this entity.
string $rel: The link relationship type, for example: canonical or edit-form.
array $options: See \Drupal\Core\Routing\UrlGeneratorInterface::generateFromRoute() for the available options.
string The URL for this entity.
Overrides EntityInterface::url
\Drupal\Core\Entity\EntityInterface::toUrl
public function url($rel = 'canonical', $options = array()) { // While self::toUrl() will throw an exception if the entity has no id, // the expected result for a URL is always a string. if ($this->id() === NULL || !$this->hasLinkTemplate($rel)) { return ''; } $uri = $this->toUrl($rel); $options += $uri->getOptions(); $uri->setOptions($options); return $uri->toString(); }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!Entity.php/function/Entity::url/8.1.x