You are here

public function Permissions::query in Drupal 10

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

Replace the configured permission with a filter by all roles that have this permission.

Overrides InOperator::query

File

core/modules/user/src/Plugin/views/filter/Permissions.php, line 89

Class

Permissions
Filter handler for user roles.

Namespace

Drupal\user\Plugin\views\filter

Code

public function query() {

  // @todo user_role_names() should maybe support multiple permissions.
  $rids = [];

  // Get all role IDs that have the configured permissions.
  foreach ($this->value as $permission) {
    $roles = user_role_names(FALSE, $permission);

    // user_role_names() returns an array with the role IDs as keys, so take
    // the array keys and merge them with previously found role IDs.
    $rids = array_merge($rids, array_keys($roles));
  }

  // Remove any duplicate role IDs.
  $rids = array_unique($rids);
  $this->value = $rids;

  // $this->value contains the role IDs that have the configured permission.
  parent::query();
}