You are here

NewNodeIsScheduledForUnpublishingEvent.php in Scheduler 8

File

scheduler_rules_integration/src/Event/NewNodeIsScheduledForUnpublishingEvent.php
View source
<?php

namespace Drupal\scheduler_rules_integration\Event;

use Drupal\scheduler\EventBase;

/**
 * A new node is scheduled for unpublishing.
 *
 * This event is fired when a newly created node is saved for the first time
 * and it has a scheduled unpublishing date.
 */
class NewNodeIsScheduledForUnpublishingEvent extends EventBase {
  const EVENT_NAME = 'scheduler_new_node_is_scheduled_for_unpublishing_event';

}

Classes

Namesort descending Description
NewNodeIsScheduledForUnpublishingEvent A new node is scheduled for unpublishing.