registerArgument( 'template', 'string', "The template's name", true ); } /** * -- This method is expected by Fluid -- * Renders the content as html * * @param array $arguments * @param Closure $renderChildrenClosure * @param RenderingContextInterface $renderingContext * @return int|null */ public static function renderStatic( array $arguments, Closure $renderChildrenClosure, RenderingContextInterface $renderingContext ) { $rootId = GetIdViewHelper::renderStatic( $arguments, $renderChildrenClosure, $renderingContext ); $pageRepository = GeneralUtility::makeInstance(ObjectManager::class)->get(OtPageRepository::class); $subpages = $pageRepository->getAllSubpagesForPage($rootId); $templateName = 'OpenTalent.OtTemplating->' . $arguments['template']; foreach ($subpages as $page) { if ($page['tx_fed_page_controller_action'] === $templateName & $page['deleted'] === 0 & $page['hidden'] === 0 ) { return $page['uid']; } } return null; } }