Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. FileLoader.php

function FileLoader::loadExtensionConfigs

5 calls to FileLoader::loadExtensionConfigs()
FileLoader::import in vendor/symfony/dependency-injection/Loader/FileLoader.php
PhpFileLoader::executeCallback in vendor/symfony/dependency-injection/Loader/PhpFileLoader.php
Resolve the parameters to the $callback and execute it.
XmlFileLoader::loadFromExtensions in vendor/symfony/dependency-injection/Loader/XmlFileLoader.php
Loads from an extension.
YamlFileLoader::load in vendor/symfony/dependency-injection/Loader/YamlFileLoader.php
YamlFileLoader::loadFromExtensions in vendor/symfony/dependency-injection/Loader/YamlFileLoader.php

File

vendor/symfony/dependency-injection/Loader/FileLoader.php, line 269

Class

FileLoader
FileLoader is the abstract class used by all built-in loaders that are file based.

Namespace

Symfony\Component\DependencyInjection\Loader

Code

protected final function loadExtensionConfigs() : void {
    if ($this->importing || !$this->extensionConfigs) {
        return;
    }
    foreach ($this->extensionConfigs as $namespace => $configs) {
        foreach ($configs as $config) {
            $this->container
                ->prependExtensionConfig($namespace, $config);
        }
    }
    $this->extensionConfigs = [];
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal