You are here

ModerationHandler.php in Workbench Moderation 8.2

Same filename and directory in other branches
  1. 8 src/Entity/Handler/ModerationHandler.php

Contains Drupal\workbench_moderation\Entity\Handler\GenericCustomizations.

File

src/Entity/Handler/ModerationHandler.php
View source
<?php

/**
 * @file
 * Contains Drupal\workbench_moderation\Entity\Handler\GenericCustomizations.
 */
namespace Drupal\workbench_moderation\Entity\Handler;

use Drupal\Core\Config\Entity\ConfigEntityInterface;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityHandlerInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\StringTranslation\StringTranslationTrait;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Common customizations for most/all entities.
 *
 * This class is intended primarily as a base class.
 */
class ModerationHandler implements ModerationHandlerInterface, EntityHandlerInterface {
  use StringTranslationTrait;

  /**
   * @inheritDoc
   */
  public static function createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) {
    return new static();
  }

  /**
   * {@inheritdoc}
   */
  public function onPresave(ContentEntityInterface $entity, $default_revision, $published_state) {

    // This is *probably* not necessary if configuration is setup correctly,
    // but it can't hurt.
    $entity
      ->setNewRevision(TRUE);
    $entity
      ->isDefaultRevision($default_revision);
  }

  /**
   * {@inheritdoc}
   */
  public function onBundleModerationConfigurationFormSubmit(ConfigEntityInterface $bundle) {

    // The Revisions portion of Entity API is not uniformly applied or consistent.
    // Until that's fixed in core, we'll make a best-attempt to apply it to
    // the common entity patterns so as to avoid every entity type needing to
    // implement this method, although some will still need to do so for now.
    // This is the API that should be universal, but isn't yet. See NodeType
    // for an example.
    if (method_exists($bundle, 'setNewRevision')) {
      $bundle
        ->setNewRevision(TRUE);
    }
    elseif ($bundle
      ->get('new_revision') !== NULL) {
      $bundle
        ->set('new_revision', TRUE);
    }
    elseif ($bundle
      ->get('revision') !== NULL) {
      $bundle
        ->set('revision', TRUE);
    }
    $bundle
      ->save();
    return;
  }

  /**
   * {@inheritdoc}
   */
  public function enforceRevisionsEntityFormAlter(array &$form, FormStateInterface $form_state, $form_id) {
    return;
  }

  /**
   * {@inheritdoc}
   */
  public function enforceRevisionsBundleFormAlter(array &$form, FormStateInterface $form_state, $form_id) {
    return;
  }

}

Classes

Namesort descending Description
ModerationHandler Common customizations for most/all entities.