class EntityTestRevPub

Same name and namespace in other branches
  1. 11.x core/modules/system/tests/modules/entity_test/src/Entity/EntityTestRevPub.php \Drupal\entity_test\Entity\EntityTestRevPub

Defines the test entity class.

Plugin annotation


@ContentEntityType(
  id = "entity_test_revpub",
  label = @Translation("Test entity - revisions and publishing status"),
  handlers = {
    "access" = "Drupal\entity_test\EntityTestAccessControlHandler",
    "view_builder" = "Drupal\entity_test\EntityTestViewBuilder",
    "form" = {
      "default" = "Drupal\entity_test\EntityTestForm",
      "delete" = "Drupal\entity_test\EntityTestDeleteForm",
      "delete-multiple-confirm" = "Drupal\Core\Entity\Form\DeleteMultipleForm"
    },
  },
  base_table = "entity_test_revpub",
  revision_table = "entity_test_revpub_revision",
  admin_permission = "administer entity_test content",
  show_revision_ui = TRUE,
  entity_keys = {
    "id" = "id",
    "uuid" = "uuid",
    "revision" = "revision_id",
    "bundle" = "type",
    "label" = "name",
    "langcode" = "langcode",
    "published" = "status",
  },
  links = {
    "add-form" = "/entity_test_rev/add",
    "canonical" = "/entity_test_rev/manage/{entity_test_rev}",
    "delete-form" = "/entity_test/delete/entity_test_rev/{entity_test_rev}",
    "delete-multiple-form" = "/entity_test_rev/delete_multiple",
    "edit-form" = "/entity_test_rev/manage/{entity_test_rev}/edit",
    "revision" = "/entity_test_rev/{entity_test_rev}/revision/{entity_test_rev_revision}/view",
  }
)

Hierarchy

Expanded class hierarchy of EntityTestRevPub

File

core/modules/system/tests/modules/entity_test/src/Entity/EntityTestRevPub.php, line 47

Namespace

Drupal\entity_test\Entity
View source
class EntityTestRevPub extends EntityTestRev implements EntityPublishedInterface {
  use EntityPublishedTrait;
  
  /**
   * {@inheritdoc}
   */
  public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
    $fields = parent::baseFieldDefinitions($entity_type);
    // Add the publishing status field.
    $fields += static::publishedBaseFieldDefinitions($entity_type);
    return $fields;
  }

}

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