You are here

EntityTestLabel.php in Drupal 9

File

core/modules/system/tests/modules/entity_test/src/Entity/EntityTestLabel.php
View source
<?php

namespace Drupal\entity_test\Entity;


/**
 * Test entity class.
 *
 * @ContentEntityType(
 *   id = "entity_test_label",
 *   label = @Translation("Entity Test label"),
 *   handlers = {
 *     "access" = "Drupal\entity_test\EntityTestAccessControlHandler",
 *     "view_builder" = "Drupal\entity_test\EntityTestViewBuilder"
 *   },
 *   base_table = "entity_test_label",
 *   render_cache = FALSE,
 *   entity_keys = {
 *     "uuid" = "uuid",
 *     "id" = "id",
 *     "label" = "name",
 *     "bundle" = "type",
 *     "langcode" = "langcode",
 *   }
 * )
 */
class EntityTestLabel extends EntityTest {

}

Classes

Namesort descending Description
EntityTestLabel Test entity class.