ConfigEntityType::__construct

public ConfigEntityType::__construct($definition) Throws \Drupal\Core\Config\Entity\Exception\ConfigEntityStorageClassException Exception thrown when the provided class is not an instance of \Drupal\Core\Config\Entity\ConfigEntityStorage. Overrides EntityType::__construct File core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php, line 56 Class ConfigEntityType Provides an implementation of a configuration entity type and its metadata. Namespace Drupal\Core\Config\Entity Code public

ConfigEntityType::getRevisionTable

public ConfigEntityType::getRevisionTable() Gets the name of the entity's revision table. @todo Used by SqlContentEntityStorage only. Return value string|null The name of the entity type's revision table, or NULL if none exists. Overrides EntityType::getRevisionTable File core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php, line 109 Class ConfigEntityType Provides an implementation of a configuration entity type and its metadata. Namespace Drupal\Core\Config\Entity Code public fun

ConfigEntityType::getRevisionDataTable

public ConfigEntityType::getRevisionDataTable() Gets the name of the entity's revision data table. @todo Used by SqlContentEntityStorage only. Return value string|null The name of the entity type's revision data table, or NULL if none exists. Overrides EntityType::getRevisionDataTable File core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php, line 102 Class ConfigEntityType Provides an implementation of a configuration entity type and its metadata. Namespace Drupal\Core\Config\Entit

ConfigEntityType::getPropertiesToExport

public ConfigEntityType::getPropertiesToExport() Gets the config entity properties to export if declared on the annotation. Return value array|null The properties to export or NULL if they can not be determine from the config entity type annotation. Overrides ConfigEntityTypeInterface::getPropertiesToExport File core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php, line 145 Class ConfigEntityType Provides an implementation of a configuration entity type and its metadata. Namespace D

ConfigEntityType::getLookupKeys

public ConfigEntityType::getLookupKeys() Gets the keys that are available for fast lookup. Return value string[] The list of lookup keys. Overrides ConfigEntityTypeInterface::getLookupKeys File core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php, line 174 Class ConfigEntityType Provides an implementation of a configuration entity type and its metadata. Namespace Drupal\Core\Config\Entity Code public function getLookupKeys() { return $this->lookup_keys; }

ConfigEntityType::getDataTable

public ConfigEntityType::getDataTable() Gets the name of the entity's data table. @todo Used by SqlContentEntityStorage only. Return value string|null The name of the entity type's data table, or NULL if none exists. Overrides EntityType::getDataTable File core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php, line 116 Class ConfigEntityType Provides an implementation of a configuration entity type and its metadata. Namespace Drupal\Core\Config\Entity Code public function getDataTab

ConfigEntityType::getConfigPrefix

public ConfigEntityType::getConfigPrefix() Gets the config prefix used by the configuration entity type. The config prefix is used to prefix configuration entity IDs when they are stored in the configuration system. The default config prefix is constructed from the name of the module that provides the entity type and the ID of the entity type. If a config_prefix annotation is present it will be used in place of the entity type ID. Prefixing with the module that provides the configuration entity

ConfigEntityType::getConfigDependencyKey

public ConfigEntityType::getConfigDependencyKey() Gets the key that is used to store configuration dependencies. Return value string The key to be used in configuration dependencies when storing dependencies on entities of this type. Overrides EntityType::getConfigDependencyKey File core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php, line 123 Class ConfigEntityType Provides an implementation of a configuration entity type and its metadata. Namespace Drupal\Core\Config\Entity Code

ConfigEntityType::getBaseTable

public ConfigEntityType::getBaseTable() Gets the name of the entity's base table. @todo Used by SqlContentEntityStorage only. Return value string|null The name of the entity's base table, or NULL if none exists. Overrides EntityType::getBaseTable File core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php, line 95 Class ConfigEntityType Provides an implementation of a configuration entity type and its metadata. Namespace Drupal\Core\Config\Entity Code public function getBaseTable() {

ConfigEntityType::get

public ConfigEntityType::get() Gets the value of an annotation. Overrides EntityType::get File core/lib/Drupal/Core/Entity/Annotation/ConfigEntityType.php, line 33 Class ConfigEntityType Defines a config entity type annotation object. Namespace Drupal\Core\Entity\Annotation Code public function get() { $this->definition['group_label'] = new TranslatableMarkup('Configuration', array(), array('context' => 'Entity type group')); return parent::get(); }