function SearchRow::defineOptions

Same name in other branches
  1. 8.9.x core/modules/search/src/Plugin/views/row/SearchRow.php \Drupal\search\Plugin\views\row\SearchRow::defineOptions()
  2. 10 core/modules/search/src/Plugin/views/row/SearchRow.php \Drupal\search\Plugin\views\row\SearchRow::defineOptions()
  3. 11.x core/modules/search/src/Plugin/views/row/SearchRow.php \Drupal\search\Plugin\views\row\SearchRow::defineOptions()

Overrides RowPluginBase::defineOptions

File

core/modules/search/src/Plugin/views/row/SearchRow.php, line 22

Class

SearchRow
Row handler plugin for displaying search results.

Namespace

Drupal\search\Plugin\views\row

Code

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

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