class NoProfilesException in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Installer/Exception/NoProfilesException.php \Drupal\Core\Installer\Exception\NoProfilesException
Exception thrown if no installation profiles are available.
Hierarchy
- class \Drupal\Core\Installer\Exception\InstallerException extends \Drupal\Core\Installer\Exception\RuntimeException uses StringTranslationTrait
- class \Drupal\Core\Installer\Exception\NoProfilesException
Expanded class hierarchy of NoProfilesException
1 file declares its use of NoProfilesException
- install.core.inc in core/
includes/ install.core.inc - API functions for installing Drupal.
File
- core/
lib/ Drupal/ Core/ Installer/ Exception/ NoProfilesException.php, line 15 - Contains \Drupal\Core\Installer\Exception\NoProfilesException.
Namespace
Drupal\Core\Installer\ExceptionView source
class NoProfilesException extends InstallerException {
/**
* Constructs a new "no profiles available" exception.
*
* @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
* The string translation manager.
*/
public function __construct(TranslationInterface $string_translation) {
$this->stringTranslation = $string_translation;
$title = $this
->t('No profiles available');
$message = $this
->t('We were unable to find any installation profiles. Installation profiles tell us what modules to enable and what schema to install in the database. A profile is necessary to continue with the installation process.');
parent::__construct($message, $title);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
InstallerException:: |
protected | property | The page title to output. | |
InstallerException:: |
public | function | Returns the exception page title. | |
NoProfilesException:: |
public | function |
Constructs a new "no profiles available" exception. Overrides InstallerException:: |
|
StringTranslationTrait:: |
protected | property | The string translation service. | |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |