function UpdateManagerAccessCheck::access

Same name in other branches
  1. 9 core/modules/update/src/Access/UpdateManagerAccessCheck.php \Drupal\update\Access\UpdateManagerAccessCheck::access()
  2. 8.9.x core/modules/update/src/Access/UpdateManagerAccessCheck.php \Drupal\update\Access\UpdateManagerAccessCheck::access()
  3. 10 core/modules/update/src/Access/UpdateManagerAccessCheck.php \Drupal\update\Access\UpdateManagerAccessCheck::access()

Checks access.

Return value

\Drupal\Core\Access\AccessResultInterface The access result.

File

core/modules/update/src/Access/UpdateManagerAccessCheck.php, line 42

Class

UpdateManagerAccessCheck
Determines whether allow authorized operations is set.

Namespace

Drupal\update\Access

Code

public function access() {
    @trigger_error('The ' . __METHOD__ . ' method is deprecated in drupal:11.1.0 and is removed from drupal:12.0.0. There is no replacement. See https://www.drupal.org/node/3458658', E_USER_DEPRECATED);
    // Uncacheable because the access result depends on a Settings key-value
    // pair, and can therefore change at any time.
    return AccessResult::allowedIf($this->settings
        ->get('allow_authorize_operations', TRUE))
        ->setCacheMaxAge(0);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.