Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/modules/entity_test/src/Entity/EntityTestNoLabel.php
  2. 9 core/modules/system/tests/modules/entity_test/src/Entity/EntityTestNoLabel.php

Namespace

Drupal\entity_test\Entity

File

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

namespace Drupal\entity_test\Entity;


/**
 * Test entity class.
 *
 * @ContentEntityType(
 *   id = "entity_test_no_label",
 *   label = @Translation("Entity Test without label"),
 *   internal = TRUE,
 *   persistent_cache = FALSE,
 *   base_table = "entity_test_no_label",
 *   handlers = {
 *     "access" = "Drupal\entity_test\EntityTestAccessControlHandler",
 *   },
 *   entity_keys = {
 *     "id" = "id",
 *     "uuid" = "uuid",
 *     "bundle" = "type",
 *   },
 * )
 */
class EntityTestNoLabel extends EntityTest {

  /**
   * {@inheritdoc}
   */
  public function label() {
    return $this
      ->getName();
  }

}

Classes

Namesort descending Description
EntityTestNoLabel Test entity class.