Mercurial > hg > cmmr2012-drupal-site
view core/modules/system/src/Access/DbUpdateAccessCheck.php @ 5:12f9dff5fda9 tip
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:34:47 +0100 |
parents | c75dbcec494b |
children |
line wrap: on
line source
<?php namespace Drupal\system\Access; use Drupal\Core\Routing\Access\AccessInterface; use Drupal\Core\Access\AccessResult; use Drupal\Core\Session\AccountInterface; use Drupal\Core\Site\Settings; /** * Access check for database update routes. */ class DbUpdateAccessCheck implements AccessInterface { /** * Checks access for update routes. * * @param \Drupal\Core\Session\AccountInterface $account * The currently logged in account. * * @return string * A \Drupal\Core\Access\AccessInterface constant value. */ public function access(AccountInterface $account) { // Allow the global variable in settings.php to override the access check. if (Settings::get('update_free_access')) { return AccessResult::allowed()->setCacheMaxAge(0); } if ($account->hasPermission('administer software updates')) { return AccessResult::allowed()->cachePerPermissions(); } else { return AccessResult::forbidden()->cachePerPermissions(); } } }