
| Current Path : /var/www/html/c12park/web/modules/contrib/ctools/src/Event/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/c12park/web/modules/contrib/ctools/src/Event/WizardEvent.php |
<?php
namespace Drupal\ctools\Event;
use Drupal\ctools\Wizard\FormWizardInterface;
use Drupal\Component\EventDispatcher\Event;
/**
* An event for altering form wizard values.
*/
class WizardEvent extends Event {
/**
* @var \Drupal\ctools\Wizard\FormWizardInterface
*/
protected $wizard;
/**
* @var mixed
*/
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;
}
}