function drupal_installation_attempted
Same name in other branches
- 8.9.x core/includes/bootstrap.inc \drupal_installation_attempted()
Returns TRUE if a Drupal installation is currently being attempted.
6 calls to drupal_installation_attempted()
- drupal_install_profile_distribution_name in includes/
install.inc - Loads the installation profile, extracting its defined distribution name.
- drupal_redirect_form in includes/
form.inc - Redirects the user to a URL after a form has been processed.
- get_t in includes/
bootstrap.inc - Returns the name of the proper localization function.
- registry_update in includes/
bootstrap.inc - Updates the registry based on the latest files listed in the database.
- shortcut_install in modules/
shortcut/ shortcut.install - Implements hook_install().
File
-
includes/
bootstrap.inc, line 3000
Code
function drupal_installation_attempted() {
return defined('MAINTENANCE_MODE') && MAINTENANCE_MODE == 'install';
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.