Same name and namespace in other branches
  1. 8.9.x core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMul.php \Drupal\entity_test\Entity\EntityTestMul
  2. 9 core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMul.php \Drupal\entity_test\Entity\EntityTestMul

Defines the test entity class.

Plugin annotation


@ContentEntityType(
  id = "entity_test_mul",
  label = @Translation("Test entity - data table"),
  handlers = {
    "view_builder" = "Drupal\entity_test\EntityTestViewBuilder",
    "access" = "Drupal\entity_test\EntityTestAccessControlHandler",
    "form" = {
      "default" = "Drupal\entity_test\EntityTestForm",
      "delete" = "Drupal\entity_test\EntityTestDeleteForm"
    },
    "views_data" = "Drupal\views\EntityViewsData",
    "route_provider" = {
      "html" = "Drupal\Core\Entity\Routing\DefaultHtmlRouteProvider",
    },
  },
  base_table = "entity_test_mul",
  data_table = "entity_test_mul_property_data",
  admin_permission = "administer entity_test content",
  translatable = TRUE,
  entity_keys = {
    "id" = "id",
    "uuid" = "uuid",
    "bundle" = "type",
    "label" = "name",
    "langcode" = "langcode",
  },
  links = {
    "add-page" = "/entity_test_mul/add",
    "add-form" = "/entity_test_mul/add/{type}",
    "canonical" = "/entity_test_mul/manage/{entity_test_mul}",
    "edit-form" = "/entity_test_mul/manage/{entity_test_mul}/edit",
    "delete-form" = "/entity_test/delete/entity_test_mul/{entity_test_mul}",
  },
  field_ui_base_route = "entity.entity_test_mul.admin_form",
)

Hierarchy

Expanded class hierarchy of EntityTestMul

9 files declare their use of EntityTestMul
ContentEntityCloneTest.php in core/tests/Drupal/KernelTests/Core/Entity/ContentEntityCloneTest.php
ContentTranslationEntityBundleInfoTest.php in core/modules/content_translation/tests/src/Kernel/ContentTranslationEntityBundleInfoTest.php
ContentTranslationLinkTagTest.php in core/modules/content_translation/tests/src/Functional/ContentTranslationLinkTagTest.php
EntityAddUITest.php in core/modules/system/tests/src/Functional/Entity/EntityAddUITest.php
EntityReferenceRelationshipTest.php in core/modules/field/tests/src/Kernel/EntityReference/Views/EntityReferenceRelationshipTest.php

... See full list

File

core/modules/system/tests/modules/entity_test/src/Entity/EntityTestMul.php, line 46

Namespace

Drupal\entity_test\Entity
View source
class EntityTestMul extends EntityTest {

  /**
   * {@inheritdoc}
   */
  public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
    return parent::baseFieldDefinitions($entity_type);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EntityTest::getEntityKey public function
EntityTest::getName public function Returns the name.
EntityTest::getOwner public function Returns the entity owner's user entity. Overrides EntityOwnerInterface::getOwner
EntityTest::getOwnerId public function Returns the entity owner's user ID. Overrides EntityOwnerInterface::getOwnerId
EntityTest::preCreate public static function 1
EntityTest::setName public function Sets the name.
EntityTest::setOwner public function Sets the entity owner's user entity. Overrides EntityOwnerInterface::setOwner
EntityTest::setOwnerId public function Sets the entity owner's user ID. Overrides EntityOwnerInterface::setOwnerId
EntityTestMul::baseFieldDefinitions public static function Provides base field definitions for an entity type. Overrides EntityTest::baseFieldDefinitions 3