function UpdateManagerAccessCheck::access
Checks access.
Return value
\Drupal\Core\Access\AccessResultInterface The access result.
File
- 
              core/
modules/ update/ src/ Access/ UpdateManagerAccessCheck.php, line 37  
Class
- UpdateManagerAccessCheck
 - Determines whether allow authorized operations is set.
 
Namespace
Drupal\update\AccessCode
public function access() {
  // 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.