protected function NodeRow::defineOptions in Drupal 10
Same name and namespace in other branches
- 8 core/modules/node/src/Plugin/views/row/NodeRow.php \Drupal\node\Plugin\views\row\NodeRow::defineOptions()
- 9 core/modules/node/src/Plugin/views/row/NodeRow.php \Drupal\node\Plugin\views\row\NodeRow::defineOptions()
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\rowCode
protected function defineOptions() {
$options = parent::defineOptions();
$options['view_mode']['default'] = 'teaser';
return $options;
}