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;
class ModerationOptOutPublishNode extends ModerationOptOutPublish {
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);
}
}