You are here

protected function UserRow::defineOptions in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/user/src/Plugin/views/row/UserRow.php \Drupal\user\Plugin\views\row\UserRow::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/user/src/Plugin/views/row/UserRow.php, line 26
Contains \Drupal\user\Plugin\views\row\UserRow.

Class

UserRow
A row plugin which renders a user.

Namespace

Drupal\user\Plugin\views\row

Code

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