
| Current Path : /var/www/html/ift/web/core/lib/Drupal/Core/Installer/Exception/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/ift/web/core/lib/Drupal/Core/Installer/Exception/InstallProfileMismatchException.php |
<?php
namespace Drupal\Core\Installer\Exception;
use Drupal\Core\StringTranslation\TranslationInterface;
@trigger_error(__NAMESPACE__ . '/InstallProfileMismatchException is deprecated in Drupal 8.6.0 and will be removed before Drupal 9. See https://www.drupal.org/node/2538996', E_USER_DEPRECATED);
/**
* Exception thrown if settings.php cannot be written and the chosen profile does not match.
*/
class InstallProfileMismatchException extends InstallerException {
/**
* Constructs a new InstallProfileMismatchException exception.
*
* @param string $selected_profile
* The profile selected by _install_select_profile().
* @param string $settings_profile
* The profile in settings.php.
* @param string $settings_file
* The path to settings.php.
* @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
* The string translation manager.
*
* @deprecated in drupal:8.3.0 and is removed from drupal:9.0.0. The
* install profile is written to core.extension.
*
* @see _install_select_profile()
* @see install_write_profile
*/
public function __construct($selected_profile, $settings_profile, $settings_file, TranslationInterface $string_translation) {
$this->stringTranslation = $string_translation;
$title = $this->t('Install profile mismatch');
$message = $this->t(
'The selected profile %profile does not match the install_profile setting, which is %settings_profile. Cannot write updated setting to %settings_file.',
[
'%profile' => $selected_profile,
'%settings_profile' => $settings_profile,
'%settings_file' => $settings_file,
]
);
parent::__construct($message, $title);
}
}