function EntityRow::defineOptions

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. 8.9.x core/modules/views/src/Plugin/views/row/EntityRow.php \Drupal\views\Plugin\views\row\EntityRow::defineOptions()
  3. 10 core/modules/views/src/Plugin/views/row/EntityRow.php \Drupal\views\Plugin\views\row\EntityRow::defineOptions()

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 169

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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.