You are here

public function Permissions::getValueOptions in Drupal 10

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

Child classes should be used to override this function and set the 'value options', unless 'options callback' is defined as a valid function or static public method to generate these values.

This can use a guard to be used to reduce database hits as much as possible.

Return value

array|null The stored values from $this->valueOptions.

Overrides InOperator::getValueOptions

File

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

Class

Permissions
Filter handler for user roles.

Namespace

Drupal\user\Plugin\views\filter

Code

public function getValueOptions() {
  if (!isset($this->valueOptions)) {
    $permissions = $this->permissionHandler
      ->getPermissions();
    foreach ($permissions as $perm => $perm_item) {
      $provider = $perm_item['provider'];
      $display_name = $this->moduleHandler
        ->getName($provider);
      $this->valueOptions[$display_name][$perm] = Html::escape(strip_tags($perm_item['title']));
    }
    return $this->valueOptions;
  }
  else {
    return $this->valueOptions;
  }
}