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