WizardEvent.php in Chaos Tool Suite (ctools) 8.3
File
src/Event/WizardEvent.php
View source
<?php
namespace Drupal\ctools\Event;
use Drupal\ctools\Wizard\FormWizardInterface;
use Symfony\Component\EventDispatcher\Event;
class WizardEvent extends Event {
protected $wizard;
protected $values;
public function __construct(FormWizardInterface $wizard, $values) {
$this->wizard = $wizard;
$this->values = $values;
}
public function getWizard() {
return $this->wizard;
}
public function getValues() {
return $this->values;
}
public function setValues($values) {
$this->values = $values;
return $this;
}
}