| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace Opentalent\OtTemplating\ViewHelpers\EventsPage;
- use Closure;
- use Opentalent\OtCore\Website\OtPageRepository;
- use Opentalent\OtCore\ViewHelpers\OtAbstractViewHelper;
- use Opentalent\OtCore\Website\OtWebsiteRepository;
- use TYPO3\CMS\Core\Utility\GeneralUtility;
- use TYPO3\CMS\Extbase\Object\ObjectManager;
- use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
- /**
- * Retrieves and returns the uid of the events' page of the current site
- * The events page is the first page found with the template 'OpenTalent.OtTemplating->events'
- * Returns null if no such page is found, or if the page is disabled
- *
- * Call it in fluid templates with:
- *
- * {namespace ot=Opentalent\OtTemplating\ViewHelpers}
- *
- * {ot:eventsPage.getId()}
- *
- * @package Opentalent\OtTemplating\ViewHelpers
- */
- class GetIdViewHelper extends OtAbstractViewHelper
- {
- public function __construct(
- private readonly OtPageRepository $otPageRepository,
- ) {}
- /**
- * -- This method is expected by Fluid --
- * Declares the viewhelper's parameters
- */
- public function initializeArguments(): void
- {
- $this->registerArgument(
- 'children',
- 'integer',
- 'If true, look for the events page of the children structures, instead of the current one',
- false,
- 0
- );
- }
- /**
- * -- This method is expected by Fluid --
- * Renders the content as html
- *
- * @return int|null
- */
- public function render(): ?int
- {
- $rootId = \Opentalent\OtTemplating\ViewHelpers\RootPage\GetIdViewHelper::renderStatic(
- $this->arguments,
- $this->renderChildrenClosure,
- $this->renderingContext
- );
- $subpages = $this->otPageRepository->getAllSubpagesForPage($rootId);
- $templateName = $this->arguments['children'] == 1 ?
- 'OpenTalent.OtTemplating->structuresEvents' :
- 'OpenTalent.OtTemplating->events';
- foreach ($subpages as $page) {
- if ($page['tx_fed_page_controller_action'] === $templateName
- & $page['deleted'] == 0
- & $page['hidden'] == 0
- ) {
- return $page['uid'];
- }
- }
- return null;
- }
- }
|