From f7234b8a56a3864fde2b613e8f7ceea03b1aa854 Mon Sep 17 00:00:00 2001 From: Jo Hasenau <info@cybercraft.de> Date: Fri, 29 Nov 2019 11:44:51 +0100 Subject: [PATCH] [BUGFIX] Provide necessary info for NewContentElementWizardHook again Due to deprecations (in v9) and marking properties from public to protected, some hooks are not as powerful anymore, so special getter methods are provided to overcome this issue. Resolves: #87064 Releases: master, 9.5 Change-Id: I5a05bb8b31c2a9df2801092bd9ead60061bbd15f Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/62480 Tested-by: Georg Ringer <georg.ringer@gmail.com> Tested-by: TYPO3com <noreply@typo3.com> Tested-by: Benni Mack <benni@typo3.org> Reviewed-by: Georg Ringer <georg.ringer@gmail.com> Reviewed-by: Benni Mack <benni@typo3.org> --- .../NewContentElementController.php | 41 +++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/typo3/sysext/backend/Classes/Controller/ContentElement/NewContentElementController.php b/typo3/sysext/backend/Classes/Controller/ContentElement/NewContentElementController.php index 87cd00702bf4..4f78f20a0694 100644 --- a/typo3/sysext/backend/Classes/Controller/ContentElement/NewContentElementController.php +++ b/typo3/sysext/backend/Classes/Controller/ContentElement/NewContentElementController.php @@ -573,6 +573,7 @@ class NewContentElementController /** * @param string $filename * @return StandaloneView + * @throws \TYPO3\CMS\Extbase\Mvc\Exception\InvalidExtensionNameException */ protected function getFluidTemplateObject(string $filename = 'Main.html'): StandaloneView { @@ -582,4 +583,44 @@ class NewContentElementController $view->getRequest()->setControllerExtensionName('Backend'); return $view; } + + /** + * Provide information about the current page making use of the wizard + * + * @return array + */ + public function getPageInfo(): array + { + return $this->pageInfo; + } + + /** + * Provide information about the column position of the button that triggered the wizard + * + * @return int|null + */ + public function getColPos(): ?int + { + return $this->colPos; + } + + /** + * Provide information about the language used while triggering the wizard + * + * @return int + */ + public function getSysLanguage(): int + { + return $this->sys_language; + } + + /** + * Provide information about the element to position the new element after (uid) or into (pid) + * + * @return int + */ + public function getUidPid(): int + { + return $this->uid_pid; + } } -- GitLab