ConfigController::diff

public ConfigController::diff($source_name, $target_name = NULL, $collection = NULL) Shows diff of specified configuration file. Parameters string $source_name: The name of the configuration file. string $target_name: (optional) The name of the target configuration file if different from the $source_name. string $collection: (optional) The configuration collection name. Defaults to the default collection. Return value string Table showing a two-way diff between the active and staged configura

ConfigController::create

public static ConfigController::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container: The service

ConfigController::$targetStorage

The target storage. Type: \Drupal\Core\Config\StorageInterface File core/modules/config/src/Controller/ConfigController.php, line 26 Class ConfigController Returns responses for config module routes. Namespace Drupal\config\Controller Code protected $targetStorage;

ConfigController::$sourceStorage

The source storage. Type: \Drupal\Core\Config\StorageInterface File core/modules/config/src/Controller/ConfigController.php, line 33 Class ConfigController Returns responses for config module routes. Namespace Drupal\config\Controller Code protected $sourceStorage;

ConfigController::$fileDownloadController

The file download controller. Type: \Drupal\system\FileDownloadController File core/modules/config/src/Controller/ConfigController.php, line 47 Class ConfigController Returns responses for config module routes. Namespace Drupal\config\Controller Code protected $fileDownloadController;

ConfigController::$diffFormatter

The diff formatter. Type: \Drupal\Core\Diff\DiffFormatter File core/modules/config/src/Controller/ConfigController.php, line 54 Class ConfigController Returns responses for config module routes. Namespace Drupal\config\Controller Code protected $diffFormatter;

ConfigController::$configManager

The configuration manager. Type: \Drupal\Core\Config\ConfigManagerInterface File core/modules/config/src/Controller/ConfigController.php, line 40 Class ConfigController Returns responses for config module routes. Namespace Drupal\config\Controller Code protected $configManager;

ConfigController

Returns responses for config module routes. Hierarchy class \Drupal\config\Controller\ConfigController implements ContainerInjectionInterface File core/modules/config/src/Controller/ConfigController.php, line 19 Namespace Drupal\config\Controller Members Name Modifiers Type Description ConfigController::$configManager protected property The configuration manager. ConfigController::$diffFormatter protected property The diff formatter. ConfigController::$fileDown

ConfigCollectionInfo::getOverrideService

public ConfigCollectionInfo::getOverrideService($collection) Gets the config factory override service responsible for the collection. Parameters string $collection: The configuration collection. Return value \Drupal\Core\Config\ConfigFactoryOverrideInterface|null The override service responsible for the collection if one exists. NULL if not. File core/lib/Drupal/Core/Config/ConfigCollectionInfo.php, line 70 Class ConfigCollectionInfo Gets information on all the possible configuration col

ConfigCollectionInfo::getCollectionNames

public ConfigCollectionInfo::getCollectionNames($include_default = TRUE) Gets the list of possible collection names. Parameters bool $include_default: (Optional) Include the default collection. Defaults to TRUE. Return value array The list of possible collection names. File core/lib/Drupal/Core/Config/ConfigCollectionInfo.php, line 51 Class ConfigCollectionInfo Gets information on all the possible configuration collections. Namespace Drupal\Core\Config Code public function getCollect