You are here

ViewsRevisions.php in Config Entity Revisions 1.x

Same filename and directory in other branches
  1. 8 modules/views_revisions/src/Entity/ViewsRevisions.php

File

modules/views_revisions/src/Entity/ViewsRevisions.php
View source
<?php

namespace Drupal\views_revisions\Entity;

use Drupal\config_entity_revisions\ConfigEntityRevisionsInterface;
use Drupal\views_revisions\ViewsRevisionsConfigTrait;
use Drupal\config_entity_revisions\ConfigEntityRevisionsConfigTrait;
use Drupal\views\Entity\View;
use Drupal\Core\Entity\EntityTypeManager;
class ViewsRevisions extends View implements ConfigEntityRevisionsInterface {
  use ViewsRevisionsConfigTrait, ConfigEntityRevisionsConfigTrait;

  /**
   * @var EntityTypeManager
   */
  public $entityTypeManager;

  // Declare these fields so they're put in the storage object instead of the
  // ViewsUI object during entity building. We can then access them in
  // createUpdateRevision.

  /**
   * @var int revision
   */
  protected $revision;

  /**
   * @var array revision_log_message
   */
  protected $revision_log_message;

  /**
   * Constructs an Entity object.
   *
   * @param array $values
   *   An array of values to set, keyed by property name. If the entity type
   *   has bundles, the bundle key has to be specified.
   * @param string $entity_type
   *   The type of the entity to create.
   */
  public function __construct(array $values, $entity_type) {
    parent::__construct($values, $entity_type);
    $this->entityTypeManager = \Drupal::service('entity_type.manager');
  }

  /**
   * Set in the configEntity an identifier for the matching content entity.
   *
   * @param mixed $contentEntityID
   *   The ID used to match the content entity.
   */
  public function setContentEntityID($contentEntityID) {
    $this
      ->setThirdPartySetting('views_revisions', 'contentEntity_id', $contentEntityID);
  }

  /**
   * Get from the configEntity the ID of the matching content entity.
   *
   * @return int|null
   *   The ID (if any) of the matching content entity.
   */
  public function getContentEntityID() {
    return $this
      ->getThirdPartySetting('views_revisions', 'contentEntity_id');
  }

}

Classes

Namesort descending Description
ViewsRevisions