LtiToolProviderLaunchRedirectEvent.php in LTI Tool Provider 8
File
src/Event/LtiToolProviderLaunchRedirectEvent.php
View source
<?php
namespace Drupal\lti_tool_provider\Event;
use Drupal\lti_tool_provider\LtiToolProviderEvent;
class LtiToolProviderLaunchRedirectEvent extends LtiToolProviderEvent {
const EVENT_NAME = 'LTI_TOOL_PROVIDER_LAUNCH_REDIRECT_EVENT';
private $context;
private $destination;
public function __construct(array $context, string $destination) {
$this
->setContext($context);
$this
->setDestination($destination);
}
public function getContext() : array {
return $this->context;
}
public function setContext(array $context) {
$this->context = $context;
}
public function getDestination() : string {
return $this->destination;
}
public function setDestination(string $destination) : void {
$this->destination = $destination;
}
}