function FieldPluginBase::linkGenerator
Gets the link generator.
Return value
\Drupal\Core\Utility\LinkGeneratorInterface
File
-
core/
modules/ views/ src/ Plugin/ views/ field/ FieldPluginBase.php, line 1886
Class
- FieldPluginBase
- Base class for views fields.
Namespace
Drupal\views\Plugin\views\fieldCode
protected function linkGenerator() {
if (!isset($this->linkGenerator)) {
$this->linkGenerator = \Drupal::linkGenerator();
}
return $this->linkGenerator;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.