ConfigEntityBase::invalidateTagsOnDelete

protected static ConfigEntityBase::invalidateTagsOnDelete(EntityTypeInterface $entity_type, array $entities) Override to never invalidate the individual entities' cache tags; the config system already invalidates them. Overrides Entity::invalidateTagsOnDelete File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 526 Class ConfigEntityBase Defines a base configuration entity class. Namespace Drupal\Core\Config\Entity Code protected static function invalidateTagsOnDelete(En

ConfigEntityBase::hasTrustedData

public ConfigEntityBase::hasTrustedData() Gets whether on not the data is trusted. Return value bool TRUE if the configuration data is trusted, FALSE if not. Overrides ConfigEntityInterface::hasTrustedData File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 629 Class ConfigEntityBase Defines a base configuration entity class. Namespace Drupal\Core\Config\Entity Code public function hasTrustedData() { return $this->trustedData; }

ConfigEntityBase::getTypedConfig

protected ConfigEntityBase::getTypedConfig() Gets the typed config manager. Return value \Drupal\Core\Config\TypedConfigManagerInterface File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 306 Class ConfigEntityBase Defines a base configuration entity class. Namespace Drupal\Core\Config\Entity Code protected function getTypedConfig() { return \Drupal::service('config.typed'); }

ConfigEntityBase::getThirdPartySettings

public ConfigEntityBase::getThirdPartySettings($module) Gets all third-party settings of a given module. Parameters string $module: The module providing the third-party settings. Return value array An array of key-value pairs. Overrides ThirdPartySettingsInterface::getThirdPartySettings File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 553 Class ConfigEntityBase Defines a base configuration entity class. Namespace Drupal\Core\Config\Entity Code public function getThi

ConfigEntityBase::getThirdPartySetting

public ConfigEntityBase::getThirdPartySetting($module, $key, $default = NULL) Gets the value of a third-party setting. Parameters string $module: The module providing the third-party setting. string $key: The setting name. mixed $default: The default value Return value mixed The value. Overrides ThirdPartySettingsInterface::getThirdPartySetting File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 541 Class ConfigEntityBase Defines a base configuration entity class. Namesp

ConfigEntityBase::getThirdPartyProviders

public ConfigEntityBase::getThirdPartyProviders() Gets the list of third parties that store information. Return value array The list of third parties. Overrides ThirdPartySettingsInterface::getThirdPartyProviders File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 573 Class ConfigEntityBase Defines a base configuration entity class. Namespace Drupal\Core\Config\Entity Code public function getThirdPartyProviders() { return array_keys($this->third_party_settings); }

ConfigEntityBase::getOriginalId

public ConfigEntityBase::getOriginalId() Gets the original ID. Return value int|string|null The original ID, or NULL if no ID was set or for entity types that do not support renames. Overrides Entity::getOriginalId File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 126 Class ConfigEntityBase Defines a base configuration entity class. Namespace Drupal\Core\Config\Entity Code public function getOriginalId() { return $this->originalId; }

ConfigEntityBase::getDependencies

public ConfigEntityBase::getDependencies() Gets the configuration dependencies. Return value array An array of dependencies, keyed by $type. Overrides ConfigEntityInterface::getDependencies See also \Drupal\Core\Config\Entity\ConfigDependencyManager File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 468 Class ConfigEntityBase Defines a base configuration entity class. Namespace Drupal\Core\Config\Entity Code public function getDependencies() { $dependencies = $this-

ConfigEntityBase::getConfigTarget

public ConfigEntityBase::getConfigTarget() Gets the configuration target identifier for the entity. Used to supply the correct format for storing a reference targeting this entity in configuration. Return value string The configuration target identifier. Overrides Entity::getConfigTarget File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 489 Class ConfigEntityBase Defines a base configuration entity class. Namespace Drupal\Core\Config\Entity Code public function getCon

ConfigEntityBase::getConfigManager

protected static ConfigEntityBase::getConfigManager() Gets the configuration manager. Return value \Drupal\Core\Config\ConfigManager The configuration manager. File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 607 Class ConfigEntityBase Defines a base configuration entity class. Namespace Drupal\Core\Config\Entity Code protected static function getConfigManager() { return \Drupal::service('config.manager'); }