You are here

protected function EntityRow::defineOptions in Drupal 8

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

2 calls to EntityRow::defineOptions()
NodeRow::defineOptions in core/modules/node/src/Plugin/views/row/NodeRow.php
Information about options for all kinds of purposes will be held here.
UserRow::defineOptions in core/modules/user/src/Plugin/views/row/UserRow.php
Information about options for all kinds of purposes will be held here.
2 methods override EntityRow::defineOptions()
NodeRow::defineOptions in core/modules/node/src/Plugin/views/row/NodeRow.php
Information about options for all kinds of purposes will be held here.
UserRow::defineOptions in core/modules/user/src/Plugin/views/row/UserRow.php
Information about options for all kinds of purposes will be held here.

File

core/modules/views/src/Plugin/views/row/EntityRow.php, line 200

Class

EntityRow
Generic entity row plugin to provide a common base for all entity types.

Namespace

Drupal\views\Plugin\views\row

Code

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