Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/Annotation/ContentEntityType.php \Drupal\Core\Entity\Annotation\ContentEntityType::get()
  2. 9 core/lib/Drupal/Core/Entity/Annotation/ContentEntityType.php \Drupal\Core\Entity\Annotation\ContentEntityType::get()

Gets the value of an annotation.

Overrides EntityType::get

File

core/lib/Drupal/Core/Entity/Annotation/ContentEntityType.php, line 35

Class

ContentEntityType
Defines a content entity type annotation object.

Namespace

Drupal\Core\Entity\Annotation

Code

public function get() {
  $this->definition['group_label'] = new TranslatableMarkup('Content', [], [
    'context' => 'Entity type group',
  ]);
  return parent::get();
}