You are here

ModerationOptOutPublishNode.php in Drupal 8

File

core/modules/content_moderation/src/Plugin/Action/ModerationOptOutPublishNode.php
View source
<?php

namespace Drupal\content_moderation\Plugin\Action;

use Drupal\content_moderation\ModerationInformationInterface;
use Drupal\Core\Entity\EntityTypeBundleInfoInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;

/**
 * Alternate action plugin that can opt-out of modifying moderated entities.
 *
 * @deprecated in drupal:8.5.0 and is removed from drupal:9.0.0.
 *   Use \Drupal\content_moderation\Plugin\Action\ModerationOptOutPublish
 *   instead.
 *
 * @see \Drupal\content_moderation\Plugin\Action\ModerationOptOutPublish
 * @see https://www.drupal.org/node/2919303
 */
class ModerationOptOutPublishNode extends ModerationOptOutPublish {

  /**
   * {@inheritdoc}
   */
  public function __construct($configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, ModerationInformationInterface $moderation_info, EntityTypeBundleInfoInterface $bundle_info) {
    parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_type_manager, $moderation_info, $bundle_info);
    @trigger_error(__NAMESPACE__ . '\\ModerationOptOutPublishNode is deprecated in Drupal 8.5.x, will be removed before Drupal 9.0.0. Use \\Drupal\\content_moderation\\Plugin\\Action\\ModerationOptOutPublish instead. See https://www.drupal.org/node/2919303.', E_USER_DEPRECATED);
  }

}

Classes

Namesort descending Description
ModerationOptOutPublishNode Deprecated Alternate action plugin that can opt-out of modifying moderated entities.