EntityType.php
Same filename in this branch
Same filename in other branches
- 9 core/lib/Drupal/Core/Entity/EntityType.php
- 9 core/lib/Drupal/Core/Entity/Annotation/EntityType.php
- 8.9.x core/lib/Drupal/Core/Entity/EntityType.php
- 8.9.x core/lib/Drupal/Core/Entity/Annotation/EntityType.php
- 11.x core/lib/Drupal/Core/Entity/EntityType.php
- 11.x core/lib/Drupal/Core/Entity/Annotation/EntityType.php
Namespace
Drupal\Core\Entity\AnnotationFile
-
core/
lib/ Drupal/ Core/ Entity/ Annotation/ EntityType.php
View source
<?php
namespace Drupal\Core\Entity\Annotation;
use Drupal\Component\Annotation\Plugin;
use Drupal\Core\StringTranslation\StringTranslationTrait;
/**
* Defines an Entity type annotation object.
*
* Entity type plugins use an object-based annotation method, rather than an
* array-type annotation method (as commonly used on other annotation types).
* The annotation properties of entity types are found on
* \Drupal\Core\Entity\EntityType and are accessed using get/set methods defined
* in \Drupal\Core\Entity\EntityTypeInterface.
*
* @ingroup entity_api
*
* @Annotation
*/
class EntityType extends Plugin {
use StringTranslationTrait;
/**
* The class used to represent the entity type.
*
* It must implement \Drupal\Core\Entity\EntityTypeInterface.
*
* @var string
*/
public $entity_type_class = 'Drupal\\Core\\Entity\\EntityType';
/**
* The group machine name.
*
* @var string
*/
public $group = 'default';
/**
* The group label.
*
* @var \Drupal\Core\Annotation\Translation
*
* @ingroup plugin_translatable
*/
public $group_label = '';
/**
* {@inheritdoc}
*/
public function get() {
$values = $this->definition;
// Use the specified entity type class, and remove it before instantiating.
$class = $values['entity_type_class'];
unset($values['entity_type_class']);
return new $class($values);
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
EntityType | Defines an Entity type annotation object. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.