ConditionAccessResolverTrait::resolveConditions

protected ConditionAccessResolverTrait::resolveConditions($conditions, $condition_logic)

Resolves the given conditions based on the condition logic ('and'/'or').

Parameters

\Drupal\Core\Condition\ConditionInterface[] $conditions: A set of conditions.

string $condition_logic: The logic used to compute access, either 'and' or 'or'.

Return value

bool Whether these conditions grant or deny access.

File

core/lib/Drupal/Core/Condition/ConditionAccessResolverTrait.php, line 23

Class

ConditionAccessResolverTrait
Resolves a set of conditions.

Namespace

Drupal\Core\Condition

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
protected function resolveConditions($conditions, $condition_logic) {
  foreach ($conditions as $condition) {
    try {
      $pass = $condition->execute();
    }
    catch (ContextException $e) {
      // If a condition is missing context and is not negated, consider that a
      // fail.
      $pass = $condition->isNegated();
    }
 
    // If a condition fails and all conditions were needed, deny access.
    if (!$pass && $condition_logic == 'and') {
      return FALSE;
    }
    // If a condition passes and only one condition was needed, grant access.
    elseif ($pass && $condition_logic == 'or') {
      return TRUE;
    }
  }
 
  // Return TRUE if logic was 'and', meaning all rules passed.
  // Return FALSE if logic was 'or', meaning no rule passed.
  return $condition_logic == 'and';
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.