ConfigEntityInterface::isUninstalling

public ConfigEntityInterface::isUninstalling() Returns whether this entity is being changed during the uninstall process. If you are writing code that responds to a change in this entity (insert, update, delete, presave, etc.), and your code would result in a configuration change (whether related to this configuration entity, another configuration entity, or non-entity configuration) or your code would result in a change to this entity itself, you need to check and see if this entity change is

ConfigEntityInterface::isSyncing

public ConfigEntityInterface::isSyncing() Returns whether this entity is being changed as part of an import process. If you are writing code that responds to a change in this entity (insert, update, delete, presave, etc.), and your code would result in a configuration change (whether related to this configuration entity, another configuration entity, or non-entity configuration) or your code would result in a change to this entity itself, you need to check and see if this entity change is part

ConfigEntityInterface::isInstallable

public ConfigEntityInterface::isInstallable() Checks whether this entity is installable. For example, a default view might not be installable if the base table doesn't exist. @retun bool TRUE if the entity is installable, FALSE otherwise. File core/lib/Drupal/Core/Config/Entity/ConfigEntityInterface.php, line 195 Class ConfigEntityInterface Defines a common interface for configuration entities. Namespace Drupal\Core\Config\Entity Code public function isInstallable();

ConfigEntityInterface::hasTrustedData

public ConfigEntityInterface::hasTrustedData() Gets whether on not the data is trusted. Return value bool TRUE if the configuration data is trusted, FALSE if not. File core/lib/Drupal/Core/Config/Entity/ConfigEntityInterface.php, line 218 Class ConfigEntityInterface Defines a common interface for configuration entities. Namespace Drupal\Core\Config\Entity Code public function hasTrustedData();

ConfigEntityInterface::getDependencies

public ConfigEntityInterface::getDependencies() Gets the configuration dependencies. Return value array An array of dependencies, keyed by $type. See also \Drupal\Core\Config\Entity\ConfigDependencyManager File core/lib/Drupal/Core/Config/Entity/ConfigEntityInterface.php, line 184 Class ConfigEntityInterface Defines a common interface for configuration entities. Namespace Drupal\Core\Config\Entity Code public function getDependencies();

ConfigEntityInterface::get

public ConfigEntityInterface::get($property_name) Returns the value of a property. Parameters string $property_name: The name of the property that should be returned. Return value mixed The property if it exists, or NULL otherwise. File core/lib/Drupal/Core/Config/Entity/ConfigEntityInterface.php, line 125 Class ConfigEntityInterface Defines a common interface for configuration entities. Namespace Drupal\Core\Config\Entity Code public function get($property_name);

ConfigEntityInterface::enable

public ConfigEntityInterface::enable() Enables the configuration entity. Return value $this File core/lib/Drupal/Core/Config/Entity/ConfigEntityInterface.php, line 20 Class ConfigEntityInterface Defines a common interface for configuration entities. Namespace Drupal\Core\Config\Entity Code public function enable();

ConfigEntityInterface::disable

public ConfigEntityInterface::disable() Disables the configuration entity. Return value $this File core/lib/Drupal/Core/Config/Entity/ConfigEntityInterface.php, line 27 Class ConfigEntityInterface Defines a common interface for configuration entities. Namespace Drupal\Core\Config\Entity Code public function disable();

ConfigEntityInterface::calculateDependencies

public ConfigEntityInterface::calculateDependencies() Calculates dependencies and stores them in the dependency property. Return value $this See also \Drupal\Core\Config\Entity\ConfigDependencyManager File core/lib/Drupal/Core/Config/Entity/ConfigEntityInterface.php, line 146 Class ConfigEntityInterface Defines a common interface for configuration entities. Namespace Drupal\Core\Config\Entity Code public function calculateDependencies();

ConfigEntityInterface

Defines a common interface for configuration entities. Hierarchy interface \Drupal\Core\Entity\EntityInterface; interface \Drupal\Core\Config\Entity\ThirdPartySettingsInterfaceinterface \Drupal\Core\Config\Entity\ConfigEntityInterface Related topics Configuration API Information about the Configuration API. Entity API Describes how to define and manipulate content and configuration entities. File core/lib/Drupal/Core/Config/Entity/ConfigEntityInterface.php, line 13 Namespace Drupal\Co