ConfigEntityType.php

Same filename in this branch
  1. 11.x core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php
Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php
  2. 9 core/lib/Drupal/Core/Entity/Annotation/ConfigEntityType.php
  3. 8.9.x core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php
  4. 8.9.x core/lib/Drupal/Core/Entity/Annotation/ConfigEntityType.php
  5. 10 core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php
  6. 10 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}
     */
    // phpcs:ignore Drupal.NamingConventions.ValidVariableName.LowerCamelName
    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.