Prepopulate configurator form

This commit is contained in:
Björn Fromme
2018-07-31 14:41:59 +02:00
parent 340261220c
commit 6160703361
5 changed files with 40 additions and 8 deletions
@@ -51,9 +51,17 @@ class FormController extends ActionController
$this->view->assign('inquiry', $inquiry);
}
public function configuratorAction()
/**
* @param int $travelType
* @param int $locationType
*/
public function configuratorAction($travelType = 0, $locationType = 0)
{
$inquiry = $this->getInquiryFromContext();
if ($travelType !== 0) {
$inquiry = Inquiry::fromArguments($travelType, $locationType);
} else {
$inquiry = $this->getInquiryFromContext();
}
$this->view->assign('inquiry', $inquiry);
}