1 installer.module installer_install_access()

Access callback: Resolves if the current user can install via the installer.

It both enforces the 'use installer browser' permission and the global kill switch for the authorize.php script.

Return value

bool: TRUE if the current user can access the installer menu items; FALSE otherwise.

See also

installer_menu()

File

core/modules/installer/installer.module, line 156
Handles installation and updates of contributed projects.

Code

function installer_install_access() {
  return settings_get('allow_authorize_operations', TRUE) && user_access('use installer browser');
}