function _update_manager_access
Same name in other branches
- 9 core/modules/update/update.module \_update_manager_access()
- 10 core/modules/update/update.module \_update_manager_access()
- 11.x core/modules/update/update.module \_update_manager_access()
Resolves if the current user can access updater menu items.
It both enforces the 'administer software updates' permission and the global kill switch for the authorize.php script.
Return value
TRUE if the current user can access the updater menu items; FALSE otherwise.
3 calls to _update_manager_access()
- update_help in core/
modules/ update/ update.module - Implements hook_help().
- update_mail in core/
modules/ update/ update.module - Implements hook_mail().
- _update_requirement_check in core/
modules/ update/ update.install - Fills in the requirements array.
File
-
core/
modules/ update/ update.module, line 230
Code
function _update_manager_access() {
return Settings::get('allow_authorize_operations', TRUE) && \Drupal::currentUser()->hasPermission('administer software updates');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.