class EntityTestMulWithRevisionLog

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/entity_test_revlog/src/Entity/EntityTestMulWithRevisionLog.php \Drupal\entity_test_revlog\Entity\EntityTestMulWithRevisionLog
  2. 8.9.x core/modules/system/tests/modules/entity_test_revlog/src/Entity/EntityTestMulWithRevisionLog.php \Drupal\entity_test_revlog\Entity\EntityTestMulWithRevisionLog
  3. 10 core/modules/system/tests/modules/entity_test_revlog/src/Entity/EntityTestMulWithRevisionLog.php \Drupal\entity_test_revlog\Entity\EntityTestMulWithRevisionLog

Defines the test entity class.

Plugin annotation


@ContentEntityType(
  id = "entity_test_mul_revlog",
  label = @Translation("Test entity - data table, revisions log"),
  handlers = {
    "access" = \Drupal\entity_test_revlog\EntityTestRevlogAccessControlHandler::class,
    "form" = {
      "default" = \Drupal\Core\Entity\ContentEntityForm::class,
      "revision-delete" = \Drupal\Core\Entity\Form\RevisionDeleteForm::class,
      "revision-revert" = \Drupal\Core\Entity\Form\RevisionRevertForm::class,
    },
    "route_provider" = {
      "html" = \Drupal\Core\Entity\Routing\DefaultHtmlRouteProvider::class,
      "revision" = \Drupal\Core\Entity\Routing\RevisionHtmlRouteProvider::class,
    },
  },
  base_table = "entity_test_mul_revlog",
  data_table = "entity_test_mul_revlog_field_data",
  revision_table = "entity_test_mul_revlog_revision",
  revision_data_table = "entity_test_mul_revlog_field_revision",
  translatable = TRUE,
  entity_keys = {
    "id" = "id",
    "uuid" = "uuid",
    "revision" = "revision_id",
    "bundle" = "type",
    "label" = "name",
    "langcode" = "langcode",
  },
  revision_metadata_keys = {
    "revision_user" = "revision_user",
    "revision_created" = "revision_created",
    "revision_log_message" = "revision_log_message"
  },
  links = {
    "add-form" = "/entity_test_mul_revlog/add",
    "canonical" = "/entity_test_mul_revlog/manage/{entity_test_mul_revlog}",
    "delete-form" = "/entity_test/delete/entity_test_mul_revlog/{entity_test_mul_revlog}",
    "edit-form" = "/entity_test_mul_revlog/manage/{entity_test_mul_revlog}/edit",
    "revision" = "/entity_test_mul_revlog/{entity_test_mul_revlog}/revision/{entity_test_mul_revlog_revision}/view",
    "revision-delete-form" = "/entity_test_mul_revlog/{entity_test_mul_revlog}/revision/{entity_test_mul_revlog_revision}/delete",
    "revision-revert-form" = "/entity_test_mul_revlog/{entity_test_mul_revlog}/revision/{entity_test_mul_revlog_revision}/revert",
    "version-history" = "/entity_test_mul_revlog/{entity_test_mul_revlog}/revisions",
  }
)

Hierarchy

Expanded class hierarchy of EntityTestMulWithRevisionLog

2 files declare their use of EntityTestMulWithRevisionLog
RevisionableContentEntityBaseTest.php in core/tests/Drupal/KernelTests/Core/Entity/RevisionableContentEntityBaseTest.php
RevisionVersionHistoryTranslatableTest.php in core/tests/Drupal/FunctionalTests/Entity/RevisionVersionHistoryTranslatableTest.php

File

core/modules/system/tests/modules/entity_test_revlog/src/Entity/EntityTestMulWithRevisionLog.php, line 53

Namespace

Drupal\entity_test_revlog\Entity
View source
class EntityTestMulWithRevisionLog extends EntityTestWithRevisionLog {

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.