class Users

Same name and namespace in other branches
  1. 11.x core/modules/user/src/Plugin/views/wizard/Users.php \Drupal\user\Plugin\views\wizard\Users

Tests creating user views with the wizard.

Plugin annotation


@ViewsWizard(
  id = "users",
  base_table = "users_field_data",
  title = @Translation("Users")
)

Hierarchy

Expanded class hierarchy of Users

49 string references to 'Users'
CommentStorageSchema::getSharedTableFieldSchema in core/modules/comment/src/CommentStorageSchema.php
CommentViewsData::getViewsData in core/modules/comment/src/CommentViewsData.php
comment_schema in core/modules/comment/comment.install
Implements hook_schema().
ContentEntityTest::testUserSource in core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/ContentEntityTest.php
Tests user source plugin.
DbDumpTest::setUp in core/tests/Drupal/KernelTests/Core/Command/DbDumpTest.php

... See full list

File

core/modules/user/src/Plugin/views/wizard/Users.php, line 20

Namespace

Drupal\user\Plugin\views\wizard
View source
class Users extends WizardPluginBase {
  
  /**
   * Set the created column.
   *
   * @var string
   */
  protected $createdColumn = 'created';
  
  /**
   * Set default values for the filters.
   */
  protected $filters = [
    'status' => [
      'value' => TRUE,
      'table' => 'users_field_data',
      'field' => 'status',
      'plugin_id' => 'boolean',
      'entity_type' => 'user',
      'entity_field' => 'status',
    ],
  ];
  
  /**
   * {@inheritdoc}
   */
  protected function defaultDisplayOptions() {
    $display_options = parent::defaultDisplayOptions();
    // Add permission-based access control.
    $display_options['access']['type'] = 'perm';
    $display_options['access']['options']['perm'] = 'access user profiles';
    // Remove the default fields, since we are customizing them here.
    unset($display_options['fields']);
    /* Field: User: Name */
    $display_options['fields']['name']['id'] = 'name';
    $display_options['fields']['name']['table'] = 'users_field_data';
    $display_options['fields']['name']['field'] = 'name';
    $display_options['fields']['name']['entity_type'] = 'user';
    $display_options['fields']['name']['entity_field'] = 'name';
    $display_options['fields']['name']['label'] = '';
    $display_options['fields']['name']['alter']['alter_text'] = 0;
    $display_options['fields']['name']['alter']['make_link'] = 0;
    $display_options['fields']['name']['alter']['absolute'] = 0;
    $display_options['fields']['name']['alter']['trim'] = 0;
    $display_options['fields']['name']['alter']['word_boundary'] = 0;
    $display_options['fields']['name']['alter']['ellipsis'] = 0;
    $display_options['fields']['name']['alter']['strip_tags'] = 0;
    $display_options['fields']['name']['alter']['html'] = 0;
    $display_options['fields']['name']['hide_empty'] = 0;
    $display_options['fields']['name']['empty_zero'] = 0;
    $display_options['fields']['name']['plugin_id'] = 'field';
    return $display_options;
  }

}

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