You are here

public static function Drupal::config in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal.php \Drupal::config()
  2. 10 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.

40 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.
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.
ConfigInstallWebTest::testIntegrationModuleReinstallation in core/modules/config/tests/src/Functional/ConfigInstallWebTest.php
Tests module re-installation.

... See full list

File

core/lib/Drupal.php, line 388
Contains \Drupal.

Class

Drupal
Static Service Container wrapper.

Code

public static function config($name) {
  return static::getContainer()
    ->get('config.factory')
    ->get($name);
}