class ModerationOptOutPublishNode

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

Hierarchy

Expanded class hierarchy of ModerationOptOutPublishNode

Deprecated

in drupal:8.5.0 and is removed from drupal:9.0.0. Use \Drupal\content_moderation\Plugin\Action\ModerationOptOutPublish instead.

See also

\Drupal\content_moderation\Plugin\Action\ModerationOptOutPublish

https://www.drupal.org/node/2919303

File

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

Namespace

Drupal\content_moderation\Plugin\Action
View source
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);
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
ActionBase::executeMultiple public function Executes the plugin for an array of objects. Overrides ActionInterface::executeMultiple 3
EntityActionBase::$entityTypeManager protected property The entity type manager.
EntityActionBase::calculateDependencies public function Calculates dependencies for the configured plugin. Overrides DependentPluginInterface::calculateDependencies
ModerationOptOutPublish::$bundleInfo protected property Bundle info service.
ModerationOptOutPublish::$messenger protected property Messenger service.
ModerationOptOutPublish::$moderationInfo protected property Moderation information service.
ModerationOptOutPublish::access public function Checks object access. Overrides PublishAction::access
ModerationOptOutPublish::create public static function Creates an instance of the plugin. Overrides EntityActionBase::create
ModerationOptOutPublishNode::__construct public function ModerationOptOutPublish constructor. Overrides ModerationOptOutPublish::__construct
PluginInspectionInterface::getPluginDefinition public function Gets the definition of the plugin implementation. 6
PluginInspectionInterface::getPluginId public function Gets the plugin_id of the plugin instance. 2
PublishAction::execute public function Executes the plugin. Overrides ExecutableInterface::execute

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.