public AlreadyInstalledException::__construct(TranslationInterface $string_translation)
Constructs a new "already installed" exception.
Parameters
\Drupal\Core\StringTranslation\TranslationInterface $string_translation: The string translation manager.
Overrides InstallerException::__construct
File
- core/lib/Drupal/Core/Installer/Exception/AlreadyInstalledException.php, line 18
Class
- AlreadyInstalledException
- Exception thrown if Drupal is installed already.
Namespace
Drupal\Core\Installer\Exception
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | public function __construct(TranslationInterface $string_translation ) { $this ->stringTranslation = $string_translation ; $title = $this ->t( 'Drupal already installed' ); $message = $this ->t('<ul> <li>To start over, you must empty your existing database and copy <em> default .settings.php</em> over <em>settings.php</em>.</li> <li>To upgrade an existing installation, proceed to the <a href= ":update-url" >update script</a>.</li> <li>View your <a href= ":base-url" >existing site</a>.</li> </ul>', array ( ':base-url' => $GLOBALS [ 'base_url' ], ':update-url' => $GLOBALS [ 'base_path' ] . 'update.php' , )); parent::__construct( $message , $title ); } |
Please login to continue.