function Result::defineOptions

Overrides AreaPluginBase::defineOptions

File

core/modules/views/src/Plugin/views/area/Result.php, line 21

Class

Result
Views area handler to display some configurable result summary.

Namespace

Drupal\views\Plugin\views\area

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['content'] = [
    'default' => $this->t('Displaying @start - @end of @total'),
  ];
  return $options;
}

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