ConfigDependencies::$formatProviders

The serialization format providers, keyed by format. Type: string[] File core/modules/rest/src/Entity/ConfigDependencies.php, line 21 Class ConfigDependencies Calculates rest resource config dependencies. Namespace Drupal\rest\Entity Code protected $formatProviders;

ConfigDependencies::$authProviders

The authentication providers, keyed by ID. Type: string[] File core/modules/rest/src/Entity/ConfigDependencies.php, line 28 Class ConfigDependencies Calculates rest resource config dependencies. Namespace Drupal\rest\Entity Code protected $authProviders;

ConfigDependencies

Calculates rest resource config dependencies. @internal Hierarchy class \Drupal\rest\Entity\ConfigDependencies implements ContainerInjectionInterface File core/modules/rest/src/Entity/ConfigDependencies.php, line 14 Namespace Drupal\rest\Entity Members Name Modifiers Type Description ConfigDependencies::$authProviders protected property The authentication providers, keyed by ID. ConfigDependencies::$formatProviders protected property The serialization format prov

ConfigCrudEvent::__construct

public ConfigCrudEvent::__construct(Config $config) Constructs a configuration event object. Parameters \Drupal\Core\Config\Config $config: Configuration object. File core/lib/Drupal/Core/Config/ConfigCrudEvent.php, line 25 Class ConfigCrudEvent Wraps a configuration event for event listeners. Namespace Drupal\Core\Config Code public function __construct(Config $config) { $this->config = $config; }

ConfigCrudEvent::isChanged

public ConfigCrudEvent::isChanged($key) Checks to see if the provided configuration key's value has changed. Parameters string $key: The configuration key to check if it has changed. Return value bool File core/lib/Drupal/Core/Config/ConfigCrudEvent.php, line 47 Class ConfigCrudEvent Wraps a configuration event for event listeners. Namespace Drupal\Core\Config Code public function isChanged($key) { return $this->config->get($key) !== $this->config->getOriginal($key); }

ConfigCrudEvent::getConfig

public ConfigCrudEvent::getConfig() Gets configuration object. Return value \Drupal\Core\Config\Config The configuration object that caused the event to fire. File core/lib/Drupal/Core/Config/ConfigCrudEvent.php, line 35 Class ConfigCrudEvent Wraps a configuration event for event listeners. Namespace Drupal\Core\Config Code public function getConfig() { return $this->config; }

ConfigCrudEvent::$config

Configuration object. Type: \Drupal\Core\Config\Config File core/lib/Drupal/Core/Config/ConfigCrudEvent.php, line 17 Class ConfigCrudEvent Wraps a configuration event for event listeners. Namespace Drupal\Core\Config Code protected $config;

ConfigCrudEvent

Wraps a configuration event for event listeners. Hierarchy class \Symfony\Component\EventDispatcher\Eventclass \Drupal\Core\Config\ConfigCrudEvent File core/lib/Drupal/Core/Config/ConfigCrudEvent.php, line 10 Namespace Drupal\Core\Config Members Name Modifiers Type Description ConfigCrudEvent::$config protected property Configuration object. ConfigCrudEvent::getConfig public function Gets configuration object. ConfigCrudEvent::isChanged public function C

ConfigController::__construct

public ConfigController::__construct(StorageInterface $target_storage, StorageInterface $source_storage, ConfigManagerInterface $config_manager, FileDownloadController $file_download_controller, DiffFormatter $diff_formatter) Constructs a ConfigController object. Parameters \Drupal\Core\Config\StorageInterface $target_storage: The target storage. \Drupal\Core\Config\StorageInterface $source_storage: The source storage \Drupal\system\FileDownloadController $file_download_controller: The file do

ConfigController::downloadExport

public ConfigController::downloadExport() Downloads a tarball of the site configuration. File core/modules/config/src/Controller/ConfigController.php, line 90 Class ConfigController Returns responses for config module routes. Namespace Drupal\config\Controller Code public function downloadExport() { file_unmanaged_delete(file_directory_temp() . '/config.tar.gz'); $archiver = new ArchiveTar(file_directory_temp() . '/config.tar.gz', 'gz'); // Get raw configuration data without ove