Merge branch 'develop' into feature/stimulus

This commit is contained in:
Björn Fromme
2021-09-10 12:10:11 +02:00
9 changed files with 405 additions and 91 deletions
@@ -44,18 +44,6 @@ class FormController extends ActionController
$this->view->assign('contactForm', $contactForm);
}
/**
* @param ContactForm $contactForm
*/
public function fullFormAction(ContactForm $contactForm = null)
{
if ($contactForm === null) {
$pageUrl = $this->getCurrentPageUrl();
$contactForm = new ContactForm($pageUrl, ContactForm::FORM_TYPE_FULL);
}
$this->view->assign('contactForm', $contactForm);
}
/**
* @return string
*/