You are here

LegacyUnpublishNow.php in Scheduler 2.x

File

scheduler_rules_integration/src/Plugin/RulesAction/Legacy/LegacyUnpublishNow.php
View source
<?php

namespace Drupal\scheduler_rules_integration\Plugin\RulesAction\Legacy;

use Drupal\scheduler_rules_integration\Plugin\RulesAction\UnpublishNow;

/**
 * Provides an 'Unpublish the node immediately' action.
 *
 * @RulesAction(
 *   id = "scheduler_unpublish_now_action",
 *   entity_type_id = "node",
 *   label = @Translation("Unpublish a content item immediately"),
 *   category = @Translation("Content (Scheduler)"),
 *   context_definitions = {
 *     "node" = @ContextDefinition("entity:node",
 *       label = @Translation("Node"),
 *       description = @Translation("The node to be unpublished now"),
 *       assignment_restriction = "selector",
 *     ),
 *   }
 * )
 */
class LegacyUnpublishNow extends UnpublishNow {

}

Classes

Namesort descending Description
LegacyUnpublishNow Provides an 'Unpublish the node immediately' action.