function drupal_installation_attempted

Returns TRUE if a Drupal installation is currently being attempted.

6 calls to drupal_installation_attempted()

File

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

Code

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