protected function NodeRow::defineOptions in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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 28 - Contains \Drupal\node\Plugin\views\row\NodeRow.
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;
}