public Entity::url($rel = 'canonical', $options = array())
Gets the public URL for this entity.
Parameters
string $rel: The link relationship type, for example: canonical or edit-form.
array $options: See \Drupal\Core\Routing\UrlGeneratorInterface::generateFromRoute() for the available options.
Return value
string The URL for this entity.
Overrides EntityInterface::url
See also
\Drupal\Core\Entity\EntityInterface::toUrl
File
- core/lib/Drupal/Core/Entity/Entity.php, line 278
Class
- Entity
- Defines a base entity class.
Namespace
Drupal\Core\Entity
Code
1 2 3 4 5 6 7 8 9 10 11 12 | 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(); } |
Please login to continue.