| 1 bootstrap.inc | backdrop_installation_attempted() | 
        
Returns TRUE if a Backdrop installation is currently being attempted.
File
- core/
includes/ bootstrap.inc, line 3552  - Functions that need to be loaded on every Backdrop request.
 
Code
function backdrop_installation_attempted() {
  return defined('MAINTENANCE_MODE') && MAINTENANCE_MODE == 'install';
}