function TokenizeAreaPluginBase::defineOptions

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/area/TokenizeAreaPluginBase.php \Drupal\views\Plugin\views\area\TokenizeAreaPluginBase::defineOptions()
  2. 10 core/modules/views/src/Plugin/views/area/TokenizeAreaPluginBase.php \Drupal\views\Plugin\views\area\TokenizeAreaPluginBase::defineOptions()
  3. 11.x core/modules/views/src/Plugin/views/area/TokenizeAreaPluginBase.php \Drupal\views\Plugin\views\area\TokenizeAreaPluginBase::defineOptions()

Overrides AreaPluginBase::defineOptions

3 calls to TokenizeAreaPluginBase::defineOptions()
Entity::defineOptions in core/modules/views/src/Plugin/views/area/Entity.php
Information about options for all kinds of purposes will be held here.
Text::defineOptions in core/modules/views/src/Plugin/views/area/Text.php
Information about options for all kinds of purposes will be held here.
TextCustom::defineOptions in core/modules/views/src/Plugin/views/area/TextCustom.php
Information about options for all kinds of purposes will be held here.
3 methods override TokenizeAreaPluginBase::defineOptions()
Entity::defineOptions in core/modules/views/src/Plugin/views/area/Entity.php
Information about options for all kinds of purposes will be held here.
Text::defineOptions in core/modules/views/src/Plugin/views/area/Text.php
Information about options for all kinds of purposes will be held here.
TextCustom::defineOptions in core/modules/views/src/Plugin/views/area/TextCustom.php
Information about options for all kinds of purposes will be held here.

File

core/modules/views/src/Plugin/views/area/TokenizeAreaPluginBase.php, line 22

Class

TokenizeAreaPluginBase
Tokenized base class for area handlers.

Namespace

Drupal\views\Plugin\views\area

Code

protected function defineOptions() {
    $options = parent::defineOptions();
    $options['tokenize'] = [
        'default' => FALSE,
    ];
    return $options;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.