WorkbenchModerationTransitionEvent.php in Workbench Moderation 8
Same filename and directory in other branches
Namespace
Drupal\workbench_moderation\EventFile
src/Event/WorkbenchModerationTransitionEvent.phpView source
<?php
namespace Drupal\workbench_moderation\Event;
use Drupal\Core\Entity\ContentEntityInterface;
use Symfony\Component\EventDispatcher\Event;
/**
* Defines a class for transition events.
*
* @see \Drupal\workbench_moderation\ModerationStateEvents
*/
class WorkbenchModerationTransitionEvent extends Event {
/**
* The entity which was changed.
*
* @var \Drupal\Core\Entity\ContentEntityInterface
*/
protected $entity;
/**
* The state before the transition.
*
* @var string
*/
protected $stateBefore;
/**
* The state after the transition.
*
* @var string
*/
protected $stateAfter;
/**
* Creates a new WorkbenchModerationTransitionEvent instance.
*
* @param \Drupal\Core\Entity\ContentEntityInterface $entity
* The entity which was changed.
* @param string $state_before
* The state before the transition.
* @param string $state_after
* The state after the transition.
*/
public function __construct(ContentEntityInterface $entity, $state_before, $state_after) {
$this->entity = $entity;
$this->stateBefore = $state_before;
$this->stateAfter = $state_after;
}
/**
* Returns the changed entity.
*
* @return \Drupal\Core\Entity\ContentEntityInterface
* returns entity.
*/
public function getEntity() {
return $this->entity;
}
/**
* Returns state before the transition.
*
* @return string
* Return state before.
*/
public function getStateBefore() {
return $this->stateBefore;
}
/**
* Returns state after the transition.
*
* @return string
* Return state after.
*/
public function getStateAfter() {
return $this->stateAfter;
}
}
Classes
Name | Description |
---|---|
WorkbenchModerationTransitionEvent | Defines a class for transition events. |