TypedConfigManager::$schemaStorage

A storage instance for reading configuration schema data. Type: \Drupal\Core\Config\StorageInterface File core/lib/Drupal/Core/Config/TypedConfigManager.php, line 29 Class TypedConfigManager Manages config schema type plugins. Namespace Drupal\Core\Config Code protected $schemaStorage;

TypedConfigManager::clearCachedDefinitions

public TypedConfigManager::clearCachedDefinitions() Clears static and persistent plugin definition caches. Don't resort to calling \Drupal::cache()->delete() and friends to make Drupal detect new or updated plugin definitions. Always use this method on the appropriate plugin type's plugin manager! Overrides TypedDataManager::clearCachedDefinitions File core/lib/Drupal/Core/Config/TypedConfigManager.php, line 196 Class TypedConfigManager Manages config schema type plugins. Namespace D

TypedConfigManager::$configStorage

A storage instance for reading configuration data. Type: \Drupal\Core\Config\StorageInterface File core/lib/Drupal/Core/Config/TypedConfigManager.php, line 22 Class TypedConfigManager Manages config schema type plugins. Namespace Drupal\Core\Config Code protected $configStorage;

TypedConfigManager::$definitions

The array of plugin definitions, keyed by plugin id. Type: array Overrides DiscoveryCachedTrait::$definitions File core/lib/Drupal/Core/Config/TypedConfigManager.php, line 36 Class TypedConfigManager Manages config schema type plugins. Namespace Drupal\Core\Config Code protected $definitions;

TypedConfigManager

Manages config schema type plugins. Hierarchy class \Drupal\Component\Plugin\PluginManagerBase implements PluginManagerInterface uses DiscoveryTraitclass \Drupal\Core\Plugin\DefaultPluginManager implements CachedDiscoveryInterface, PluginManagerInterface, CacheableDependencyInterface uses DiscoveryCachedTrait, UseCacheBackendTraitclass \Drupal\Core\TypedData\TypedDataManager implements TypedDataManagerInterface uses DependencySerializationTraitclass \Drupal\Core\Config\TypedConfigManager implem

TypedConfigInterface::isEmpty

public TypedConfigInterface::isEmpty() Determines whether the data structure is empty. Return value bool TRUE if the data structure is empty, FALSE otherwise. File core/lib/Drupal/Core/Config/Schema/TypedConfigInterface.php, line 25 Class TypedConfigInterface Interface for a typed configuration object that contains multiple elements. Namespace Drupal\Core\Config\Schema Code public function isEmpty();

TypedConfigInterface::getElements

public TypedConfigInterface::getElements() Gets an array of contained elements. Return value array Array of \Drupal\Core\TypedData\TypedDataInterface objects. File core/lib/Drupal/Core/Config/Schema/TypedConfigInterface.php, line 33 Class TypedConfigInterface Interface for a typed configuration object that contains multiple elements. Namespace Drupal\Core\Config\Schema Code public function getElements();

TypedConfigInterface::toArray

public TypedConfigInterface::toArray() Returns an array of all property values. Return value array An array of property values, keyed by property name. File core/lib/Drupal/Core/Config/Schema/TypedConfigInterface.php, line 57 Class TypedConfigInterface Interface for a typed configuration object that contains multiple elements. Namespace Drupal\Core\Config\Schema Code public function toArray();

TypedConfigInterface

Interface for a typed configuration object that contains multiple elements. A list of typed configuration contains any number of items whose type will depend on the configuration schema but also on the configuration data being parsed. When implementing this interface which extends Traversable, make sure to list IteratorAggregate or Iterator before this interface in the implements clause. Hierarchy interface \Drupal\Core\TypedData\TypedDataInterfaceinterface \Drupal\Core\TypedData\TraversableTyp

TypedConfigInterface::get

public TypedConfigInterface::get($name) Gets a contained typed configuration element. Parameters $name: The name of the property to get; e.g., 'title' or 'name'. Nested elements can be get using multiple dot delimited names, for example, 'page.front'. Return value \Drupal\Core\TypedData\TypedDataInterface The property object. Throws \InvalidArgumentException If an invalid property name is given. File core/lib/Drupal/Core/Config/Schema/TypedConfigInterface.php, line 49 Class TypedConfigIn