2 declare(strict_types = 1);
21 use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
22 use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractTagBasedViewHelper;
23 use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileWithRenderStatic;
67 use CompileWithRenderStatic;
71 $this->registerArgument(
'uid',
'int',
'uid < 0 will insert the record after the given uid',
false);
72 $this->registerArgument(
'pid',
'int',
'the page id where the record will be created',
false);
73 $this->registerArgument(
'table',
'string',
'target database table',
true);
74 $this->registerArgument(
'returnUrl',
'string',
'',
false,
'');
85 public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext): string
87 if ($arguments[
'uid'] && $arguments[
'pid']) {
88 throw new \InvalidArgumentException(
'Can\'t handle both uid and pid for new records', 1526136338);
90 if (isset($arguments[
'uid']) && $arguments[
'uid'] >= 0) {
91 throw new \InvalidArgumentException(
'Uid must be negative integer, ' . $arguments[
'uid'] .
' given', 1526136362);
94 if (empty($arguments[
'returnUrl'])) {
95 $arguments[
'returnUrl'] = GeneralUtility::getIndpEnv(
'REQUEST_URI');
99 'edit' => [$arguments[
'table'] => [$arguments[
'uid'] ?? $arguments[
'pid'] ?? 0 =>
'new']],
100 'returnUrl' => $arguments[
'returnUrl']
102 $uriBuilder = GeneralUtility::makeInstance(UriBuilder::class);
103 return (
string)$uriBuilder->buildUriFromRoute(
'record_edit', $params);