LtiToolProviderProvisionEvent.php in LTI Tool Provider 2.x
File
modules/lti_tool_provider_provision/src/Event/LtiToolProviderProvisionEvent.php
View source
<?php
namespace Drupal\lti_tool_provider_provision\Event;
use Drupal\Core\Entity\EntityInterface;
use Drupal\lti_tool_provider\LtiToolProviderEvent;
class LtiToolProviderProvisionEvent extends LtiToolProviderEvent {
const EVENT_NAME = 'LTI_TOOL_PROVIDER_PROVISION_EVENT';
private $context;
private $entity;
private $destination;
public function __construct(array $context, EntityInterface $entity, string $destination) {
$this
->setContext($context);
$this
->setEntity($entity);
$this
->setDestination($destination);
}
public function getContext() : array {
return $this->context;
}
public function setContext(array $context) {
$this->context = $context;
}
public function getEntity() : EntityInterface {
return $this->entity;
}
public function setEntity(EntityInterface $entity) : void {
$this->entity = $entity;
}
public function getDestination() : string {
return $this->destination;
}
public function setDestination(string $destination) : void {
$this->destination = $destination;
}
}