class EntityTestMulWithRevisionLogPub

Same name and namespace in other branches
  1. 11.x core/modules/system/tests/modules/entity_test_revlog/src/Entity/EntityTestMulWithRevisionLogPub.php \Drupal\entity_test_revlog\Entity\EntityTestMulWithRevisionLogPub
  2. 10 core/modules/system/tests/modules/entity_test_revlog/src/Entity/EntityTestMulWithRevisionLogPub.php \Drupal\entity_test_revlog\Entity\EntityTestMulWithRevisionLogPub

Defines the test entity class.

Plugin annotation


@ContentEntityType(
  id = "entity_test_mul_revlog_pub",
  label = @Translation("Test entity - data table, revisions log, publishing status"),
  base_table = "entity_test_mul_revlog_pub",
  data_table = "entity_test_mul_revlog_pub_field_data",
  revision_table = "entity_test_mul_revlog_pub_revision",
  revision_data_table = "entity_test_mul_revlog_pub_field_revision",
  translatable = TRUE,
  entity_keys = {
    "id" = "id",
    "uuid" = "uuid",
    "revision" = "revision_id",
    "bundle" = "type",
    "label" = "name",
    "langcode" = "langcode",
    "published" = "status",
  },
  revision_metadata_keys = {
    "revision_user" = "revision_user",
    "revision_created" = "revision_created",
    "revision_log_message" = "revision_log_message"
  },
)

Hierarchy

Expanded class hierarchy of EntityTestMulWithRevisionLogPub

File

core/modules/system/tests/modules/entity_test_revlog/src/Entity/EntityTestMulWithRevisionLogPub.php, line 36

Namespace

Drupal\entity_test_revlog\Entity
View source
class EntityTestMulWithRevisionLogPub extends EntityTestWithRevisionLog implements EntityPublishedInterface {
  use EntityPublishedTrait;
  
  /**
   * {@inheritdoc}
   */
  public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
    return parent::baseFieldDefinitions($entity_type) + static::publishedBaseFieldDefinitions($entity_type);
  }

}

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