Same filename in this branch
  1. 10 core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php
  2. 10 core/lib/Drupal/Core/Entity/Annotation/ConfigEntityType.php
Same filename and directory in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/Annotation/ConfigEntityType.php
  2. 9 core/lib/Drupal/Core/Entity/Annotation/ConfigEntityType.php

Namespace

Drupal\Core\Entity\Annotation

File

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

Namesort descending Description
ConfigEntityType Defines a config entity type annotation object.