function Drupal::config
Retrieves a configuration object.
This is the main entry point to the configuration API. Calling \Drupal::config('my_module.admin') will return a configuration object the my_module module can use to read its administrative settings.
Parameters
string $name: The name of the configuration object to retrieve, which typically corresponds to a configuration file. For \Drupal::config('my_module.admin'), the configuration object returned will contain the content of the my_module.admin configuration file.
Return value
\Drupal\Core\Config\ImmutableConfig An immutable configuration object.
38 calls to Drupal::config()
- AccountForm::form in core/
modules/ user/ src/ AccountForm.php - Gets the actual form array to be built.
- AnnouncementsFeedHooks::cron in core/
modules/ announcements_feed/ src/ Hook/ AnnouncementsFeedHooks.php - Implements hook_cron().
- AutomatedCronHooks::formSystemCronSettingsAlter in core/
modules/ automated_cron/ src/ Hook/ AutomatedCronHooks.php - Implements hook_form_FORM_ID_alter() for the system_cron_settings() form.
- ConfigInstallWebTest::testIntegrationModuleReinstallation in core/
modules/ config/ tests/ src/ Functional/ ConfigInstallWebTest.php - Tests module re-installation.
- ConfigLanguageOverrideTest::testConfigLanguageOverride in core/
tests/ Drupal/ KernelTests/ Core/ Config/ ConfigLanguageOverrideTest.php - Tests locale override based on language.
File
-
core/
lib/ Drupal.php, line 424
Class
- Drupal
- Static Service Container wrapper.
Code
public static function config($name) {
return static::getContainer()->get('config.factory')
->get($name);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.