|
1
|
|
|
<?php |
|
2
|
|
|
namespace Romm\Formz\Controller; |
|
3
|
|
|
|
|
4
|
|
|
use TYPO3\CMS\Extbase\Mvc\RequestInterface; |
|
5
|
|
|
use TYPO3\CMS\Extbase\Mvc\ResponseInterface; |
|
6
|
|
|
use TYPO3\CMS\Extbase\Mvc\Web\Request; |
|
7
|
|
|
|
|
8
|
|
|
trait FormzActionControllerTrait |
|
9
|
|
|
{ |
|
10
|
|
|
/** |
|
11
|
|
|
* @var FormzControllerContext |
|
12
|
|
|
*/ |
|
13
|
|
|
protected $formzControllerContext; |
|
14
|
|
|
|
|
15
|
|
|
/** |
|
16
|
|
|
* This function will dispatch the request to the form controller, which |
|
17
|
|
|
* will process the request with FormZ configuration. |
|
18
|
|
|
* |
|
19
|
|
|
* @param RequestInterface $request |
|
20
|
|
|
* @param ResponseInterface $response |
|
21
|
|
|
*/ |
|
22
|
|
|
public function processRequest(RequestInterface $request, ResponseInterface $response) |
|
23
|
|
|
{ |
|
24
|
|
|
if (false === $this->formzControllerContext->isDispatched()) { |
|
25
|
|
|
$this->request = $request; |
|
|
|
|
|
|
26
|
|
|
$this->actionMethodName = $this->resolveActionMethodName(); |
|
|
|
|
|
|
27
|
|
|
|
|
28
|
|
|
$this->initializeActionMethodArguments(); |
|
|
|
|
|
|
29
|
|
|
$this->initializeActionMethodValidators(); |
|
|
|
|
|
|
30
|
|
|
$this->mvcPropertyMappingConfigurationService->initializePropertyMappingConfigurationFromRequest($request, $this->arguments); |
|
|
|
|
|
|
31
|
|
|
|
|
32
|
|
|
/** @var Request $request */ |
|
33
|
|
|
$this->formzControllerContext->setRequest(clone $request); |
|
34
|
|
|
$this->formzControllerContext->setArguments($this->arguments); |
|
35
|
|
|
|
|
36
|
|
|
$this->forward('processForm', 'Form', 'Formz', $request->getArguments()); |
|
|
|
|
|
|
37
|
|
|
} else { |
|
38
|
|
|
/** @noinspection PhpUndefinedMethodInspection */ |
|
39
|
|
|
parent::processRequest($request, $response); |
|
40
|
|
|
} |
|
41
|
|
|
} |
|
42
|
|
|
|
|
43
|
|
|
/** |
|
44
|
|
|
* @param FormzControllerContext $formzControllerContext |
|
45
|
|
|
*/ |
|
46
|
|
|
public function injectFormzControllerContext(FormzControllerContext $formzControllerContext) |
|
47
|
|
|
{ |
|
48
|
|
|
$this->formzControllerContext = $formzControllerContext; |
|
49
|
|
|
} |
|
50
|
|
|
} |
|
51
|
|
|
|
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion: