You are here

public static function Drupal::configFactory in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal.php \Drupal::configFactory()

Retrieves the configuration factory.

This is mostly used to change the override settings on the configuration factory. For example, changing the language, or turning all overrides on or off.

Return value

\Drupal\Core\Config\ConfigFactoryInterface The configuration factory service.

44 calls to Drupal::configFactory()
BlockCreationTrait::placeBlock in core/modules/block/tests/src/Traits/BlockCreationTrait.php
Creates a block instance based on default settings.
block_update_8001 in core/modules/block/block.install
Update block visibility context mapping.
block_update_8003 in core/modules/block/block.install
Remove 'cache' setting.
comment_post_update_add_ip_address_setting in core/modules/comment/comment.post_update.php
Add comment settings.
comment_update_8200 in core/modules/comment/comment.install
Add the 'view_mode' setting to displays having 'comment_default' formatter.

... See full list

File

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

Class

Drupal
Static Service Container wrapper.

Code

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