You are here

public function ModerationOptOutPublishNode::__construct in Drupal 8

ModerationOptOutPublish constructor.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

\Drupal\content_moderation\ModerationInformationInterface $moderation_info: The moderation information service.

\Drupal\Core\Entity\EntityTypeBundleInfoInterface $bundle_info: Bundle info service.

\Drupal\Core\Messenger\MessengerInterface $messenger: Messenger service.

Overrides ModerationOptOutPublish::__construct

File

core/modules/content_moderation/src/Plugin/Action/ModerationOptOutPublishNode.php, line 24

Class

ModerationOptOutPublishNode
Alternate action plugin that can opt-out of modifying moderated entities.

Namespace

Drupal\content_moderation\Plugin\Action

Code

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);
}