| 7 bootstrap.inc | drupal_installation_attempted() |
| 8 bootstrap.inc | drupal_installation_attempted() |
Returns TRUE if a Drupal installation is currently being attempted.
File
- includes/
bootstrap.inc, line 2497 - Functions that need to be loaded on every Drupal request.
Code
<?php
function drupal_installation_attempted() {
return defined('MAINTENANCE_MODE') && MAINTENANCE_MODE == 'install';
}
?>Login or register to post comments