function Link::getLinkGenerator
Returns the link generator.
Return value
\Drupal\Core\Utility\LinkGeneratorInterface The link generator
File
- 
              core/lib/ Drupal/ Core/ Link.php, line 184 
Class
- Link
- Defines an object that holds information about a link.
Namespace
Drupal\CoreCode
protected function getLinkGenerator() {
  if (!isset($this->linkGenerator)) {
    $this->linkGenerator = \Drupal::service('link_generator');
  }
  return $this->linkGenerator;
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
