function AreaPluginBase::defineOptions

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

Overrides HandlerBase::defineOptions

8 calls to AreaPluginBase::defineOptions()
DisplayLink::defineOptions in core/modules/views/src/Plugin/views/area/DisplayLink.php
Information about options for all kinds of purposes will be held here.
HTTPStatusCode::defineOptions in core/modules/views/src/Plugin/views/area/HTTPStatusCode.php
Information about options for all kinds of purposes will be held here.
Messages::defineOptions in core/modules/views/src/Plugin/views/area/Messages.php
Information about options for all kinds of purposes will be held here.
Result::defineOptions in core/modules/views/src/Plugin/views/area/Result.php
Information about options for all kinds of purposes will be held here.
TestExample::defineOptions in core/modules/views/tests/modules/views_test_data/src/Plugin/views/area/TestExample.php
Information about options for all kinds of purposes will be held here.

... See full list

8 methods override AreaPluginBase::defineOptions()
DisplayLink::defineOptions in core/modules/views/src/Plugin/views/area/DisplayLink.php
Information about options for all kinds of purposes will be held here.
HTTPStatusCode::defineOptions in core/modules/views/src/Plugin/views/area/HTTPStatusCode.php
Information about options for all kinds of purposes will be held here.
Messages::defineOptions in core/modules/views/src/Plugin/views/area/Messages.php
Information about options for all kinds of purposes will be held here.
Result::defineOptions in core/modules/views/src/Plugin/views/area/Result.php
Information about options for all kinds of purposes will be held here.
TestExample::defineOptions in core/modules/views/tests/modules/views_test_data/src/Plugin/views/area/TestExample.php
Information about options for all kinds of purposes will be held here.

... See full list

File

core/modules/views/src/Plugin/views/area/AreaPluginBase.php, line 59

Class

AreaPluginBase
Base class for area handler plugins.

Namespace

Drupal\views\Plugin\views\area

Code

protected function defineOptions() {
    $options = parent::defineOptions();
    $this->definition['field'] = !empty($this->definition['field']) ? $this->definition['field'] : '';
    $label = !empty($this->definition['label']) ? $this->definition['label'] : $this->definition['field'];
    $options['admin_label']['default'] = $label;
    $options['empty'] = [
        'default' => FALSE,
    ];
    return $options;
}

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