protected function Roles::documentSelfTokens in Drupal 9
Same name and namespace in other branches
- 8 core/modules/user/src/Plugin/views/field/Roles.php \Drupal\user\Plugin\views\field\Roles::documentSelfTokens()
Document any special tokens this field might use for itself.
Overrides FieldPluginBase::documentSelfTokens
See also
addSelfTokens()
File
- core/
modules/ user/ src/ Plugin/ views/ field/ Roles.php, line 97
Class
- Roles
- Field handler to provide a list of roles.
Namespace
Drupal\user\Plugin\views\fieldCode
protected function documentSelfTokens(&$tokens) {
$tokens['{{ ' . $this->options['id'] . '__role' . ' }}'] = $this
->t('The name of the role.');
$tokens['{{ ' . $this->options['id'] . '__rid' . ' }}'] = $this
->t('The role machine-name of the role.');
}