public function TokenizeAreaPluginBase::buildOptionsForm

Default options form that provides the label widget that all fields should have.

Overrides AreaPluginBase::buildOptionsForm

3 calls to TokenizeAreaPluginBase::buildOptionsForm()
Entity::buildOptionsForm in drupal/core/modules/views/lib/Drupal/views/Plugin/views/area/Entity.php
Default options form that provides the label widget that all fields should have.
Text::buildOptionsForm in drupal/core/modules/views/lib/Drupal/views/Plugin/views/area/Text.php
Overrides \Drupal\views\Plugin\views\area\TokenizeAreaPluginBase::buildOptionsForm().
TextCustom::buildOptionsForm in drupal/core/modules/views/lib/Drupal/views/Plugin/views/area/TextCustom.php
Default options form that provides the label widget that all fields should have.
3 methods override TokenizeAreaPluginBase::buildOptionsForm()
Entity::buildOptionsForm in drupal/core/modules/views/lib/Drupal/views/Plugin/views/area/Entity.php
Default options form that provides the label widget that all fields should have.
Text::buildOptionsForm in drupal/core/modules/views/lib/Drupal/views/Plugin/views/area/Text.php
Overrides \Drupal\views\Plugin\views\area\TokenizeAreaPluginBase::buildOptionsForm().
TextCustom::buildOptionsForm in drupal/core/modules/views/lib/Drupal/views/Plugin/views/area/TextCustom.php
Default options form that provides the label widget that all fields should have.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/area/TokenizeAreaPluginBase.php, line 34
Contains \Drupal\views\Plugin\views\area\TokenizeAreaPluginBase.

Class

TokenizeAreaPluginBase
Tokenized base class for area handlers.

Namespace

Drupal\views\Plugin\views\area

Code

public function buildOptionsForm(&$form, &$form_state) {
  parent::buildOptionsForm($form, $form_state);

  // Add tokenization form elements.
  $this
    ->tokenForm($form, $form_state);
}