1.20.x bootstrap.inc backdrop_installation_attempted()

Returns TRUE if a Backdrop installation is currently being attempted.

File

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

Code

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