You are here

LegacyPublishingIsEnabled.php in Scheduler 2.x

File

scheduler_rules_integration/src/Plugin/Condition/Legacy/LegacyPublishingIsEnabled.php
View source
<?php

namespace Drupal\scheduler_rules_integration\Plugin\Condition\Legacy;

use Drupal\scheduler_rules_integration\Plugin\Condition\PublishingIsEnabled;

/**
 * Provides a 'Publishing is enabled' condition for nodes only.
 *
 * @Condition(
 *   id = "scheduler_condition_publishing_is_enabled",
 *   label = @Translation("Node type is enabled for scheduled publishing"),
 *   category = @Translation("Content (Scheduler)"),
 *   context_definitions = {
 *     "node" = @ContextDefinition("entity:node",
 *       label = @Translation("Node"),
 *       description = @Translation("The node to check for the type being enabled for scheduled publishing."),
 *       assignment_restriction = "selector",
 *     )
 *   }
 * )
 */
class LegacyPublishingIsEnabled extends PublishingIsEnabled {

}

Classes

Namesort descending Description
LegacyPublishingIsEnabled Provides a 'Publishing is enabled' condition for nodes only.