ConfigEntityType.php
Same filename in this branch
Same filename in other branches
- 8.9.x core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php
- 8.9.x core/lib/Drupal/Core/Entity/Annotation/ConfigEntityType.php
- 10 core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php
- 10 core/lib/Drupal/Core/Entity/Annotation/ConfigEntityType.php
- 11.x core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php
- 11.x core/lib/Drupal/Core/Entity/Annotation/ConfigEntityType.php
Namespace
Drupal\Core\Entity\AnnotationFile
-
core/
lib/ Drupal/ Core/ Entity/ Annotation/ ConfigEntityType.php
View source
<?php
namespace Drupal\Core\Entity\Annotation;
use Drupal\Core\StringTranslation\TranslatableMarkup;
/**
* Defines a config entity type annotation object.
*
* The annotation properties of entity types are found on
* \Drupal\Core\Config\Entity\ConfigEntityType and are accessed using
* get/set methods defined in \Drupal\Core\Entity\EntityTypeInterface.
*
* @ingroup entity_api
*
* @Annotation
*/
class ConfigEntityType extends EntityType {
/**
* {@inheritdoc}
*/
public $entity_type_class = 'Drupal\\Core\\Config\\Entity\\ConfigEntityType';
/**
* {@inheritdoc}
*/
public $group = 'configuration';
/**
* {@inheritdoc}
*/
public function get() {
$this->definition['group_label'] = new TranslatableMarkup('Configuration', [], [
'context' => 'Entity type group',
]);
return parent::get();
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
ConfigEntityType | Defines a config entity type annotation object. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.