Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

RevisionableContentEntityBase.php

Namespace

Drupal\Core\Entity

File

core/lib/Drupal/Core/Entity/RevisionableContentEntityBase.php

View source
<?php

namespace Drupal\Core\Entity;


/**
 * Provides a content entity with extended support for revisions.
 *
 * In addition to the parent entity class, base fields and methods for
 * accessing the revision log message, revision owner and the revision creation
 * time are provided.
 *
 * @ingroup entity_api
 */
abstract class RevisionableContentEntityBase extends ContentEntityBase implements RevisionLogInterface {
    use RevisionLogEntityTrait;
    
    /**
     * {@inheritdoc}
     */
    public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
        $fields = parent::baseFieldDefinitions($entity_type);
        $fields += static::revisionLogBaseFieldDefinitions($entity_type);
        return $fields;
    }

}

Classes

Title Deprecated Summary
RevisionableContentEntityBase Provides a content entity with extended support for revisions.
RSS feed
Powered by Drupal