You are here

public function Roles::query in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/user/src/Plugin/views/field/Roles.php \Drupal\user\Plugin\views\field\Roles::query()
  2. 10 core/modules/user/src/Plugin/views/field/Roles.php \Drupal\user\Plugin\views\field\Roles::query()

Called to add the field to a query.

Overrides FieldPluginBase::query

File

core/modules/user/src/Plugin/views/field/Roles.php, line 61

Class

Roles
Field handler to provide a list of roles.

Namespace

Drupal\user\Plugin\views\field

Code

public function query() {
  $this
    ->addAdditionalFields();
  $this->field_alias = $this->aliases['uid'];
}