W3cubDocs

/Drupal 8

function drupal_installation_attempted

drupal_installation_attempted()

Returns TRUE if a Drupal installation is currently being attempted.

File

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

Code

function drupal_installation_attempted() {
  // This cannot rely on the MAINTENANCE_MODE constant, since that would prevent
  // tests from using the non-interactive installer, in which case Drupal
  // only happens to be installed within the same request, but subsequently
  // executed code does not involve the installer at all.
  // @see install_drupal()
  return isset($GLOBALS['install_state']) && empty($GLOBALS['install_state']['installation_finished']);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!includes!bootstrap.inc/function/drupal_installation_attempted/8.1.x