drupal_installation_attempted

drupal_installation_attempted()

Returns TRUE if a Drupal installation is currently being attempted.

File

core/includes/bootstrap.inc, line 712
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']);
}
doc_Drupal
2016-10-29 09:03:15
Comments
Leave a Comment

Please login to continue.