You are here

protected function ConfigInstaller::drupalInstallationAttempted in Drupal 8

Wrapper for drupal_installation_attempted().

Return value

bool TRUE if a Drupal installation is currently being attempted.

Deprecated

in drupal:8.8.0 and is removed from drupal:9.0.0. Use \Drupal\Core\Installer\InstallerKernel::installationAttempted() instead.

See also

https://www.drupal.org/node/3052704

\Drupal\Core\Installer\InstallerKernel::installationAttempted()

File

core/lib/Drupal/Core/Config/ConfigInstaller.php, line 741

Class

ConfigInstaller

Namespace

Drupal\Core\Config

Code

protected function drupalInstallationAttempted() {
  @trigger_error(__METHOD__ . '() is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use \\Drupal\\Core\\Installer\\InstallerKernel::installationAttempted() instead. See https://www.drupal.org/node/3052704', E_USER_DEPRECATED);
  return InstallerKernel::installationAttempted();
}