RevisionableContentEntityBase.php

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/Entity/RevisionableContentEntityBase.php
  2. 8.9.x core/lib/Drupal/Core/Entity/RevisionableContentEntityBase.php
  3. 10 core/lib/Drupal/Core/Entity/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.

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