drupal_installation_attempted

7 bootstrap.inc drupal_installation_attempted()
8 bootstrap.inc drupal_installation_attempted()

Returns TRUE if a Drupal installation is currently being attempted.

6 calls to drupal_installation_attempted()

File

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

Code

function drupal_installation_attempted() {
  return defined('MAINTENANCE_MODE') && MAINTENANCE_MODE == 'install';
}
Login or register to post comments