UserRow.php in Drupal 10
Same filename and directory in other branches
Namespace
Drupal\user\Plugin\views\rowFile
core/modules/user/src/Plugin/views/row/UserRow.phpView source
<?php
namespace Drupal\user\Plugin\views\row;
use Drupal\views\Plugin\views\row\EntityRow;
/**
* A row plugin which renders a user.
*
* @ingroup views_row_plugins
*
* @ViewsRow(
* id = "entity:user",
* )
*/
class UserRow extends EntityRow {
/**
* {@inheritdoc}
*/
protected function defineOptions() {
$options = parent::defineOptions();
$options['view_mode']['default'] = 'full';
return $options;
}
}