function EntityField::documentSelfTokens
Document any special tokens this field might use for itself.
Overrides FieldPluginBase::documentSelfTokens
File
-
core/
modules/ views/ src/ Plugin/ views/ field/ EntityField.php, line 977
Class
- EntityField
- A field that displays entity field data.
Namespace
Drupal\views\Plugin\views\fieldCode
protected function documentSelfTokens(&$tokens) {
$field = $this->getFieldDefinition();
foreach ($field->getColumns() as $id => $column) {
$tokens['{{ ' . $this->options['id'] . '__' . $id . ' }}'] = $this->t('Raw @column', [
'@column' => $id,
]);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.