23 lines
573 B
PHP
Executable File
23 lines
573 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Evomedien\Vitec\Controller;
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;
|
|
|
|
/**
|
|
* FormController — Extbase registration target for the VITEC form plugins
|
|
* (Contactform, Demoform, Helpdeskform). In headless mode the JSON output
|
|
* is produced by FormsJsonRenderer; submissions are handled by
|
|
* FormSubmissionMiddleware.
|
|
*/
|
|
class FormController extends ActionController
|
|
{
|
|
public function listAction(): ResponseInterface
|
|
{
|
|
return $this->htmlResponse();
|
|
}
|
|
}
|