You are here

public function UserRole::getCacheContexts in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/user/src/Plugin/Condition/UserRole.php \Drupal\user\Plugin\Condition\UserRole::getCacheContexts()
  2. 9 core/modules/user/src/Plugin/Condition/UserRole.php \Drupal\user\Plugin\Condition\UserRole::getCacheContexts()

File

core/modules/user/src/Plugin/Condition/UserRole.php, line 86

Class

UserRole
Provides a 'User Role' condition.

Namespace

Drupal\user\Plugin\Condition

Code

public function getCacheContexts() {

  // Optimize cache context, if a user cache context is provided, only use
  // user.roles, since that's the only part this condition cares about.
  $contexts = [];
  foreach (parent::getCacheContexts() as $context) {
    $contexts[] = $context == 'user' ? 'user.roles' : $context;
  }
  return $contexts;
}