Prepopulate configurator form
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user