Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / system / tests / modules / entity_test / src / Entity / EntityTestLabel.php
1 <?php
2
3 namespace Drupal\entity_test\Entity;
4
5 /**
6  * Test entity class.
7  *
8  * @ContentEntityType(
9  *   id = "entity_test_label",
10  *   label = @Translation("Entity Test label"),
11  *   handlers = {
12  *     "access" = "Drupal\entity_test\EntityTestAccessControlHandler",
13  *     "view_builder" = "Drupal\entity_test\EntityTestViewBuilder"
14  *   },
15  *   base_table = "entity_test_label",
16  *   render_cache = FALSE,
17  *   entity_keys = {
18  *     "uuid" = "uuid",
19  *     "id" = "id",
20  *     "label" = "name",
21  *     "bundle" = "type",
22  *     "langcode" = "langcode",
23  *   }
24  * )
25  */
26 class EntityTestLabel extends EntityTest {
27
28 }