You are here

protected function Field::documentSelfTokens in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/src/Plugin/views/field/Field.php \Drupal\views\Plugin\views\field\Field::documentSelfTokens()

Document any special tokens this field might use for itself.

Overrides FieldPluginBase::documentSelfTokens

See also

addSelfTokens()

File

core/modules/views/src/Plugin/views/field/Field.php, line 904
Contains \Drupal\views\Plugin\views\field\Field.

Class

Field
A field that displays entity field data.

Namespace

Drupal\views\Plugin\views\field

Code

protected function documentSelfTokens(&$tokens) {
  $field = $this
    ->getFieldDefinition();
  foreach ($field
    ->getColumns() as $id => $column) {
    $tokens['{{ ' . $this->options['id'] . '__' . $id . ' }}'] = $this
      ->t('Raw @column', array(
      '@column' => $id,
    ));
  }
}