function Drupal::config
Same name in other branches
- 8.9.x core/lib/Drupal.php \Drupal::config()
- 10 core/lib/Drupal.php \Drupal::config()
- 11.x core/lib/Drupal.php \Drupal::config()
Retrieves a configuration object.
This is the main entry point to the configuration API. Calling
\Drupal::config('book.admin');
will return a configuration object the Book 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('book.admin');
, the configuration object returned will contain the content of the book.admin configuration file.
Return value
\Drupal\Core\Config\ImmutableConfig An immutable configuration object.
41 calls to Drupal::config()
- AccountForm::form in core/
modules/ user/ src/ AccountForm.php - Gets the actual form array to be built.
- automated_cron_form_system_cron_settings_alter in core/
modules/ automated_cron/ automated_cron.module - Implements hook_form_FORM_ID_alter() for the system_cron_settings() form.
- BlockNodeTypeVisibilityUpdateTest::testBlock in core/
modules/ block/ tests/ src/ Functional/ Update/ BlockNodeTypeVisibilityUpdateTest.php - Tests that block context mapping is updated properly.
- book_breadcrumb_test_node_access in core/
modules/ book/ tests/ modules/ book_breadcrumb_test/ book_breadcrumb_test.module - Implements hook_node_access().
- ColorSystemBrandingBlockAlter::preRender in core/
modules/ color/ src/ ColorSystemBrandingBlockAlter.php - #pre_render callback: Sets color preset logo.
File
-
core/
lib/ Drupal.php, line 420
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.