cObj->data ?? null) ? $this->cObj->data : null; if ($row && (string)($row['CType'] ?? '') === 'vitec_usecaselist') { return $this->renderForRecord($row); } $pageId = 0; $request = $GLOBALS['TYPO3_REQUEST'] ?? null; if ($request !== null) { $pageInfo = $request->getAttribute('frontend.page.information'); if ($pageInfo !== null) { $pageId = (int)$pageInfo->getId(); } } if ($pageId <= 0) { $pageId = (int)($GLOBALS['TSFE']->id ?? 0); } if ($pageId <= 0) { return ''; } $qb = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('tt_content'); $ces = $qb ->select('*') ->from('tt_content') ->where( $qb->expr()->eq('pid', $qb->createNamedParameter($pageId, ParameterType::INTEGER)), $qb->expr()->eq('CType', $qb->createNamedParameter('vitec_usecaselist', ParameterType::STRING)), $qb->expr()->eq('deleted', 0), $qb->expr()->eq('hidden', 0) ) ->executeQuery() ->fetchAllAssociative(); if (empty($ces)) { return ''; } return $this->renderForRecord($ces[0]); } /** * @param array $contentElement */ public function renderForRecord(array $contentElement): string { try { // Detail context: when the request carries a story argument the // list stays silent — the usecaseshow plugin on the same page // renders the story. Keeps old SEO URLs on one page. $request = $GLOBALS['TYPO3_REQUEST'] ?? null; $routing = $request?->getAttribute('routing'); $detailParam = null; if ($routing instanceof \TYPO3\CMS\Core\Routing\PageArguments) { $detailParam = $routing->getRouteArguments()['tx_vitec_usecaseshow']['usecase'] ?? null; } if ($detailParam === null || $detailParam === '') { $detailParam = ($request?->getQueryParams() ?? [])['tx_vitec_usecaseshow']['usecase'] ?? null; } if ($detailParam !== null && $detailParam !== '') { return ''; } $flexFormService = GeneralUtility::makeInstance(FlexFormService::class); $flexFormData = $flexFormService->convertFlexFormContentToArray($contentElement['pi_flexform'] ?? ''); $settings = $flexFormData['settings'] ?? []; $debugMode = (bool)($settings['debug'] ?? false); $qb = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable(self::TABLE); $rows = $qb ->select('*') ->from(self::TABLE) ->where( $qb->expr()->eq('deleted', 0), $qb->expr()->eq('hidden', 0), $qb->expr()->eq('hideonwebsite', 0) ) ->orderBy('featured', 'DESC') ->addOrderBy('title', 'ASC') ->executeQuery() ->fetchAllAssociative(); $serializer = GeneralUtility::makeInstance(UsecaseSerializer::class); // Detail links: the PUBLIC URL is the PARENT path of the // FlexForm-selected "Single PID" page plus the story slug — // /success-stories/, not /success-stories/story/. // The SuccessStoryPathRewrite middleware maps it back to the // detail subpage at request time. $singlePid = (int)($settings['singlePid'] ?? 0); $detailBase = ''; if ($singlePid > 0) { $detailPath = rtrim($this->resolvePageUrl($singlePid), '/'); $parent = str_contains($detailPath, '/') ? substr($detailPath, 0, (int)strrpos($detailPath, '/')) : ''; $detailBase = $parent !== '' ? $parent : $detailPath; } $usecases = array_map( static function (array $u) use ($serializer, $detailBase): array { $item = $serializer->serializeListItem($u); $item['detailUrl'] = ($detailBase !== '' && ($item['slug'] ?? '') !== '') ? $detailBase . '/' . ltrim((string)$item['slug'], '/') : null; return $item; }, $rows ); if ($debugMode) { return (string)json_encode([ 'usecases' => $usecases, 'debug' => ['count' => count($usecases), 'settings' => $settings], ]); } return (string)json_encode($usecases); } catch (\Throwable $e) { return ''; } } /** Resolve a page uid to its frontend path (route enhancer aware). */ private function resolvePageUrl(int $pageUid): string { try { $cObj = GeneralUtility::makeInstance(\TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer::class); return (string)$cObj->typoLink_URL(['parameter' => (string)$pageUid]); } catch (\Throwable $e) { return ''; } } }