2 declare(strict_types = 1);
21 use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractTagBasedViewHelper;
88 parent::initializeArguments();
89 $this->registerUniversalTagAttributes();
90 $this->registerArgument(
'uid',
'int',
'uid < 0 will insert the record after the given uid',
false);
91 $this->registerArgument(
'pid',
'int',
'the page id where the record will be created',
false);
92 $this->registerArgument(
'table',
'string',
'target database table',
true);
93 $this->registerArgument(
'returnUrl',
'string',
'return to this URL after closing the edit dialog',
false,
'');
100 public function render(): string
102 if ($this->arguments[
'uid'] && $this->arguments[
'pid']) {
103 throw new \InvalidArgumentException(
'Can\'t handle both uid and pid for new records', 1526129969);
105 if (isset($this->arguments[
'uid']) && $this->arguments[
'uid'] >= 0) {
106 throw new \InvalidArgumentException(
'Uid must be negative integer, ' . $this->arguments[
'uid'] .
' given', 1526134901);
109 if (empty($this->arguments[
'returnUrl'])) {
110 $this->arguments[
'returnUrl'] = GeneralUtility::getIndpEnv(
'REQUEST_URI');
114 'edit' => [$this->arguments[
'table'] => [$this->arguments[
'uid'] ?? $this->arguments[
'pid'] ?? 0 =>
'new']],
115 'returnUrl' => $this->arguments[
'returnUrl']
117 $uriBuilder = GeneralUtility::makeInstance(UriBuilder::class);
118 $uri = (string)$uriBuilder->buildUriFromRoute(
'record_edit', $params);
119 $this->tag->addAttribute(
'href', $uri);
120 $this->tag->setContent($this->renderChildren());
121 $this->tag->forceClosingTag(
true);
122 return $this->tag->render();