You are here

protected function NodeRow::defineOptions in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/node/src/Plugin/views/row/NodeRow.php \Drupal\node\Plugin\views\row\NodeRow::defineOptions()
  2. 10 core/modules/node/src/Plugin/views/row/NodeRow.php \Drupal\node\Plugin\views\row\NodeRow::defineOptions()

Information about options for all kinds of purposes will be held here.


'option_name' => array(
 - 'default' => default value,
 - 'contains' => (optional) array of items this contains, with its own
     defaults, etc. If contains is set, the default will be ignored and
     assumed to be array().
 ),

Return value

array Returns the options of this handler/plugin.

Overrides EntityRow::defineOptions

File

core/modules/node/src/Plugin/views/row/NodeRow.php, line 23

Class

NodeRow
Plugin which performs a node_view on the resulting object.

Namespace

Drupal\node\Plugin\views\row

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['view_mode']['default'] = 'teaser';
  return $options;
}