X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fmodules%2Fcontrib%2Fctools%2Fsrc%2FEvent%2FWizardEvent.php;fp=web%2Fmodules%2Fcontrib%2Fctools%2Fsrc%2FEvent%2FWizardEvent.php;h=7123297e3da95f241954db745b4a89df496f6f6d;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hp=0000000000000000000000000000000000000000;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad;p=yaffs-website diff --git a/web/modules/contrib/ctools/src/Event/WizardEvent.php b/web/modules/contrib/ctools/src/Event/WizardEvent.php new file mode 100644 index 000000000..7123297e3 --- /dev/null +++ b/web/modules/contrib/ctools/src/Event/WizardEvent.php @@ -0,0 +1,41 @@ +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; + } + +}