You are here

protected function SearchRow::defineOptions in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/search/src/Plugin/views/row/SearchRow.php \Drupal\search\Plugin\views\row\SearchRow::defineOptions()
  2. 9 core/modules/search/src/Plugin/views/row/SearchRow.php \Drupal\search\Plugin\views\row\SearchRow::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;
}