public LinkGenerator::generateFromLink(Link $link)
Renders a link from a link object.
@internal Should not be used in user code. Use \Drupal\Core\Link instead.
Parameters
\Drupal\Core\Link $link: A link object to convert to a string.
Return value
\Drupal\Core\GeneratedLink A GeneratedLink object containing a link to the given route and parameters and bubbleable metadata.
Overrides LinkGeneratorInterface::generateFromLink
File
- core/lib/Drupal/Core/Utility/LinkGenerator.php, line 62
Class
- LinkGenerator
- Provides a class which generates a link with route names and parameters.
Namespace
Drupal\Core\Utility
Code
public function generateFromLink(Link $link) { return $this->generate($link->getText(), $link->getUrl()); }
Please login to continue.