StorableConfigBase::$originalData

The data of the configuration object. Type: array File core/lib/Drupal/Core/Config/StorableConfigBase.php, line 58 Class StorableConfigBase Provides a base class for configuration objects with storage support. Namespace Drupal\Core\Config Code protected $originalData = array();

YamlDiscovery::findFiles

protected YamlDiscovery::findFiles() Returns an array of file paths, keyed by provider. Return value array File core/lib/Drupal/Component/Discovery/YamlDiscovery.php, line 88 Class YamlDiscovery Provides discovery for YAML files within a given set of directories. Namespace Drupal\Component\Discovery Code protected function findFiles() { $files = array(); foreach ($this->directories as $provider => $directory) { $file = $directory . '/' . $provider . '.' . $this->name

MenuTreeStorage::doBuildTreeData

protected MenuTreeStorage::doBuildTreeData(array $links, array $parents = array(), $depth = 1) Prepares the data for calling $this->treeDataRecursive(). File core/lib/Drupal/Core/Menu/MenuTreeStorage.php, line 1083 Class MenuTreeStorage Provides a menu tree storage using the database. Namespace Drupal\Core\Menu Code protected function doBuildTreeData(array $links, array $parents = array(), $depth = 1) { // Reverse the array so we can use the more efficient array_pop() function.

SqlContentEntityStorage::onEntityTypeCreate

public SqlContentEntityStorage::onEntityTypeCreate(EntityTypeInterface $entity_type) Reacts to the creation of the entity type. Parameters \Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type being created. Overrides EntityTypeListenerInterface::onEntityTypeCreate File core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php, line 1368 Class SqlContentEntityStorage A content entity database storage implementation. Namespace Drupal\Core\Entity\Sql Code public functi

BlockRepository::$blockStorage

The block storage. Type: \Drupal\Core\Entity\EntityStorageInterface File core/modules/block/src/BlockRepository.php, line 20 Class BlockRepository Provides a repository for Block config entities. Namespace Drupal\block Code protected $blockStorage;

NegotiationConfigureForm::$blockStorage

The block storage. Type: \Drupal\Core\Entity\EntityStorageInterface|null File core/modules/language/src/Form/NegotiationConfigureForm.php, line 56 Class NegotiationConfigureForm Configure the selected language negotiation method for this site. Namespace Drupal\language\Form Code protected $blockStorage;

ConfigEntityStorage::importCreate

public ConfigEntityStorage::importCreate($name, Config $new_config, Config $old_config) Creates entities upon synchronizing configuration changes. Parameters string $name: The name of the configuration object. \Drupal\Core\Config\Config $new_config: A configuration object containing the new configuration data. \Drupal\Core\Config\Config $old_config: A configuration object containing the old configuration data. Overrides ImportableEntityStorageInterface::importCreate File core/lib/Drupal/Core/C

FileSystem::__construct

public FileSystem::__construct(StreamWrapperManagerInterface $stream_wrapper_manager, Settings $settings, LoggerInterface $logger) Constructs a new FileSystem. Parameters \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface $stream_wrapper_manager: The stream wrapper manager. \Drupal\Core\Site\Settings $settings: The site settings. \Psr\Log\LoggerInterface $logger: The file logger channel. File core/lib/Drupal/Core/File/FileSystem.php, line 55 Class FileSystem Provides helpers to oper

EntityViewModeInterface

Provides an interface defining an entity view mode entity type. Hierarchy interface \Drupal\Core\Entity\EntityInterface; interface \Drupal\Core\Config\Entity\ThirdPartySettingsInterfaceinterface \Drupal\Core\Config\Entity\ConfigEntityInterfaceinterface \Drupal\Core\Entity\EntityDisplayModeInterfaceinterface \Drupal\Core\Entity\EntityViewModeInterface File core/lib/Drupal/Core/Entity/EntityViewModeInterface.php, line 8 Namespace Drupal\Core\Entity Members Name Modifiers Type D

UpdateRegistry::__construct

public UpdateRegistry::__construct($root, $site_path, array $enabled_modules, KeyValueStoreInterface $key_value, $include_tests = NULL) Constructs a new UpdateRegistry. Parameters string $root: The app root. string $site_path: The site path. string[] $enabled_modules: A list of enabled modules. \Drupal\Core\KeyValueStore\KeyValueStoreInterface $key_value: The key value store. bool|null $include_tests: (optional) A flag whether to include tests in the scanning of modules. File core/lib/Drupal/C