You are here

protected function ConfigInstaller::drupalInstallationAttempted in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Config/ConfigInstaller.php \Drupal\Core\Config\ConfigInstaller::drupalInstallationAttempted()

Wrapper for drupal_installation_attempted().

Return value

bool TRUE if a Drupal installation is currently being attempted.

2 calls to ConfigInstaller::drupalInstallationAttempted()
ConfigInstaller::installCollectionDefaultConfig in core/lib/Drupal/Core/Config/ConfigInstaller.php
Installs all default configuration in the specified collection.
ConfigInstaller::installDefaultConfig in core/lib/Drupal/Core/Config/ConfigInstaller.php
Installs the default configuration of a given extension.

File

core/lib/Drupal/Core/Config/ConfigInstaller.php, line 641
Contains \Drupal\Core\Config\ConfigInstaller.

Class

ConfigInstaller

Namespace

Drupal\Core\Config

Code

protected function drupalInstallationAttempted() {
  return drupal_installation_attempted();
}