AccessResultInterface::orIf

public function AccessResultInterface::orIf

public AccessResultInterface::orIf(AccessResultInterface $other)

Combine this access result with another using OR.

When OR-ing two access results, the result is:

  • isForbidden() in either ⇒ isForbidden()
  • otherwise if isAllowed() in either ⇒ isAllowed()
  • otherwise both must be isNeutral() ⇒ isNeutral()

Truth table:

  |A N F
--+-----
A |A A F
N |A N F
F |F F F

Parameters

\Drupal\Core\Access\AccessResultInterface $other: The other access resul