NewNodeIsScheduledForPublishingEvent.php in Scheduler 8
Namespace
Drupal\scheduler_rules_integration\EventFile
scheduler_rules_integration/src/Event/NewNodeIsScheduledForPublishingEvent.phpView source
<?php
namespace Drupal\scheduler_rules_integration\Event;
use Drupal\scheduler\EventBase;
/**
* A new node is scheduled for publishing.
*
* This event is fired when a newly created node is saved for the first time
* and it has a scheduled publishing date.
*/
class NewNodeIsScheduledForPublishingEvent extends EventBase {
const EVENT_NAME = 'scheduler_new_node_is_scheduled_for_publishing_event';
}
Classes
Name | Description |
---|---|
NewNodeIsScheduledForPublishingEvent | A new node is scheduled for publishing. |