AccessResultInterface::andIf

public AccessResultInterface::andIf(AccessResultInterface $other)

Combine this access result with another using AND.

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

  • isForbidden() in either ⇒ isForbidden()
  • otherwise, if isAllowed() in both ⇒ isAllowed()
  • otherwise, one of them is isNeutral() ⇒ isNeutral()

Truth table:

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

Parameters

\Drupal\Core\Access\AccessResultInterface $other: The other access result to AND this one with.

Return value

static

File

core/lib/Drupal/Core/Access/AccessResultInterface.php, line 96

Class

AccessResultInterface
Interface for access result value objects.

Namespace

Drupal\Core\Access

Code

public function andIf(AccessResultInterface $other);
doc_Drupal
2016-10-29 08:42:35
Comments
Leave a Comment

Please login to continue.