Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Access/AccessResult.php \Drupal\Core\Access\AccessResult::neutral()
  2. 9 core/lib/Drupal/Core/Access/AccessResult.php \Drupal\Core\Access\AccessResult::neutral()

Creates an AccessResultInterface object with isNeutral() === TRUE.

Parameters

string|null $reason: (optional) The reason why access is neutral. Intended for developers, hence not translatable.

Return value

\Drupal\Core\Access\AccessResultNeutral isNeutral() will be TRUE.

109 calls to AccessResult::neutral()
AccessGroupAnd::access in core/modules/block_content/src/Access/AccessGroupAnd.php
Checks data value access.
AccessGroupAndTest::testGroups in core/modules/block_content/tests/src/Unit/Access/AccessGroupAndTest.php
@covers \Drupal\block_content\Access\AccessGroupAnd
AccessManager::check in core/lib/Drupal/Core/Access/AccessManager.php
AccessManagerTest::providerTestCheckConjunctions in core/tests/Drupal/Tests/Core/Access/AccessManagerTest.php
Provides data for the conjunction test.
AccessManagerTest::testCheck in core/tests/Drupal/Tests/Core/Access/AccessManagerTest.php
Tests \Drupal\Core\Access\AccessManager::check().

... See full list

File

core/lib/Drupal/Core/Access/AccessResult.php, line 39

Class

AccessResult
Value object for passing an access result with cacheability metadata.

Namespace

Drupal\Core\Access

Code

public static function neutral($reason = NULL) {
  assert(is_string($reason) || is_null($reason));
  return new AccessResultNeutral($reason);
}