Same name and namespace in other branches
  1. 8.9.x core/includes/bootstrap.inc \drupal_installation_attempted()

Returns TRUE if a Drupal installation is currently being attempted.

5 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.
_drupal_bootstrap_database in includes/bootstrap.inc
Initializes the database system and registers autoload functions.

File

includes/bootstrap.inc, line 2999
Functions that need to be loaded on every Drupal request.

Code

function drupal_installation_attempted() {
  return defined('MAINTENANCE_MODE') && MAINTENANCE_MODE == 'install';
}