UserRow.php
Same filename in other branches
Namespace
Drupal\user\Plugin\views\rowFile
-
core/
modules/ user/ src/ Plugin/ views/ row/ UserRow.php
View 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;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
UserRow | A row plugin which renders a user. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.