scheduler-8.x-1.x-dev/src/Event/SchedulerNodeEvents.php
src/Event/SchedulerNodeEvents.php
<?php
namespace Drupal\scheduler\Event;
/**
* Lists the six events dispatched by Scheduler relating to Node entities.
*
* The event names here are the original six, when only nodes were supported.
* See SchedulerTaxonomyTermEvents for the generic naming convention to follow
* for any new entity plugin implementations.
*/
final class SchedulerNodeEvents {
/**
* The event triggered after a node is published immediately.
*
* This event allows modules to react after an entity is published
* immediately when being saved after editing. The event listener method
* receives a \Drupal\Core\Entity\EntityInterface instance.
*
* @Event
*
* @see \Drupal\scheduler\Event\SchedulerEvent
*
* @var string
*/
const PUBLISH_IMMEDIATELY = 'scheduler.publish_immediately';
/**
* The event triggered after a node is published by cron.
*
* This event allows modules to react after an entity is published by Cron.
* The event listener receives a \Drupal\Core\Entity\EntityInterface instance.
*
* @Event
*
* @see \Drupal\scheduler\Event\SchedulerEvent
*
* @var string
*/
const PUBLISH = 'scheduler.publish';
/**
* The event triggered before a node is published immediately.
*
* This event allows modules to react before an entity is published
* immediately when being saved after editing. The event listener method
* receives a \Drupal\Core\Entity\EntityInterface instance.
*
* @Event
*
* @see \Drupal\scheduler\Event\SchedulerEvent
*
* @var string
*/
const PRE_PUBLISH_IMMEDIATELY = 'scheduler.pre_publish_immediately';
/**
* The event triggered before a node is published by cron.
*
* This event allows modules to react before an entity is published by Cron.
* The event listener receives a \Drupal\Core\Entity\EntityInterface instance.
*
* @Event
*
* @see \Drupal\scheduler\Event\SchedulerEvent
*
* @var string
*/
const PRE_PUBLISH = 'scheduler.pre_publish';
/**
* The event triggered before a node is unpublished by cron.
*
* This event allows modules to react before an entity is unpublished by Cron.
* The event listener receives a \Drupal\Core\Entity\EntityInterface instance.
*
* @Event
*
* @see \Drupal\scheduler\Event\SchedulerEvent
*
* @var string
*/
const PRE_UNPUBLISH = 'scheduler.pre_unpublish';
/**
* The event triggered after a node is unpublished by cron.
*
* This event allows modules to react after an entity is unpublished by Cron.
* The event listener receives a \Drupal\Core\Entity\EntityInterface instance.
*
* @Event
*
* @see \Drupal\scheduler\Event\SchedulerEvent
*
* @var string
*/
const UNPUBLISH = 'scheduler.unpublish';
}
