Whoops, looks like something went wrong.

Get help in the TYPO3 Documentation

If you need help solving this exception, you can have a look at the TYPO3 Documentation. There you can find solutions provided by the TYPO3 community. Once you have found a solution to the problem, help others by contributing to the documentation page.

Find a solution for this exception in the TYPO3 Documentation.

(1/1) #1509296606 RuntimeException

Failed to fetch error page "https://www.vilavitamarburg.de/HTTP/1.0 404 Not Found", reason: Client error: `GET https://www.vilavitamarburg.de/HTTP/1.0%20404%20Not%20Found` resulted in a `404 Not Found` response: <!DOCTYPE html><html lang="de-DE"><head> <script id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="179 (truncated...)

in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php line 2153
            ];
            $report = [];
            $res = GeneralUtility::getUrl($code, 1, $headerArr, $report);
            if ((int)$report['error'] !== 0 && (int)$report['error'] !== 200) {
                throw new \RuntimeException('Failed to fetch error page "' . $code . '", reason: ' . $report['message'], 1509296606);
            }
            // Header and content are separated by an empty line
            list($header, $content) = explode(CRLF . CRLF, $res, 2);
            $content .= CRLF;
at TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController->pageErrorHandler('https://www.vilavitamarburg.de/HTTP/1.0 404 Not Found', 'HTTP/1.0 404 Not Found', 'No news entry found.')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php line 2061
     */
    public function pageNotFoundHandler($code, $header = '', $reason = '')
    {
        trigger_error('$TSFE->pageNotFoundHandler() will be removed in TYPO3 v10.0. Use TYPO3\'s ErrorController with Request/Response objects instead.', E_USER_DEPRECATED);
        $this->pageErrorHandler($code, $header, $reason);
    }

    /**
     * Generic error page handler.
at TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController->pageNotFoundHandler('HTTP/1.0 404 Not Found', 'HTTP/1.0 404 Not Found', 'No news entry found.')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php line 2008
    public function pageNotFoundAndExit($reason = '', $header = '')
    {
        trigger_error('$TSFE->pageNotFoundAndExit() will be removed in TYPO3 v10.0. Use TYPO3\'s ErrorController with Request/Response objects instead.', E_USER_DEPRECATED);
        $header = $header ?: $GLOBALS['TYPO3_CONF_VARS']['FE']['pageNotFound_handling_statheader'];
        $this->pageNotFoundHandler($GLOBALS['TYPO3_CONF_VARS']['FE']['pageNotFound_handling'], $header, $reason);
        die;
    }

    /**
at TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController->pageNotFoundAndExit('No news entry found.')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3conf/ext/news/Classes/Controller/NewsBaseController.php line 124
                break;
            case 'pageNotFoundHandler':
                $typo3Information = GeneralUtility::makeInstance(Typo3Version::class);
                if ($typo3Information->getMajorVersion() === 9) {
                    $GLOBALS['TSFE']->pageNotFoundAndExit('No news entry found.');
                } else {
                    $message = 'No news entry found!';
                    $response = GeneralUtility::makeInstance(ErrorController::class)->pageNotFoundAction(
                        $GLOBALS['TYPO3_REQUEST'],
at GeorgRinger\News\Controller\NewsBaseController->handleNoNewsFoundError(array('pageNotFoundHandler'))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3conf/ext/news/Classes/Controller/NewsController.php line 392
                $provider = GeneralUtility::makeInstance($providerClass);
                $provider->setTitleByNews($news, $providerConfiguration);
            }
        } elseif (isset($this->settings['detail']['errorHandling'])) {
            $errorContent = $this->handleNoNewsFoundError($this->settings['detail']['errorHandling']);
            if ($errorContent) {
                return $errorContent;
            }
        }
at GeorgRinger\News\Controller\NewsController->detailAction(null, 1)
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 318
        }
        $validationResult = $this->arguments->validate();
        if (!$validationResult->hasErrors()) {
            $this->emitBeforeCallActionMethodSignal($preparedArguments);
            $actionResult = $this->{$this->actionMethodName}(...$preparedArguments);
        } else {
            $actionResult = $this->{$this->errorMethodName}();
        }

at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->callActionMethod()
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 167
        $this->view = $this->resolveView();
        if ($this->view !== null) {
            $this->initializeView($this->view);
        }
        $this->callActionMethod();
        $this->renderAssetsForRequest($request);
    }

    /**
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3conf/ext/news/Classes/Controller/NewsBaseController.php line 54
     */
    public function processRequest(RequestInterface $request, ResponseInterface $response)
    {
        try {
            parent::processRequest($request, $response);
        } catch (\Exception $exception) {
            $this->handleKnownExceptionsElseThrowAgain($exception);
        }
    }
at GeorgRinger\News\Controller\NewsBaseController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 73
                throw new \TYPO3\CMS\Extbase\Mvc\Exception\InfiniteLoopException('Could not ultimately dispatch the request after ' . $dispatchLoopCount . ' iterations. Most probably, a @' . \TYPO3\CMS\Extbase\Annotation\IgnoreValidation::class . ' annotation is missing on re-displaying a form with validation errors.', 1217839467);
            }
            $controller = $this->resolveController($request);
            try {
                $controller->processRequest($request, $response);
            } catch (\TYPO3\CMS\Extbase\Mvc\Exception\StopActionException $ignoredException) {
            }
        }
        $this->emitAfterRequestDispatchSignal($request, $response);
at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 92
        }

        /** @var \TYPO3\CMS\Extbase\Mvc\ResponseInterface $response */
        $response = $this->objectManager->get(\TYPO3\CMS\Extbase\Mvc\Web\Response::class);
        $this->dispatcher->dispatch($request, $response);
        return $response;
    }

    /**
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest()
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 172
        /** @var \TYPO3\CMS\Extbase\Mvc\RequestHandlerResolver $requestHandlerResolver */
        $requestHandlerResolver = $this->objectManager->get(\TYPO3\CMS\Extbase\Mvc\RequestHandlerResolver::class);
        $requestHandler = $requestHandlerResolver->resolveRequestHandler();

        $response = $requestHandler->handleRequest();
        // If response is NULL after handling the request we need to stop
        // This happens for instance, when a USER object was converted to a USER_INT
        // @see TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler::handleRequest()
        if ($response === null) {
at TYPO3\CMS\Extbase\Core\Bootstrap->handleRequest()
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 159
     */
    public function run($content, $configuration)
    {
        $this->initialize($configuration);
        return $this->handleRequest();
    }

    /**
     * @throws \TYPO3\CMS\Extbase\Mvc\Exception\CommandException Is thrown if the response object defined an exit code > 0
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'))
at call_user_func_array(array(object(TYPO3\CMS\Extbase\Core\Bootstrap), 'run'), array('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger')))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 6015
                        $classObj,
                        $parts[1]
                    ], [
                        $content,
                        $conf
                    ]);
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', 3);
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), '')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 41
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->INTincScript_process()!
            $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
        }
        $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
        if ($this->cObj->doConvertToUserIntObject) {
            $this->cObj->doConvertToUserIntObject = false;
            $content = $this->cObj->cObjGetSingle('USER_INT', $conf);
        } else {
at TYPO3\CMS\Frontend\ContentObject\UserContentObject->render(array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'tt_content.list.20.news_pi1')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 189
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'diautilities_autosuggestutility' => 'USER', 'diautilities_autosuggestutility.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaUtilities', 'pluginName' => 'AutoSuggestUtility', 'vendorName' => 'Dia'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'vendorName' => 'Reelworx'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'adventskalender_calendar' => 'USER', 'adventskalender_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Adventskalender', 'pluginName' => 'Calendar', 'vendorName' => 'CodingMs'), 'adventskalenderpro_lottery' => 'USER', 'adventskalenderpro_lottery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'AdventskalenderPro', 'pluginName' => 'Lottery', 'vendorName' => 'CodingMs'), 'diaevents_eventmanagement' => 'USER', 'diaevents_eventmanagement.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaEvents', 'pluginName' => 'Eventmanagement', 'vendorName' => 'Dia'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show', 'vendorName' => 'Clickstorm')), 'tt_content.list.20.news_pi1', 'news_pi1')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 166
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('uid' => 1126, 'pid' => 83, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1606907572, 'crdate' => 1486371146, 'cruser_id' => 6, 'editlock' => 0, 'hidden' => 0, 'sorting' => 256, 'CType' => 'list', 'header' => '', 'rowDescription' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => '0', 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => null, 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => 'news_pi1', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.orderBy"> <value index="vDEF"></value> </field> <field index="settings.orderDirection"> <value index="vDEF"></value> </field> <field index="settings.categories"> <value index="vDEF"></value> </field> <field index="settings.categoryConjunction"> <value index="vDEF"></value> </field> <field index="settings.includeSubCategories"> <value index="vDEF">0</value> </field> <field index="settings.archiveRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestrictionHigh"> <value index="vDEF"></value> </field> <field index="settings.topNewsRestriction"> <value index="vDEF"></value> </field> <field index="settings.startingpoint"> <value index="vDEF">77</value> </field> <field index="settings.recursive"> <value index="vDEF"></value> </field> <field index="settings.singleNews"> <value index="vDEF"></value> </field> <field index="settings.previewHiddenRecords"> <value index="vDEF">2</value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;detail</value> </field> <field index="settings.detailCategoryConjunction"> <value index="vDEF">or</value> </field> <field index="settings.detailCategories"> <value index="vDEF">54,53</value> </field> <field index="settings.detailIncludeSubCategories"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF">83</value> </field> <field index="settings.listPid"> <value index="vDEF"></value> </field> <field index="settings.backPid"> <value index="vDEF">15</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.tags"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.itemsPerPage"> <value index="vDEF"></value> </field> <field index="settings.topNewsFirst"> <value index="vDEF">0</value> </field> <field index="settings.excludeAlreadyDisplayedNews"> <value index="vDEF">0</value> </field> <field index="settings.disableOverrideDemand"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.ajaxPagination"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="template"> <language index="lDEF"> <field index="settings.media.maxWidth"> <value index="vDEF"></value> </field> <field index="settings.media.maxHeight"> <value index="vDEF"></value> </field> <field index="settings.cropMaxCharacters"> <value index="vDEF"></value> </field> <field index="settings.templateLayout"> <value index="vDEF"></value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:34:{s:5:"CType";N;s:6:"colPos";N;s:13:"dia_nav_title";N;s:6:"header";N;s:13:"header_layout";N;s:12:"header_style";N;s:15:"header_position";N;s:4:"date";N;s:12:"header_color";N;s:11:"header_link";N;s:9:"subheader";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:15:"dia_show_mobile";N;s:16:"dia_show_desktop";N;s:6:"layout";N;s:12:"height_class";N;s:11:"frame_class";N;s:18:"space_before_class";N;s:17:"space_after_class";N;s:24:"space_inner_before_class";N;s:23:"space_inner_after_class";N;s:12:"sectionIndex";N;s:9:"linkToTop";N;s:15:"dia_contentlink";N;s:16:"sys_language_uid";N;s:6:"hidden";N;s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:25:"tx_gridelements_container";N;}', 'selected_categories' => null, 'category_field' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'categories' => 0, 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '0', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'header_position' => '', 'dia_contentlink' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'tx_news_related_news' => 0, 'dia_nav_title' => '', 'tx_diacontent_classes' => null, 'l10n_source' => 0, 'frame_class' => 'none', 'space_before_class' => '', 'space_after_class' => '', 'filelink_sorting_direction' => '', 'table_class' => '', 'space_inner_before_class' => '', 'space_inner_after_class' => '', 'height_class' => '', 'header_style' => '0', 'header_color' => '0', 'teaser' => null, 'readmore_label' => '', 'quote_source' => '', 'quote_link' => '', 'panel_class' => 'default', 'file_folder' => null, 'icon' => '', 'icon_set' => '', 'icon_file' => 0, 'icon_position' => '', 'icon_size' => 'default', 'icon_type' => 'default', 'icon_color' => '', 'icon_background' => '', 'external_media_source' => '', 'external_media_ratio' => '', 'tx_bootstrappackage_card_group_item' => 0, 'tx_bootstrappackage_carousel_item' => 0, 'tx_bootstrappackage_accordion_item' => 0, 'tx_bootstrappackage_icon_group_item' => 0, 'tx_bootstrappackage_tab_item' => 0, 'tx_bootstrappackage_timeline_item' => 0, 'background_color_class' => '', 'background_image' => 0, 'background_image_options' => null, 'tx_yoastseo_linking_suggestions' => 0, 'button_display_block' => 0, 'l10n_state' => null, 'gridelements_shortcut_page_order_by' => 0, 'dia_show_mobile' => 0, 'dia_show_desktop' => 0, 'subheader_color' => null), 'typoscriptObjectPath' => 'tt_content.list.20.news_pi1', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/var/cache/code/fluid_template/Standard_action_List_3508b8ec66dde419fd965aec8b4cabfbd9de3411.php line 69
$array11 = array (
);$arguments7['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array11);
$arguments7['table'] = 'tt_content';
$renderChildrenClosure8 = ($arguments7['data'] !== null) ? function() use ($arguments7) { return $arguments7['data']; } : $renderChildrenClosure8;
$output6 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments7, $renderChildrenClosure8, $renderingContext);

$output6 .= '
    ';
return $output6;
at Standard_action_List_3508b8ec66dde419fd965aec8b4cabfbd9de3411->{closure}()
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 79
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure)), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/var/cache/code/fluid_template/Standard_action_List_3508b8ec66dde419fd965aec8b4cabfbd9de3411.php line 94
     $renderingContext
    );
$arguments1['__thenClosure'] = $renderChildrenClosure2;

$output0 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '
';

at Standard_action_List_3508b8ec66dde419fd965aec8b4cabfbd9de3411->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 258
                    new InvalidSectionException('Section "' . $sectionName . '" does not exist.')
                );
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('Main', array(), true)
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 172
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'Main', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array(), 'optional' => true, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/var/cache/code/fluid_template/layout_Default_html_ed2430a0d7732e2944a18e3aea0850b24b3d9853.php line 3310
     ),
     $renderingContext
    );

$output229 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments249, $renderChildrenClosure250, $renderingContext);

$output229 .= '
                        ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_ed2430a0d7732e2944a18e3aea0850b24b3d9853->{closure}()
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/var/cache/code/fluid_template/layout_Default_html_ed2430a0d7732e2944a18e3aea0850b24b3d9853.php line 3434
$output229 .= '
                    </div>
                ';
return $output229;
});
}
}, array($arguments67));

$output66 .= '
at layout_Default_html_ed2430a0d7732e2944a18e3aea0850b24b3d9853->{closure}(array('expression' => 'none'))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/var/cache/code/fluid_template/layout_Default_html_ed2430a0d7732e2944a18e3aea0850b24b3d9853.php line 3436
                ';
return $output229;
});
}
}, array($arguments67));

$output66 .= '
        ';
return $output66;
at layout_Default_html_ed2430a0d7732e2944a18e3aea0850b24b3d9853->{closure}()
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3conf/ext/dia_site_common/Classes/ViewHelpers/ContentLinkViewHelper.php line 16
     * @inheritDoc
     */
    public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
    {
        $content = (string)$renderChildrenClosure();

        if (!empty($arguments['parameter']) && !preg_match('/<a /', $content)) {
            $content = parent::renderStatic($arguments, $renderChildrenClosure, $renderingContext);
        }
at Dia\DiaSiteCommon\ViewHelpers\ContentLinkViewHelper::renderStatic(array('parameter' => '', 'target' => '', 'class' => 'link-box', 'title' => '', 'additionalParams' => '', 'additionalAttributes' => array(), 'useCacheHash' => false, 'addQueryString' => false, 'addQueryStringMethod' => 'GET', 'addQueryStringExclude' => '', 'absolute' => false), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/var/cache/code/fluid_template/layout_Default_html_ed2430a0d7732e2944a18e3aea0850b24b3d9853.php line 3459
$array65 = array (
);$arguments63['parameter'] = $renderingContext->getVariableProvider()->getByPath('data.dia_contentlink', $array65);
$arguments63['class'] = 'link-box';

$output3 .= Dia\DiaSiteCommon\ViewHelpers\ContentLinkViewHelper::renderStatic($arguments63, $renderChildrenClosure64, $renderingContext);

$output3 .= '
    </div>
';
at layout_Default_html_ed2430a0d7732e2944a18e3aea0850b24b3d9853->{closure}()
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 61
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', (string)$childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic(array(), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/var/cache/code/fluid_template/layout_Default_html_ed2430a0d7732e2944a18e3aea0850b24b3d9853.php line 3468
return $output3;
};
$arguments1 = array();

$output0 .= TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '

';
at layout_Default_html_ed2430a0d7732e2944a18e3aea0850b24b3d9853->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 200
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 358
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 107

        $this->view->assignMultiple($variables);

        $this->renderFluidTemplateAssetsIntoPageRenderer();
        $content = $this->renderFluidView();
        $content = $this->applyStandardWrapToRenderedContent($content, $conf);

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('extbase.' => array('controllerExtensionName' => 'dia_site'), 'layoutRootPaths.' => array('EXT:dia_site/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_ce/Resources/Private/Layouts/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_common/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_common/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/ContentElements/'), 'partialRootPaths.' => array('EXT:dia_site/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_ce/Resources/Private/Partials/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:dia_site/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_common/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_common/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/ContentElements/'), 'templateRootPaths.' => array('EXT:dia_site/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_ce/Resources/Private/Templates/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:dia_site/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_common/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_common/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/ContentElements/'), 'variables.' => array('frameClasses' => 'COA', 'frameClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '200.' => array('field' => 'tx_diacontent_classes', 'required' => '1', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '.', 'replace.' => array('char' => '32')), '20.' => array('search' => ',', 'replace.' => array('char' => '32')))), 'noTrimWrap' => '| ||'), 'TEXT', '10.' => array('field' => 'frame_class', 'required' => '1', 'wrap' => 'frame-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'CType', 'required' => '1', 'wrap' => 'frame-type-|', 'noTrimWrap' => '| ||', 'override.' => array('field' => 'list_type', 'wrap' => 'plugin-|', 'if.' => array('value' => 'list', 'equals.' => array('field' => 'CType')))), 'TEXT', '30.' => array('field' => 'layout', 'required' => '1', 'wrap' => 'frame-layout-|', 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('value' => 'hidden-md hidden-lg', 'if.' => array('isTrue.' => array('field' => 'dia_show_mobile')), 'noTrimWrap' => '| ||'), 'TEXT', '50.' => array('value' => 'hidden-xs hidden-sm', 'if.' => array('isTrue.' => array('field' => 'dia_show_desktop')), 'noTrimWrap' => '| ||')), 'headerClasses' => 'COA', 'headerClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '20.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||'), 'TEXT', '30.' => array('field' => 'header_style', 'required' => '1', 'if.' => array('value.' => array('field' => 'header_style'), 'equals.' => array('field' => 'header_layout'), 'negate' => '1'), 'stdWrap.' => array('prioriCalc' => 'intval', 'wrap' => 'h|', 'if.' => array('isTrue.' => array('field' => 'header_style'))), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'header_color', 'required' => '1', 'wrap' => 'header-color-|', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'header_color')))), 'backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'frameSpaceBeforeClasses' => 'COA', 'frameSpaceBeforeClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'space_before_class', 'required' => '1', 'wrap' => 'frame-space-before-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'space_inner_before_class', 'required' => '1', 'wrap' => 'frame-space-inner-before-|', 'noTrimWrap' => '| ||')), 'frameSpaceAfterClasses' => 'COA', 'frameSpaceAfterClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'space_after_class', 'required' => '1', 'wrap' => 'frame-space-after-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'space_inner_after_class', 'required' => '1', 'wrap' => 'frame-space-inner-after-|', 'noTrimWrap' => '| ||')), 'frameHeightClasses' => 'COA', 'frameHeightClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'height_class', 'required' => '1', 'wrap' => 'h-|', 'noTrimWrap' => '| ||')), 'elementClasses' => '< lib.contentElement.variables.frameClasses', 'elementClasses.' => array('10.' => array('wrap' => 'element-|'), '20.' => array('wrap' => 'element-type-|'), '30.' => array('wrap' => 'element-layout-|')), 'spaceClasses' => 'COA', 'spaceClasses.' => array('stdWrap.' => array('trim' => '1'), '< lib.contentElement.variables.frameSpaceBeforeClasses', '10.' => array('10.' => array('wrap' => 'margin-above-|'), '20.' => array('wrap' => 'margin-below-|')), '< lib.contentElement.variables.frameSpaceBeforeClasses', '20.' => array('10.' => array('wrap' => 'padding-above-|'), '20.' => array('wrap' => 'padding-below-|')), '< lib.contentElement.variables.frameHeightClasses', '30.' => array('10.' => array('wrap' => 'h-|'))), 'containerLayout' => 'TEXT', 'containerLayout.' => array('wrap3' => '{|}', 'dataWrap' => 'DB:tt_content:{field:tx_gridelements_container}:tx_gridelements_backend_layout', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'tx_gridelements_container'))), 'subHeaderClasses' => 'COA', 'subHeaderClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '20.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||'), 'TEXT', '30.' => array('field' => 'header_style', 'required' => '1', 'if.' => array('value.' => array('field' => 'header_style'), 'equals.' => array('field' => 'header_layout'), 'negate' => '1'), 'stdWrap.' => array('prioriCalc' => 'intval', 'wrap' => 'h|', 'if.' => array('isTrue.' => array('field' => 'header_style')), 'override.' => array('field' => 'header_style', 'dataWrap' => '|+1')), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'subheader_color', 'required' => '1', 'wrap' => 'header-color-|', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'subheader_color'))))), 'templateName' => 'List', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '1509614342.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532626753.' => array('fieldName' => 'background_image_options')), 'settings.' => array('header.' => array('defaultHeaderType' => '2', 'class' => 'element-header', 'date.' => array('format' => '%B %e, %Y')), 'subheader.' => array('class' => 'element-subheader'), 'lightbox.' => array('cssClass' => 'fresco', 'prefix' => 'data-fresco-group', 'image.' => array('maxHeight' => '1200', 'maxWidth' => '1200')), 'media.' => array('additionalConfig.' => array('autoplay' => '0', 'controls' => '1', 'loop' => '0', 'enablejsapi' => '1', 'showinfo' => '0', 'relatedVideos' => '0', 'modestbranding' => '0'), 'popup.' => array('linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="{field:uid}" data-fancybox="{field:uid}"')))), 'gallery.' => array('columns.' => array('1.' => array('class' => 'gallery-item-size-1'), '2.' => array('class' => 'gallery-item-size-2', 'multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1200', 'width' => '1920', 'height' => '', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'large.' => array('breakpoint' => '992', 'width' => '1200', 'height' => '', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'medium.' => array('breakpoint' => '768', 'width' => '992', 'height' => '558', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'small.' => array('breakpoint' => '576', 'width' => '768', 'height' => '432', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '576', 'height' => '432', 'sizes.' => array('1x.' => array('multiplier' => '1')))), 'backendlayout.' => array('2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '21.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '22.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'top.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'bottom.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))))), 'menuthumbnail.' => array('title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '80')), 'menucard.' => array('icon.' => array('enable' => '0', 'height' => '32', 'width' => '32c'), 'title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '100'), 'abstract.' => array('crop' => '250')), 'texticon.' => array('icon.' => array('default.' => array('height' => '32', 'width' => '32'), 'medium.' => array('height' => '48', 'width' => '48'), 'large.' => array('height' => '64', 'width' => '64'), 'awesome.' => array('height' => '80', 'width' => '80'))), 'timeline.' => array('date.' => array('format' => '%B %e, %Y - %H:%M')), 'uploads.' => array('preview.' => array('height' => '100c', 'width' => '100c'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'diautilities_autosuggestutility' => 'USER', 'diautilities_autosuggestutility.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaUtilities', 'pluginName' => 'AutoSuggestUtility', 'vendorName' => 'Dia'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'vendorName' => 'Reelworx'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'adventskalender_calendar' => 'USER', 'adventskalender_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Adventskalender', 'pluginName' => 'Calendar', 'vendorName' => 'CodingMs'), 'adventskalenderpro_lottery' => 'USER', 'adventskalenderpro_lottery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'AdventskalenderPro', 'pluginName' => 'Lottery', 'vendorName' => 'CodingMs'), 'diaevents_eventmanagement' => 'USER', 'diaevents_eventmanagement.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaEvents', 'pluginName' => 'Eventmanagement', 'vendorName' => 'Dia'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show', 'vendorName' => 'Clickstorm'))))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('extbase.' => array('controllerExtensionName' => 'dia_site'), 'layoutRootPaths.' => array('EXT:dia_site/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_ce/Resources/Private/Layouts/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_common/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_common/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/ContentElements/'), 'partialRootPaths.' => array('EXT:dia_site/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_ce/Resources/Private/Partials/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:dia_site/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_common/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_common/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/ContentElements/'), 'templateRootPaths.' => array('EXT:dia_site/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_ce/Resources/Private/Templates/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:dia_site/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_common/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_common/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/ContentElements/'), 'variables.' => array('frameClasses' => 'COA', 'frameClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '200.' => array('field' => 'tx_diacontent_classes', 'required' => '1', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '.', 'replace.' => array('char' => '32')), '20.' => array('search' => ',', 'replace.' => array('char' => '32')))), 'noTrimWrap' => '| ||'), 'TEXT', '10.' => array('field' => 'frame_class', 'required' => '1', 'wrap' => 'frame-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'CType', 'required' => '1', 'wrap' => 'frame-type-|', 'noTrimWrap' => '| ||', 'override.' => array('field' => 'list_type', 'wrap' => 'plugin-|', 'if.' => array('value' => 'list', 'equals.' => array('field' => 'CType')))), 'TEXT', '30.' => array('field' => 'layout', 'required' => '1', 'wrap' => 'frame-layout-|', 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('value' => 'hidden-md hidden-lg', 'if.' => array('isTrue.' => array('field' => 'dia_show_mobile')), 'noTrimWrap' => '| ||'), 'TEXT', '50.' => array('value' => 'hidden-xs hidden-sm', 'if.' => array('isTrue.' => array('field' => 'dia_show_desktop')), 'noTrimWrap' => '| ||')), 'headerClasses' => 'COA', 'headerClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '20.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||'), 'TEXT', '30.' => array('field' => 'header_style', 'required' => '1', 'if.' => array('value.' => array('field' => 'header_style'), 'equals.' => array('field' => 'header_layout'), 'negate' => '1'), 'stdWrap.' => array('prioriCalc' => 'intval', 'wrap' => 'h|', 'if.' => array('isTrue.' => array('field' => 'header_style'))), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'header_color', 'required' => '1', 'wrap' => 'header-color-|', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'header_color')))), 'backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'frameSpaceBeforeClasses' => 'COA', 'frameSpaceBeforeClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'space_before_class', 'required' => '1', 'wrap' => 'frame-space-before-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'space_inner_before_class', 'required' => '1', 'wrap' => 'frame-space-inner-before-|', 'noTrimWrap' => '| ||')), 'frameSpaceAfterClasses' => 'COA', 'frameSpaceAfterClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'space_after_class', 'required' => '1', 'wrap' => 'frame-space-after-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'space_inner_after_class', 'required' => '1', 'wrap' => 'frame-space-inner-after-|', 'noTrimWrap' => '| ||')), 'frameHeightClasses' => 'COA', 'frameHeightClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'height_class', 'required' => '1', 'wrap' => 'h-|', 'noTrimWrap' => '| ||')), 'elementClasses' => '< lib.contentElement.variables.frameClasses', 'elementClasses.' => array('10.' => array('wrap' => 'element-|'), '20.' => array('wrap' => 'element-type-|'), '30.' => array('wrap' => 'element-layout-|')), 'spaceClasses' => 'COA', 'spaceClasses.' => array('stdWrap.' => array('trim' => '1'), '< lib.contentElement.variables.frameSpaceBeforeClasses', '10.' => array('10.' => array('wrap' => 'margin-above-|'), '20.' => array('wrap' => 'margin-below-|')), '< lib.contentElement.variables.frameSpaceBeforeClasses', '20.' => array('10.' => array('wrap' => 'padding-above-|'), '20.' => array('wrap' => 'padding-below-|')), '< lib.contentElement.variables.frameHeightClasses', '30.' => array('10.' => array('wrap' => 'h-|'))), 'containerLayout' => 'TEXT', 'containerLayout.' => array('wrap3' => '{|}', 'dataWrap' => 'DB:tt_content:{field:tx_gridelements_container}:tx_gridelements_backend_layout', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'tx_gridelements_container'))), 'subHeaderClasses' => 'COA', 'subHeaderClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '20.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||'), 'TEXT', '30.' => array('field' => 'header_style', 'required' => '1', 'if.' => array('value.' => array('field' => 'header_style'), 'equals.' => array('field' => 'header_layout'), 'negate' => '1'), 'stdWrap.' => array('prioriCalc' => 'intval', 'wrap' => 'h|', 'if.' => array('isTrue.' => array('field' => 'header_style')), 'override.' => array('field' => 'header_style', 'dataWrap' => '|+1')), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'subheader_color', 'required' => '1', 'wrap' => 'header-color-|', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'subheader_color'))))), 'templateName' => 'List', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '1509614342.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532626753.' => array('fieldName' => 'background_image_options')), 'settings.' => array('header.' => array('defaultHeaderType' => '2', 'class' => 'element-header', 'date.' => array('format' => '%B %e, %Y')), 'subheader.' => array('class' => 'element-subheader'), 'lightbox.' => array('cssClass' => 'fresco', 'prefix' => 'data-fresco-group', 'image.' => array('maxHeight' => '1200', 'maxWidth' => '1200')), 'media.' => array('additionalConfig.' => array('autoplay' => '0', 'controls' => '1', 'loop' => '0', 'enablejsapi' => '1', 'showinfo' => '0', 'relatedVideos' => '0', 'modestbranding' => '0'), 'popup.' => array('linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="{field:uid}" data-fancybox="{field:uid}"')))), 'gallery.' => array('columns.' => array('1.' => array('class' => 'gallery-item-size-1'), '2.' => array('class' => 'gallery-item-size-2', 'multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1200', 'width' => '1920', 'height' => '', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'large.' => array('breakpoint' => '992', 'width' => '1200', 'height' => '', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'medium.' => array('breakpoint' => '768', 'width' => '992', 'height' => '558', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'small.' => array('breakpoint' => '576', 'width' => '768', 'height' => '432', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '576', 'height' => '432', 'sizes.' => array('1x.' => array('multiplier' => '1')))), 'backendlayout.' => array('2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '21.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '22.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'top.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'bottom.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))))), 'menuthumbnail.' => array('title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '80')), 'menucard.' => array('icon.' => array('enable' => '0', 'height' => '32', 'width' => '32c'), 'title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '100'), 'abstract.' => array('crop' => '250')), 'texticon.' => array('icon.' => array('default.' => array('height' => '32', 'width' => '32'), 'medium.' => array('height' => '48', 'width' => '48'), 'large.' => array('height' => '64', 'width' => '64'), 'awesome.' => array('height' => '80', 'width' => '80'))), 'timeline.' => array('date.' => array('format' => '%B %e, %Y - %H:%M')), 'uploads.' => array('preview.' => array('height' => '100c', 'width' => '100c'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'diautilities_autosuggestutility' => 'USER', 'diautilities_autosuggestutility.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaUtilities', 'pluginName' => 'AutoSuggestUtility', 'vendorName' => 'Dia'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'vendorName' => 'Reelworx'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'adventskalender_calendar' => 'USER', 'adventskalender_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Adventskalender', 'pluginName' => 'Calendar', 'vendorName' => 'CodingMs'), 'adventskalenderpro_lottery' => 'USER', 'adventskalenderpro_lottery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'AdventskalenderPro', 'pluginName' => 'Lottery', 'vendorName' => 'CodingMs'), 'diaevents_eventmanagement' => 'USER', 'diaevents_eventmanagement.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaEvents', 'pluginName' => 'Eventmanagement', 'vendorName' => 'Dia'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show', 'vendorName' => 'Clickstorm'))))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('extbase.' => array('controllerExtensionName' => 'dia_site'), 'layoutRootPaths.' => array('EXT:dia_site/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_ce/Resources/Private/Layouts/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_common/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_common/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/ContentElements/'), 'partialRootPaths.' => array('EXT:dia_site/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_ce/Resources/Private/Partials/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:dia_site/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_common/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_common/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/ContentElements/'), 'templateRootPaths.' => array('EXT:dia_site/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_ce/Resources/Private/Templates/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:dia_site/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_common/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_common/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/ContentElements/'), 'variables.' => array('frameClasses' => 'COA', 'frameClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '200.' => array('field' => 'tx_diacontent_classes', 'required' => '1', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '.', 'replace.' => array('char' => '32')), '20.' => array('search' => ',', 'replace.' => array('char' => '32')))), 'noTrimWrap' => '| ||'), 'TEXT', '10.' => array('field' => 'frame_class', 'required' => '1', 'wrap' => 'frame-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'CType', 'required' => '1', 'wrap' => 'frame-type-|', 'noTrimWrap' => '| ||', 'override.' => array('field' => 'list_type', 'wrap' => 'plugin-|', 'if.' => array('value' => 'list', 'equals.' => array('field' => 'CType')))), 'TEXT', '30.' => array('field' => 'layout', 'required' => '1', 'wrap' => 'frame-layout-|', 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('value' => 'hidden-md hidden-lg', 'if.' => array('isTrue.' => array('field' => 'dia_show_mobile')), 'noTrimWrap' => '| ||'), 'TEXT', '50.' => array('value' => 'hidden-xs hidden-sm', 'if.' => array('isTrue.' => array('field' => 'dia_show_desktop')), 'noTrimWrap' => '| ||')), 'headerClasses' => 'COA', 'headerClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '20.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||'), 'TEXT', '30.' => array('field' => 'header_style', 'required' => '1', 'if.' => array('value.' => array('field' => 'header_style'), 'equals.' => array('field' => 'header_layout'), 'negate' => '1'), 'stdWrap.' => array('prioriCalc' => 'intval', 'wrap' => 'h|', 'if.' => array('isTrue.' => array('field' => 'header_style'))), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'header_color', 'required' => '1', 'wrap' => 'header-color-|', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'header_color')))), 'backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'frameSpaceBeforeClasses' => 'COA', 'frameSpaceBeforeClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'space_before_class', 'required' => '1', 'wrap' => 'frame-space-before-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'space_inner_before_class', 'required' => '1', 'wrap' => 'frame-space-inner-before-|', 'noTrimWrap' => '| ||')), 'frameSpaceAfterClasses' => 'COA', 'frameSpaceAfterClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'space_after_class', 'required' => '1', 'wrap' => 'frame-space-after-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'space_inner_after_class', 'required' => '1', 'wrap' => 'frame-space-inner-after-|', 'noTrimWrap' => '| ||')), 'frameHeightClasses' => 'COA', 'frameHeightClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'height_class', 'required' => '1', 'wrap' => 'h-|', 'noTrimWrap' => '| ||')), 'elementClasses' => '< lib.contentElement.variables.frameClasses', 'elementClasses.' => array('10.' => array('wrap' => 'element-|'), '20.' => array('wrap' => 'element-type-|'), '30.' => array('wrap' => 'element-layout-|')), 'spaceClasses' => 'COA', 'spaceClasses.' => array('stdWrap.' => array('trim' => '1'), '< lib.contentElement.variables.frameSpaceBeforeClasses', '10.' => array('10.' => array('wrap' => 'margin-above-|'), '20.' => array('wrap' => 'margin-below-|')), '< lib.contentElement.variables.frameSpaceBeforeClasses', '20.' => array('10.' => array('wrap' => 'padding-above-|'), '20.' => array('wrap' => 'padding-below-|')), '< lib.contentElement.variables.frameHeightClasses', '30.' => array('10.' => array('wrap' => 'h-|'))), 'containerLayout' => 'TEXT', 'containerLayout.' => array('wrap3' => '{|}', 'dataWrap' => 'DB:tt_content:{field:tx_gridelements_container}:tx_gridelements_backend_layout', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'tx_gridelements_container'))), 'subHeaderClasses' => 'COA', 'subHeaderClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '20.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||'), 'TEXT', '30.' => array('field' => 'header_style', 'required' => '1', 'if.' => array('value.' => array('field' => 'header_style'), 'equals.' => array('field' => 'header_layout'), 'negate' => '1'), 'stdWrap.' => array('prioriCalc' => 'intval', 'wrap' => 'h|', 'if.' => array('isTrue.' => array('field' => 'header_style')), 'override.' => array('field' => 'header_style', 'dataWrap' => '|+1')), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'subheader_color', 'required' => '1', 'wrap' => 'header-color-|', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'subheader_color'))))), 'templateName' => 'List', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '1509614342.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532626753.' => array('fieldName' => 'background_image_options')), 'settings.' => array('header.' => array('defaultHeaderType' => '2', 'class' => 'element-header', 'date.' => array('format' => '%B %e, %Y')), 'subheader.' => array('class' => 'element-subheader'), 'lightbox.' => array('cssClass' => 'fresco', 'prefix' => 'data-fresco-group', 'image.' => array('maxHeight' => '1200', 'maxWidth' => '1200')), 'media.' => array('additionalConfig.' => array('autoplay' => '0', 'controls' => '1', 'loop' => '0', 'enablejsapi' => '1', 'showinfo' => '0', 'relatedVideos' => '0', 'modestbranding' => '0'), 'popup.' => array('linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="{field:uid}" data-fancybox="{field:uid}"')))), 'gallery.' => array('columns.' => array('1.' => array('class' => 'gallery-item-size-1'), '2.' => array('class' => 'gallery-item-size-2', 'multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1200', 'width' => '1920', 'height' => '', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'large.' => array('breakpoint' => '992', 'width' => '1200', 'height' => '', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'medium.' => array('breakpoint' => '768', 'width' => '992', 'height' => '558', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'small.' => array('breakpoint' => '576', 'width' => '768', 'height' => '432', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '576', 'height' => '432', 'sizes.' => array('1x.' => array('multiplier' => '1')))), 'backendlayout.' => array('2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '21.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '22.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'top.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'bottom.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))))), 'menuthumbnail.' => array('title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '80')), 'menucard.' => array('icon.' => array('enable' => '0', 'height' => '32', 'width' => '32c'), 'title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '100'), 'abstract.' => array('crop' => '250')), 'texticon.' => array('icon.' => array('default.' => array('height' => '32', 'width' => '32'), 'medium.' => array('height' => '48', 'width' => '48'), 'large.' => array('height' => '64', 'width' => '64'), 'awesome.' => array('height' => '80', 'width' => '80'))), 'timeline.' => array('date.' => array('format' => '%B %e, %Y - %H:%M')), 'uploads.' => array('preview.' => array('height' => '100c', 'width' => '100c'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'diautilities_autosuggestutility' => 'USER', 'diautilities_autosuggestutility.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaUtilities', 'pluginName' => 'AutoSuggestUtility', 'vendorName' => 'Dia'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'vendorName' => 'Reelworx'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'adventskalender_calendar' => 'USER', 'adventskalender_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Adventskalender', 'pluginName' => 'Calendar', 'vendorName' => 'CodingMs'), 'adventskalenderpro_lottery' => 'USER', 'adventskalenderpro_lottery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'AdventskalenderPro', 'pluginName' => 'Lottery', 'vendorName' => 'CodingMs'), 'diaevents_eventmanagement' => 'USER', 'diaevents_eventmanagement.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaEvents', 'pluginName' => 'Eventmanagement', 'vendorName' => 'Dia'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show', 'vendorName' => 'Clickstorm'))), 'lib.helperTemplate')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 719
                list($name, $conf) = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('extbase.' => array('controllerExtensionName' => 'dia_site'), 'layoutRootPaths.' => array('EXT:dia_site/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_ce/Resources/Private/Layouts/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_common/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_common/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/ContentElements/'), 'partialRootPaths.' => array('EXT:dia_site/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_ce/Resources/Private/Partials/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:dia_site/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_common/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_common/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/ContentElements/'), 'templateRootPaths.' => array('EXT:dia_site/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_ce/Resources/Private/Templates/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:dia_site/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_common/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_common/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/ContentElements/'), 'variables.' => array('frameClasses' => 'COA', 'frameClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '200.' => array('field' => 'tx_diacontent_classes', 'required' => '1', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '.', 'replace.' => array('char' => '32')), '20.' => array('search' => ',', 'replace.' => array('char' => '32')))), 'noTrimWrap' => '| ||'), 'TEXT', '10.' => array('field' => 'frame_class', 'required' => '1', 'wrap' => 'frame-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'CType', 'required' => '1', 'wrap' => 'frame-type-|', 'noTrimWrap' => '| ||', 'override.' => array('field' => 'list_type', 'wrap' => 'plugin-|', 'if.' => array('value' => 'list', 'equals.' => array('field' => 'CType')))), 'TEXT', '30.' => array('field' => 'layout', 'required' => '1', 'wrap' => 'frame-layout-|', 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('value' => 'hidden-md hidden-lg', 'if.' => array('isTrue.' => array('field' => 'dia_show_mobile')), 'noTrimWrap' => '| ||'), 'TEXT', '50.' => array('value' => 'hidden-xs hidden-sm', 'if.' => array('isTrue.' => array('field' => 'dia_show_desktop')), 'noTrimWrap' => '| ||')), 'headerClasses' => 'COA', 'headerClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '20.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||'), 'TEXT', '30.' => array('field' => 'header_style', 'required' => '1', 'if.' => array('value.' => array('field' => 'header_style'), 'equals.' => array('field' => 'header_layout'), 'negate' => '1'), 'stdWrap.' => array('prioriCalc' => 'intval', 'wrap' => 'h|', 'if.' => array('isTrue.' => array('field' => 'header_style'))), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'header_color', 'required' => '1', 'wrap' => 'header-color-|', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'header_color')))), 'backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'frameSpaceBeforeClasses' => 'COA', 'frameSpaceBeforeClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'space_before_class', 'required' => '1', 'wrap' => 'frame-space-before-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'space_inner_before_class', 'required' => '1', 'wrap' => 'frame-space-inner-before-|', 'noTrimWrap' => '| ||')), 'frameSpaceAfterClasses' => 'COA', 'frameSpaceAfterClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'space_after_class', 'required' => '1', 'wrap' => 'frame-space-after-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'space_inner_after_class', 'required' => '1', 'wrap' => 'frame-space-inner-after-|', 'noTrimWrap' => '| ||')), 'frameHeightClasses' => 'COA', 'frameHeightClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'height_class', 'required' => '1', 'wrap' => 'h-|', 'noTrimWrap' => '| ||')), 'elementClasses' => '< lib.contentElement.variables.frameClasses', 'elementClasses.' => array('10.' => array('wrap' => 'element-|'), '20.' => array('wrap' => 'element-type-|'), '30.' => array('wrap' => 'element-layout-|')), 'spaceClasses' => 'COA', 'spaceClasses.' => array('stdWrap.' => array('trim' => '1'), '< lib.contentElement.variables.frameSpaceBeforeClasses', '10.' => array('10.' => array('wrap' => 'margin-above-|'), '20.' => array('wrap' => 'margin-below-|')), '< lib.contentElement.variables.frameSpaceBeforeClasses', '20.' => array('10.' => array('wrap' => 'padding-above-|'), '20.' => array('wrap' => 'padding-below-|')), '< lib.contentElement.variables.frameHeightClasses', '30.' => array('10.' => array('wrap' => 'h-|'))), 'containerLayout' => 'TEXT', 'containerLayout.' => array('wrap3' => '{|}', 'dataWrap' => 'DB:tt_content:{field:tx_gridelements_container}:tx_gridelements_backend_layout', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'tx_gridelements_container'))), 'subHeaderClasses' => 'COA', 'subHeaderClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '20.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||'), 'TEXT', '30.' => array('field' => 'header_style', 'required' => '1', 'if.' => array('value.' => array('field' => 'header_style'), 'equals.' => array('field' => 'header_layout'), 'negate' => '1'), 'stdWrap.' => array('prioriCalc' => 'intval', 'wrap' => 'h|', 'if.' => array('isTrue.' => array('field' => 'header_style')), 'override.' => array('field' => 'header_style', 'dataWrap' => '|+1')), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'subheader_color', 'required' => '1', 'wrap' => 'header-color-|', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'subheader_color'))))), 'templateName' => 'List', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '1509614342.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532626753.' => array('fieldName' => 'background_image_options')), 'settings.' => array('header.' => array('defaultHeaderType' => '2', 'class' => 'element-header', 'date.' => array('format' => '%B %e, %Y')), 'subheader.' => array('class' => 'element-subheader'), 'lightbox.' => array('cssClass' => 'fresco', 'prefix' => 'data-fresco-group', 'image.' => array('maxHeight' => '1200', 'maxWidth' => '1200')), 'media.' => array('additionalConfig.' => array('autoplay' => '0', 'controls' => '1', 'loop' => '0', 'enablejsapi' => '1', 'showinfo' => '0', 'relatedVideos' => '0', 'modestbranding' => '0'), 'popup.' => array('linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="{field:uid}" data-fancybox="{field:uid}"')))), 'gallery.' => array('columns.' => array('1.' => array('class' => 'gallery-item-size-1'), '2.' => array('class' => 'gallery-item-size-2', 'multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1200', 'width' => '1920', 'height' => '', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'large.' => array('breakpoint' => '992', 'width' => '1200', 'height' => '', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'medium.' => array('breakpoint' => '768', 'width' => '992', 'height' => '558', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'small.' => array('breakpoint' => '576', 'width' => '768', 'height' => '432', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '576', 'height' => '432', 'sizes.' => array('1x.' => array('multiplier' => '1')))), 'backendlayout.' => array('2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '21.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '22.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'top.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'bottom.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))))), 'menuthumbnail.' => array('title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '80')), 'menucard.' => array('icon.' => array('enable' => '0', 'height' => '32', 'width' => '32c'), 'title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '100'), 'abstract.' => array('crop' => '250')), 'texticon.' => array('icon.' => array('default.' => array('height' => '32', 'width' => '32'), 'medium.' => array('height' => '48', 'width' => '48'), 'large.' => array('height' => '64', 'width' => '64'), 'awesome.' => array('height' => '80', 'width' => '80'))), 'timeline.' => array('date.' => array('format' => '%B %e, %Y - %H:%M')), 'uploads.' => array('preview.' => array('height' => '100c', 'width' => '100c'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'diautilities_autosuggestutility' => 'USER', 'diautilities_autosuggestutility.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaUtilities', 'pluginName' => 'AutoSuggestUtility', 'vendorName' => 'Dia'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'vendorName' => 'Reelworx'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'adventskalender_calendar' => 'USER', 'adventskalender_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Adventskalender', 'pluginName' => 'Calendar', 'vendorName' => 'CodingMs'), 'adventskalenderpro_lottery' => 'USER', 'adventskalenderpro_lottery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'AdventskalenderPro', 'pluginName' => 'Lottery', 'vendorName' => 'CodingMs'), 'diaevents_eventmanagement' => 'USER', 'diaevents_eventmanagement.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaEvents', 'pluginName' => 'Eventmanagement', 'vendorName' => 'Dia'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show', 'vendorName' => 'Clickstorm'))), 'lib.contentElement')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 719
                list($name, $conf) = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('< lib.helperTemplate', array('layoutRootPaths.' => array('EXT:dia_ce/Resources/Private/Layouts/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_common/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_common/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/ContentElements/'), 'partialRootPaths.' => array('EXT:dia_ce/Resources/Private/Partials/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:dia_site/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_common/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_common/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/ContentElements/'), 'templateRootPaths.' => array('EXT:dia_ce/Resources/Private/Templates/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:dia_site/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_common/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_common/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/ContentElements/'), 'variables.' => array('frameClasses' => 'COA', 'frameClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '200.' => array('field' => 'tx_diacontent_classes', 'required' => '1', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '.', 'replace.' => array('char' => '32')), '20.' => array('search' => ',', 'replace.' => array('char' => '32')))), 'noTrimWrap' => '| ||'), 'TEXT', '10.' => array('field' => 'frame_class', 'required' => '1', 'wrap' => 'frame-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'CType', 'required' => '1', 'wrap' => 'frame-type-|', 'noTrimWrap' => '| ||', 'override.' => array('field' => 'list_type', 'wrap' => 'plugin-|', 'if.' => array('value' => 'list', 'equals.' => array('field' => 'CType')))), 'TEXT', '30.' => array('field' => 'layout', 'required' => '1', 'wrap' => 'frame-layout-|', 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('value' => 'hidden-md hidden-lg', 'if.' => array('isTrue.' => array('field' => 'dia_show_mobile')), 'noTrimWrap' => '| ||'), 'TEXT', '50.' => array('value' => 'hidden-xs hidden-sm', 'if.' => array('isTrue.' => array('field' => 'dia_show_desktop')), 'noTrimWrap' => '| ||')), 'headerClasses' => 'COA', 'headerClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '20.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||'), 'TEXT', '30.' => array('field' => 'header_style', 'required' => '1', 'if.' => array('value.' => array('field' => 'header_style'), 'equals.' => array('field' => 'header_layout'), 'negate' => '1'), 'stdWrap.' => array('prioriCalc' => 'intval', 'wrap' => 'h|', 'if.' => array('isTrue.' => array('field' => 'header_style'))), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'header_color', 'required' => '1', 'wrap' => 'header-color-|', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'header_color')))), 'backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'frameSpaceBeforeClasses' => 'COA', 'frameSpaceBeforeClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'space_before_class', 'required' => '1', 'wrap' => 'frame-space-before-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'space_inner_before_class', 'required' => '1', 'wrap' => 'frame-space-inner-before-|', 'noTrimWrap' => '| ||')), 'frameSpaceAfterClasses' => 'COA', 'frameSpaceAfterClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'space_after_class', 'required' => '1', 'wrap' => 'frame-space-after-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'space_inner_after_class', 'required' => '1', 'wrap' => 'frame-space-inner-after-|', 'noTrimWrap' => '| ||')), 'frameHeightClasses' => 'COA', 'frameHeightClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'height_class', 'required' => '1', 'wrap' => 'h-|', 'noTrimWrap' => '| ||')), 'elementClasses' => '< lib.contentElement.variables.frameClasses', 'elementClasses.' => array('10.' => array('wrap' => 'element-|'), '20.' => array('wrap' => 'element-type-|'), '30.' => array('wrap' => 'element-layout-|')), 'spaceClasses' => 'COA', 'spaceClasses.' => array('stdWrap.' => array('trim' => '1'), '< lib.contentElement.variables.frameSpaceBeforeClasses', '10.' => array('10.' => array('wrap' => 'margin-above-|'), '20.' => array('wrap' => 'margin-below-|')), '< lib.contentElement.variables.frameSpaceBeforeClasses', '20.' => array('10.' => array('wrap' => 'padding-above-|'), '20.' => array('wrap' => 'padding-below-|')), '< lib.contentElement.variables.frameHeightClasses', '30.' => array('10.' => array('wrap' => 'h-|'))), 'containerLayout' => 'TEXT', 'containerLayout.' => array('wrap3' => '{|}', 'dataWrap' => 'DB:tt_content:{field:tx_gridelements_container}:tx_gridelements_backend_layout', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'tx_gridelements_container'))), 'subHeaderClasses' => 'COA', 'subHeaderClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '20.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||'), 'TEXT', '30.' => array('field' => 'header_style', 'required' => '1', 'if.' => array('value.' => array('field' => 'header_style'), 'equals.' => array('field' => 'header_layout'), 'negate' => '1'), 'stdWrap.' => array('prioriCalc' => 'intval', 'wrap' => 'h|', 'if.' => array('isTrue.' => array('field' => 'header_style')), 'override.' => array('field' => 'header_style', 'dataWrap' => '|+1')), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'subheader_color', 'required' => '1', 'wrap' => 'header-color-|', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'subheader_color'))))), 'templateName' => 'List', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '1509614342.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532626753.' => array('fieldName' => 'background_image_options')), 'settings.' => array('header.' => array('defaultHeaderType' => '2', 'class' => 'element-header', 'date.' => array('format' => '%B %e, %Y')), 'subheader.' => array('class' => 'element-subheader'), 'lightbox.' => array('cssClass' => 'fresco', 'prefix' => 'data-fresco-group', 'image.' => array('maxHeight' => '1200', 'maxWidth' => '1200')), 'media.' => array('additionalConfig.' => array('autoplay' => '0', 'controls' => '1', 'loop' => '0', 'enablejsapi' => '1', 'showinfo' => '0', 'relatedVideos' => '0', 'modestbranding' => '0'), 'popup.' => array('linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="{field:uid}" data-fancybox="{field:uid}"')))), 'gallery.' => array('columns.' => array('1.' => array('class' => 'gallery-item-size-1'), '2.' => array('class' => 'gallery-item-size-2', 'multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1200', 'width' => '1920', 'height' => '', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'large.' => array('breakpoint' => '992', 'width' => '1200', 'height' => '', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'medium.' => array('breakpoint' => '768', 'width' => '992', 'height' => '558', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'small.' => array('breakpoint' => '576', 'width' => '768', 'height' => '432', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '576', 'height' => '432', 'sizes.' => array('1x.' => array('multiplier' => '1')))), 'backendlayout.' => array('2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '21.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '22.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'top.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'bottom.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))))), 'menuthumbnail.' => array('title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '80')), 'menucard.' => array('icon.' => array('enable' => '0', 'height' => '32', 'width' => '32c'), 'title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '100'), 'abstract.' => array('crop' => '250')), 'texticon.' => array('icon.' => array('default.' => array('height' => '32', 'width' => '32'), 'medium.' => array('height' => '48', 'width' => '48'), 'large.' => array('height' => '64', 'width' => '64'), 'awesome.' => array('height' => '80', 'width' => '80'))), 'timeline.' => array('date.' => array('format' => '%B %e, %Y - %H:%M')), 'uploads.' => array('preview.' => array('height' => '100c', 'width' => '100c'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'diautilities_autosuggestutility' => 'USER', 'diautilities_autosuggestutility.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaUtilities', 'pluginName' => 'AutoSuggestUtility', 'vendorName' => 'Dia'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'vendorName' => 'Reelworx'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'adventskalender_calendar' => 'USER', 'adventskalender_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Adventskalender', 'pluginName' => 'Calendar', 'vendorName' => 'CodingMs'), 'adventskalenderpro_lottery' => 'USER', 'adventskalenderpro_lottery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'AdventskalenderPro', 'pluginName' => 'Lottery', 'vendorName' => 'CodingMs'), 'diaevents_eventmanagement' => 'USER', 'diaevents_eventmanagement.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaEvents', 'pluginName' => 'Eventmanagement', 'vendorName' => 'Dia'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show', 'vendorName' => 'Clickstorm'))), 'list')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 46
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'button' => '< lib.contentElement', 'button.' => array('templateName' => 'Button', 'layoutRootPaths.' => array('EXT:dia_ce_button/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:dia_ce_button/Resources/Private/Partials/'), 'templateRootPaths.' => array('EXT:dia_ce_button/Resources/Private/Templates/'), 'variables.' => array('frameClasses.' => array('TEXT', '100.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||')), 'buttonClasses' => 'COA', 'buttonClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('value' => 'btn', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'header_layout', 'required' => '1', 'wrap' => 'btn-|', 'stdWrap.' => array('override.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'header_layout'), 'TEXT', '0.' => array('value' => 'default')))), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'header_style', 'required' => '1', 'wrap' => 'btn-|', 'noTrimWrap' => '| ||'), 'TEXT', '50.' => array('value' => 'btn-block', 'if.' => array('isTrue.' => array('field' => 'button_display_block')), 'noTrimWrap' => '| ||')))), 'iconlist' => '< lib.contentElement', 'iconlist.' => array('templateName' => 'Iconlist', 'layoutRootPaths.' => array('EXT:dia_ce_iconlist/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:dia_ce_iconlist/Resources/Private/Partials/'), 'templateRootPaths.' => array('EXT:dia_ce_iconlist/Resources/Private/Templates/')), 'dia_menu_toc' => '< lib.contentElement', 'dia_menu_toc.' => array('templateName' => 'DiaMenuTableOfContents', 'layoutRootPaths.' => array('EXT:dia_ce_menu_toc/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:dia_ce_menu_toc/Resources/Private/Partials/'), 'templateRootPaths.' => array('EXT:dia_ce_menu_toc/Resources/Private/Templates/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('data' => 'page:uid')), 'excludeDoktypes' => 'dia_menu_toc', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND header <> \'\' AND header_layout <> 100 AND colPos=0', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'includeNotInMenu' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content', 'conf.' => array('tt_content' => 'COA', 'tt_content.' => array('TEXT', '10.' => array('field' => 'header', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'section' => 'c', 'section.' => array('dataWrap' => '|{field:uid}'), 'ATagParams' => 'class="nav-link"', 'title.' => array('field' => 'header')), 'wrap' => '<li>|</li>')))))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'diautilities_autosuggestutility' => 'USER', 'diautilities_autosuggestutility.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaUtilities', 'pluginName' => 'AutoSuggestUtility', 'vendorName' => 'Dia'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'vendorName' => 'Reelworx'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'adventskalender_calendar' => 'USER', 'adventskalender_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Adventskalender', 'pluginName' => 'Calendar', 'vendorName' => 'CodingMs'), 'adventskalenderpro_lottery' => 'USER', 'adventskalenderpro_lottery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'AdventskalenderPro', 'pluginName' => 'Lottery', 'vendorName' => 'CodingMs'), 'diaevents_eventmanagement' => 'USER', 'diaevents_eventmanagement.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaEvents', 'pluginName' => 'Eventmanagement', 'vendorName' => 'Dia'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show', 'vendorName' => 'Clickstorm'))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework', 'vendorName' => 'TYPO3\\CMS')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'Dia\\DiaGe\\Plugin\\Gridelements->main', 'setup.' => array('Column.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('rowClasses' => 'COA', 'rowClasses.' => array('TEXT', '10.' => array('value' => 'row'), 'TEXT', '20.' => array('field' => 'flexform_advanced_justifyContent', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '30.' => array('field' => 'flexform_advanced_alignItems', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '40.' => array('value' => 'no-gutters', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'colOneClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colOneClasses.' => array('10.' => array('key' => 'one')), 'colTwoClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colTwoClasses.' => array('10.' => array('key' => 'two')), 'colThreeClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colThreeClasses.' => array('10.' => array('key' => 'three')), 'colFourClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFourClasses.' => array('10.' => array('key' => 'four')), 'colFiveClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFiveClasses.' => array('10.' => array('key' => 'five')), 'colSixClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colSixClasses.' => array('10.' => array('key' => 'six'))))), '2Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '3Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '4Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '5Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject', 'cObject.' => array('variables.' => array('rowClasses.' => array('10.' => array('value' => 'row-15'))))), '6Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), 'Accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Container.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('containerType' => 'TEXT', 'containerType.' => array('field' => 'flexform_general_containerType', 'ifNull' => 'container'), 'frameClasses' => 'COA', 'frameClasses.' => array('TEXT', '100.' => array('value' => 'frame-gridelements-bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'frame-gridelements-bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'elementClasses' => 'COA', 'elementClasses.' => array('TEXT', '100.' => array('value' => 'bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))))))), 'ImageGallery.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('colClasses' => 'COA', 'colClasses.' => array('TEXT', '10.' => array('value' => '12 / {field:flexform_general_numColumns}', 'value.' => array('insertData' => '1'), 'prioriCalc' => 'intval', 'noTrimWrap' => '| col-md-||'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('collections.' => array('field' => 'flexform_general_collection'), 'as' => 'files')), 'settings.' => array('image_zoom' => '1', 'hide_description' => '0'))), 'Slider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Timeline.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'JobApplication.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('Column.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('rowClasses' => 'COA', 'rowClasses.' => array('TEXT', '10.' => array('value' => 'row'), 'TEXT', '20.' => array('field' => 'flexform_advanced_justifyContent', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '30.' => array('field' => 'flexform_advanced_alignItems', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '40.' => array('value' => 'no-gutters', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'colOneClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colOneClasses.' => array('10.' => array('key' => 'one')), 'colTwoClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colTwoClasses.' => array('10.' => array('key' => 'two')), 'colThreeClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colThreeClasses.' => array('10.' => array('key' => 'three')), 'colFourClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFourClasses.' => array('10.' => array('key' => 'four')), 'colFiveClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFiveClasses.' => array('10.' => array('key' => 'five')), 'colSixClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colSixClasses.' => array('10.' => array('key' => 'six'))))), '2Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '3Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '4Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '5Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject', 'cObject.' => array('variables.' => array('rowClasses.' => array('10.' => array('value' => 'row-15'))))), '6Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), 'Accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Container.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('containerType' => 'TEXT', 'containerType.' => array('field' => 'flexform_general_containerType', 'ifNull' => 'container'), 'frameClasses' => 'COA', 'frameClasses.' => array('TEXT', '100.' => array('value' => 'frame-gridelements-bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'frame-gridelements-bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'elementClasses' => 'COA', 'elementClasses.' => array('TEXT', '100.' => array('value' => 'bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))))))), 'ImageGallery.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('colClasses' => 'COA', 'colClasses.' => array('TEXT', '10.' => array('value' => '12 / {field:flexform_general_numColumns}', 'value.' => array('insertData' => '1'), 'prioriCalc' => 'intval', 'noTrimWrap' => '| col-md-||'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('collections.' => array('field' => 'flexform_general_collection'), 'as' => 'files')), 'settings.' => array('image_zoom' => '1', 'hide_description' => '0'))), 'Slider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Timeline.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'JobApplication.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement', 'cObject.' => array('templateName' => 'Gridelements', 'layoutRootPaths.' => array('EXT:dia_ge/Resources/Private/Layouts/', 'EXT:dia_ge_bootstrap/Resources/Private/Layouts/'), 'templateRootPaths.' => array('EXT:dia_ge/Resources/Private/Templates/', 'EXT:dia_ge_bootstrap/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:dia_ge/Resources/Private/Partials/', 'EXT:dia_ge_bootstrap/Resources/Private/Partials/'), 'settings.' => array('defaultHeaderType' => '100'), 'variables.' => array('templateName' => 'TEXT', 'templateName.' => array('field' => 'tx_gridelements_backend_layout'), 'frameClasses' => 'COA', 'frameClasses.' => array('TEXT', '15.' => array('value' => 'frame-type-gridelements', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'tx_gridelements_backend_layout', 'required' => '1', 'wrap' => 'frame-type-gridelements-|', 'stdWrap.' => array('case' => 'lower'), 'noTrimWrap' => '| ||')), 'elementClasses' => '< lib.gridelements.defaultGridSetup.variables.frameClasses', 'elementClasses.' => array('15.' => array('value' => 'element-type-gridelements'), '20.' => array('wrap' => 'element-type-gridelements-|'))))))))), 'audio' => '< lib.contentElement', 'audio.' => array('templateName' => 'Audio', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets'))), 'csv' => '< lib.contentElement', 'csv.' => array('templateName' => 'Csv', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\CsvFileProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'maximumColumns.' => array('field' => 'cols')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header'), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html'), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image')), 'templateName.' => array('stdWrap.' => array('override.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'TEXT', '20.' => array('value' => 'ImageParallax')))))), 'media' => '< lib.contentElement', 'media.' => array('templateName' => 'Media', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('allowedFileExtensions' => 'youtube, vimeo, mp4'))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON tt_content.uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '100.' => array('if.' => array('isTrue.' => array('field' => 'categories')), 'table' => 'sys_category', 'pidInList' => 'root,-1', 'selectFields' => 'sys_category.*', 'recursive' => '99', 'as' => 'categories'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'quote' => '< lib.contentElement', 'quote.' => array('templateName' => 'Quote'), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'))))), 'social_links' => '< lib.contentElement', 'social_links.' => array('templateName' => 'SocialLinks', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'socialmedia', 'key' => 'page.theme.socialmedia'))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'as' => 'table'))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text'), 'textcolumn' => '< lib.contentElement', 'textcolumn.' => array('templateName' => 'Textcolumn'), 'textteaser' => '< lib.contentElement', 'textteaser.' => array('templateName' => 'Textteaser'), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextpicBelow'), 'TEXT', '25.' => array('value' => 'TextpicRight'), 'TEXT', '26.' => array('value' => 'TextpicLeft'), 'TEXT', '125.' => array('value' => 'TextpicCenteredRight'), 'TEXT', '126.' => array('value' => 'TextpicCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextpicAbove')), 'override.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'TEXT', '10.' => array('value' => 'TextpicContact'), 'TEXT', '15.' => array('value' => 'TextpicContactBuro'), 'TEXT', '25.' => array('value' => 'TextpicApplicationContact'), 'TEXT', '30.' => array('value' => 'TextpicReward'), 'stacked' => 'TEXT', 'stacked.' => array('value' => 'TextpicStacked'), 'besides' => 'TEXT', 'besides.' => array('value' => 'TextpicBesides'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image'))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextmediaBelow'), 'TEXT', '25.' => array('value' => 'TextmediaRight'), 'TEXT', '26.' => array('value' => 'TextmediaLeft'), 'TEXT', '125.' => array('value' => 'TextmediaCenteredRight'), 'TEXT', '126.' => array('value' => 'TextmediaCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextmediaAbove')))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction'))))), 'accordion' => '< lib.contentElement', 'accordion.' => array('templateName' => 'Accordion', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_accordion_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))), 'card_group' => '< lib.contentElement', 'card_group.' => array('templateName' => 'CardGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_card_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'link_icon'), 'as' => 'linkIcon'))))), 'carousel' => '< lib.contentElement', 'carousel.' => array('templateName' => 'Carousel', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options'))))), 'carousel_small' => '< lib.contentElement', 'carousel_small.' => array('templateName' => 'CarouselSmall', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options'))))), 'carousel_fullscreen' => '< lib.contentElement', 'carousel_fullscreen.' => array('templateName' => 'CarouselFullscreen', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options'))))), 'external_media' => '< lib.contentElement', 'external_media.' => array('templateName' => 'ExternalMedia'), 'icon_group' => '< lib.contentElement', 'icon_group.' => array('templateName' => 'IconGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_icon_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'))))), 'listgroup' => '< lib.contentElement', 'listgroup.' => array('templateName' => 'ListGroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'items'))), 'panel' => '< lib.contentElement', 'panel.' => array('templateName' => 'Panel'), 'tab' => '< lib.contentElement', 'tab.' => array('templateName' => 'Tab', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_tab_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))), 'texticon' => '< lib.contentElement', 'texticon.' => array('templateName' => 'Texticon', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'icon', 'if.' => array('isFalse.' => array('field' => 'icon_set'))), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '20.' => array('files.' => array('0.' => array('field' => 'icon')), 'as' => 'icon', 'if.' => array('isTrue.' => array('field' => 'icon_set'))))), 'timeline' => '< lib.contentElement', 'timeline.' => array('templateName' => 'Timeline', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_bootstrappackage_timeline_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'flexform:pi_flexform:sorting', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => 'date desc'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'))))), 'menu_card_dir' => '< lib.contentElement', 'menu_card_dir.' => array('templateName' => 'MenuCardDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_card_list' => '< lib.contentElement', 'menu_card_list.' => array('templateName' => 'MenuCardList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_dir' => '< lib.contentElement', 'menu_thumbnail_dir.' => array('templateName' => 'MenuThumbnailDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_list' => '< lib.contentElement', 'menu_thumbnail_list.' => array('templateName' => 'MenuThumbnailList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement')))))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'button' => '< lib.contentElement', 'button.' => array('templateName' => 'Button', 'layoutRootPaths.' => array('EXT:dia_ce_button/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:dia_ce_button/Resources/Private/Partials/'), 'templateRootPaths.' => array('EXT:dia_ce_button/Resources/Private/Templates/'), 'variables.' => array('frameClasses.' => array('TEXT', '100.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||')), 'buttonClasses' => 'COA', 'buttonClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('value' => 'btn', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'header_layout', 'required' => '1', 'wrap' => 'btn-|', 'stdWrap.' => array('override.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'header_layout'), 'TEXT', '0.' => array('value' => 'default')))), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'header_style', 'required' => '1', 'wrap' => 'btn-|', 'noTrimWrap' => '| ||'), 'TEXT', '50.' => array('value' => 'btn-block', 'if.' => array('isTrue.' => array('field' => 'button_display_block')), 'noTrimWrap' => '| ||')))), 'iconlist' => '< lib.contentElement', 'iconlist.' => array('templateName' => 'Iconlist', 'layoutRootPaths.' => array('EXT:dia_ce_iconlist/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:dia_ce_iconlist/Resources/Private/Partials/'), 'templateRootPaths.' => array('EXT:dia_ce_iconlist/Resources/Private/Templates/')), 'dia_menu_toc' => '< lib.contentElement', 'dia_menu_toc.' => array('templateName' => 'DiaMenuTableOfContents', 'layoutRootPaths.' => array('EXT:dia_ce_menu_toc/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:dia_ce_menu_toc/Resources/Private/Partials/'), 'templateRootPaths.' => array('EXT:dia_ce_menu_toc/Resources/Private/Templates/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('data' => 'page:uid')), 'excludeDoktypes' => 'dia_menu_toc', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND header <> \'\' AND header_layout <> 100 AND colPos=0', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'includeNotInMenu' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content', 'conf.' => array('tt_content' => 'COA', 'tt_content.' => array('TEXT', '10.' => array('field' => 'header', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'section' => 'c', 'section.' => array('dataWrap' => '|{field:uid}'), 'ATagParams' => 'class="nav-link"', 'title.' => array('field' => 'header')), 'wrap' => '<li>|</li>')))))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'diautilities_autosuggestutility' => 'USER', 'diautilities_autosuggestutility.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaUtilities', 'pluginName' => 'AutoSuggestUtility', 'vendorName' => 'Dia'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'vendorName' => 'Reelworx'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'adventskalender_calendar' => 'USER', 'adventskalender_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Adventskalender', 'pluginName' => 'Calendar', 'vendorName' => 'CodingMs'), 'adventskalenderpro_lottery' => 'USER', 'adventskalenderpro_lottery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'AdventskalenderPro', 'pluginName' => 'Lottery', 'vendorName' => 'CodingMs'), 'diaevents_eventmanagement' => 'USER', 'diaevents_eventmanagement.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaEvents', 'pluginName' => 'Eventmanagement', 'vendorName' => 'Dia'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show', 'vendorName' => 'Clickstorm'))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework', 'vendorName' => 'TYPO3\\CMS')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'Dia\\DiaGe\\Plugin\\Gridelements->main', 'setup.' => array('Column.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('rowClasses' => 'COA', 'rowClasses.' => array('TEXT', '10.' => array('value' => 'row'), 'TEXT', '20.' => array('field' => 'flexform_advanced_justifyContent', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '30.' => array('field' => 'flexform_advanced_alignItems', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '40.' => array('value' => 'no-gutters', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'colOneClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colOneClasses.' => array('10.' => array('key' => 'one')), 'colTwoClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colTwoClasses.' => array('10.' => array('key' => 'two')), 'colThreeClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colThreeClasses.' => array('10.' => array('key' => 'three')), 'colFourClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFourClasses.' => array('10.' => array('key' => 'four')), 'colFiveClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFiveClasses.' => array('10.' => array('key' => 'five')), 'colSixClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colSixClasses.' => array('10.' => array('key' => 'six'))))), '2Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '3Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '4Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '5Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject', 'cObject.' => array('variables.' => array('rowClasses.' => array('10.' => array('value' => 'row-15'))))), '6Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), 'Accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Container.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('containerType' => 'TEXT', 'containerType.' => array('field' => 'flexform_general_containerType', 'ifNull' => 'container'), 'frameClasses' => 'COA', 'frameClasses.' => array('TEXT', '100.' => array('value' => 'frame-gridelements-bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'frame-gridelements-bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'elementClasses' => 'COA', 'elementClasses.' => array('TEXT', '100.' => array('value' => 'bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))))))), 'ImageGallery.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('colClasses' => 'COA', 'colClasses.' => array('TEXT', '10.' => array('value' => '12 / {field:flexform_general_numColumns}', 'value.' => array('insertData' => '1'), 'prioriCalc' => 'intval', 'noTrimWrap' => '| col-md-||'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('collections.' => array('field' => 'flexform_general_collection'), 'as' => 'files')), 'settings.' => array('image_zoom' => '1', 'hide_description' => '0'))), 'Slider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Timeline.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'JobApplication.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('Column.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('rowClasses' => 'COA', 'rowClasses.' => array('TEXT', '10.' => array('value' => 'row'), 'TEXT', '20.' => array('field' => 'flexform_advanced_justifyContent', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '30.' => array('field' => 'flexform_advanced_alignItems', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '40.' => array('value' => 'no-gutters', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'colOneClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colOneClasses.' => array('10.' => array('key' => 'one')), 'colTwoClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colTwoClasses.' => array('10.' => array('key' => 'two')), 'colThreeClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colThreeClasses.' => array('10.' => array('key' => 'three')), 'colFourClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFourClasses.' => array('10.' => array('key' => 'four')), 'colFiveClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFiveClasses.' => array('10.' => array('key' => 'five')), 'colSixClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colSixClasses.' => array('10.' => array('key' => 'six'))))), '2Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '3Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '4Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '5Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject', 'cObject.' => array('variables.' => array('rowClasses.' => array('10.' => array('value' => 'row-15'))))), '6Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), 'Accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Container.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('containerType' => 'TEXT', 'containerType.' => array('field' => 'flexform_general_containerType', 'ifNull' => 'container'), 'frameClasses' => 'COA', 'frameClasses.' => array('TEXT', '100.' => array('value' => 'frame-gridelements-bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'frame-gridelements-bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'elementClasses' => 'COA', 'elementClasses.' => array('TEXT', '100.' => array('value' => 'bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))))))), 'ImageGallery.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('colClasses' => 'COA', 'colClasses.' => array('TEXT', '10.' => array('value' => '12 / {field:flexform_general_numColumns}', 'value.' => array('insertData' => '1'), 'prioriCalc' => 'intval', 'noTrimWrap' => '| col-md-||'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('collections.' => array('field' => 'flexform_general_collection'), 'as' => 'files')), 'settings.' => array('image_zoom' => '1', 'hide_description' => '0'))), 'Slider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Timeline.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'JobApplication.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement', 'cObject.' => array('templateName' => 'Gridelements', 'layoutRootPaths.' => array('EXT:dia_ge/Resources/Private/Layouts/', 'EXT:dia_ge_bootstrap/Resources/Private/Layouts/'), 'templateRootPaths.' => array('EXT:dia_ge/Resources/Private/Templates/', 'EXT:dia_ge_bootstrap/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:dia_ge/Resources/Private/Partials/', 'EXT:dia_ge_bootstrap/Resources/Private/Partials/'), 'settings.' => array('defaultHeaderType' => '100'), 'variables.' => array('templateName' => 'TEXT', 'templateName.' => array('field' => 'tx_gridelements_backend_layout'), 'frameClasses' => 'COA', 'frameClasses.' => array('TEXT', '15.' => array('value' => 'frame-type-gridelements', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'tx_gridelements_backend_layout', 'required' => '1', 'wrap' => 'frame-type-gridelements-|', 'stdWrap.' => array('case' => 'lower'), 'noTrimWrap' => '| ||')), 'elementClasses' => '< lib.gridelements.defaultGridSetup.variables.frameClasses', 'elementClasses.' => array('15.' => array('value' => 'element-type-gridelements'), '20.' => array('wrap' => 'element-type-gridelements-|'))))))))), 'audio' => '< lib.contentElement', 'audio.' => array('templateName' => 'Audio', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets'))), 'csv' => '< lib.contentElement', 'csv.' => array('templateName' => 'Csv', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\CsvFileProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'maximumColumns.' => array('field' => 'cols')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header'), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html'), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image')), 'templateName.' => array('stdWrap.' => array('override.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'TEXT', '20.' => array('value' => 'ImageParallax')))))), 'media' => '< lib.contentElement', 'media.' => array('templateName' => 'Media', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('allowedFileExtensions' => 'youtube, vimeo, mp4'))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON tt_content.uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '100.' => array('if.' => array('isTrue.' => array('field' => 'categories')), 'table' => 'sys_category', 'pidInList' => 'root,-1', 'selectFields' => 'sys_category.*', 'recursive' => '99', 'as' => 'categories'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'quote' => '< lib.contentElement', 'quote.' => array('templateName' => 'Quote'), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'))))), 'social_links' => '< lib.contentElement', 'social_links.' => array('templateName' => 'SocialLinks', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'socialmedia', 'key' => 'page.theme.socialmedia'))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'as' => 'table'))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text'), 'textcolumn' => '< lib.contentElement', 'textcolumn.' => array('templateName' => 'Textcolumn'), 'textteaser' => '< lib.contentElement', 'textteaser.' => array('templateName' => 'Textteaser'), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextpicBelow'), 'TEXT', '25.' => array('value' => 'TextpicRight'), 'TEXT', '26.' => array('value' => 'TextpicLeft'), 'TEXT', '125.' => array('value' => 'TextpicCenteredRight'), 'TEXT', '126.' => array('value' => 'TextpicCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextpicAbove')), 'override.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'TEXT', '10.' => array('value' => 'TextpicContact'), 'TEXT', '15.' => array('value' => 'TextpicContactBuro'), 'TEXT', '25.' => array('value' => 'TextpicApplicationContact'), 'TEXT', '30.' => array('value' => 'TextpicReward'), 'stacked' => 'TEXT', 'stacked.' => array('value' => 'TextpicStacked'), 'besides' => 'TEXT', 'besides.' => array('value' => 'TextpicBesides'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image'))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextmediaBelow'), 'TEXT', '25.' => array('value' => 'TextmediaRight'), 'TEXT', '26.' => array('value' => 'TextmediaLeft'), 'TEXT', '125.' => array('value' => 'TextmediaCenteredRight'), 'TEXT', '126.' => array('value' => 'TextmediaCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextmediaAbove')))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction'))))), 'accordion' => '< lib.contentElement', 'accordion.' => array('templateName' => 'Accordion', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_accordion_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))), 'card_group' => '< lib.contentElement', 'card_group.' => array('templateName' => 'CardGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_card_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'link_icon'), 'as' => 'linkIcon'))))), 'carousel' => '< lib.contentElement', 'carousel.' => array('templateName' => 'Carousel', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options'))))), 'carousel_small' => '< lib.contentElement', 'carousel_small.' => array('templateName' => 'CarouselSmall', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options'))))), 'carousel_fullscreen' => '< lib.contentElement', 'carousel_fullscreen.' => array('templateName' => 'CarouselFullscreen', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options'))))), 'external_media' => '< lib.contentElement', 'external_media.' => array('templateName' => 'ExternalMedia'), 'icon_group' => '< lib.contentElement', 'icon_group.' => array('templateName' => 'IconGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_icon_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'))))), 'listgroup' => '< lib.contentElement', 'listgroup.' => array('templateName' => 'ListGroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'items'))), 'panel' => '< lib.contentElement', 'panel.' => array('templateName' => 'Panel'), 'tab' => '< lib.contentElement', 'tab.' => array('templateName' => 'Tab', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_tab_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))), 'texticon' => '< lib.contentElement', 'texticon.' => array('templateName' => 'Texticon', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'icon', 'if.' => array('isFalse.' => array('field' => 'icon_set'))), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '20.' => array('files.' => array('0.' => array('field' => 'icon')), 'as' => 'icon', 'if.' => array('isTrue.' => array('field' => 'icon_set'))))), 'timeline' => '< lib.contentElement', 'timeline.' => array('templateName' => 'Timeline', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_bootstrappackage_timeline_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'flexform:pi_flexform:sorting', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => 'date desc'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'))))), 'menu_card_dir' => '< lib.contentElement', 'menu_card_dir.' => array('templateName' => 'MenuCardDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_card_list' => '< lib.contentElement', 'menu_card_list.' => array('templateName' => 'MenuCardList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_dir' => '< lib.contentElement', 'menu_thumbnail_dir.' => array('templateName' => 'MenuThumbnailDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_list' => '< lib.contentElement', 'menu_thumbnail_list.' => array('templateName' => 'MenuThumbnailList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement')))))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'button' => '< lib.contentElement', 'button.' => array('templateName' => 'Button', 'layoutRootPaths.' => array('EXT:dia_ce_button/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:dia_ce_button/Resources/Private/Partials/'), 'templateRootPaths.' => array('EXT:dia_ce_button/Resources/Private/Templates/'), 'variables.' => array('frameClasses.' => array('TEXT', '100.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||')), 'buttonClasses' => 'COA', 'buttonClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('value' => 'btn', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'header_layout', 'required' => '1', 'wrap' => 'btn-|', 'stdWrap.' => array('override.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'header_layout'), 'TEXT', '0.' => array('value' => 'default')))), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'header_style', 'required' => '1', 'wrap' => 'btn-|', 'noTrimWrap' => '| ||'), 'TEXT', '50.' => array('value' => 'btn-block', 'if.' => array('isTrue.' => array('field' => 'button_display_block')), 'noTrimWrap' => '| ||')))), 'iconlist' => '< lib.contentElement', 'iconlist.' => array('templateName' => 'Iconlist', 'layoutRootPaths.' => array('EXT:dia_ce_iconlist/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:dia_ce_iconlist/Resources/Private/Partials/'), 'templateRootPaths.' => array('EXT:dia_ce_iconlist/Resources/Private/Templates/')), 'dia_menu_toc' => '< lib.contentElement', 'dia_menu_toc.' => array('templateName' => 'DiaMenuTableOfContents', 'layoutRootPaths.' => array('EXT:dia_ce_menu_toc/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:dia_ce_menu_toc/Resources/Private/Partials/'), 'templateRootPaths.' => array('EXT:dia_ce_menu_toc/Resources/Private/Templates/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('data' => 'page:uid')), 'excludeDoktypes' => 'dia_menu_toc', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND header <> \'\' AND header_layout <> 100 AND colPos=0', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'includeNotInMenu' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content', 'conf.' => array('tt_content' => 'COA', 'tt_content.' => array('TEXT', '10.' => array('field' => 'header', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'section' => 'c', 'section.' => array('dataWrap' => '|{field:uid}'), 'ATagParams' => 'class="nav-link"', 'title.' => array('field' => 'header')), 'wrap' => '<li>|</li>')))))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'diautilities_autosuggestutility' => 'USER', 'diautilities_autosuggestutility.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaUtilities', 'pluginName' => 'AutoSuggestUtility', 'vendorName' => 'Dia'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'vendorName' => 'Reelworx'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'adventskalender_calendar' => 'USER', 'adventskalender_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Adventskalender', 'pluginName' => 'Calendar', 'vendorName' => 'CodingMs'), 'adventskalenderpro_lottery' => 'USER', 'adventskalenderpro_lottery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'AdventskalenderPro', 'pluginName' => 'Lottery', 'vendorName' => 'CodingMs'), 'diaevents_eventmanagement' => 'USER', 'diaevents_eventmanagement.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaEvents', 'pluginName' => 'Eventmanagement', 'vendorName' => 'Dia'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show', 'vendorName' => 'Clickstorm'))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework', 'vendorName' => 'TYPO3\\CMS')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'Dia\\DiaGe\\Plugin\\Gridelements->main', 'setup.' => array('Column.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('rowClasses' => 'COA', 'rowClasses.' => array('TEXT', '10.' => array('value' => 'row'), 'TEXT', '20.' => array('field' => 'flexform_advanced_justifyContent', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '30.' => array('field' => 'flexform_advanced_alignItems', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '40.' => array('value' => 'no-gutters', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'colOneClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colOneClasses.' => array('10.' => array('key' => 'one')), 'colTwoClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colTwoClasses.' => array('10.' => array('key' => 'two')), 'colThreeClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colThreeClasses.' => array('10.' => array('key' => 'three')), 'colFourClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFourClasses.' => array('10.' => array('key' => 'four')), 'colFiveClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFiveClasses.' => array('10.' => array('key' => 'five')), 'colSixClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colSixClasses.' => array('10.' => array('key' => 'six'))))), '2Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '3Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '4Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '5Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject', 'cObject.' => array('variables.' => array('rowClasses.' => array('10.' => array('value' => 'row-15'))))), '6Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), 'Accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Container.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('containerType' => 'TEXT', 'containerType.' => array('field' => 'flexform_general_containerType', 'ifNull' => 'container'), 'frameClasses' => 'COA', 'frameClasses.' => array('TEXT', '100.' => array('value' => 'frame-gridelements-bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'frame-gridelements-bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'elementClasses' => 'COA', 'elementClasses.' => array('TEXT', '100.' => array('value' => 'bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))))))), 'ImageGallery.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('colClasses' => 'COA', 'colClasses.' => array('TEXT', '10.' => array('value' => '12 / {field:flexform_general_numColumns}', 'value.' => array('insertData' => '1'), 'prioriCalc' => 'intval', 'noTrimWrap' => '| col-md-||'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('collections.' => array('field' => 'flexform_general_collection'), 'as' => 'files')), 'settings.' => array('image_zoom' => '1', 'hide_description' => '0'))), 'Slider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Timeline.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'JobApplication.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('Column.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('rowClasses' => 'COA', 'rowClasses.' => array('TEXT', '10.' => array('value' => 'row'), 'TEXT', '20.' => array('field' => 'flexform_advanced_justifyContent', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '30.' => array('field' => 'flexform_advanced_alignItems', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '40.' => array('value' => 'no-gutters', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'colOneClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colOneClasses.' => array('10.' => array('key' => 'one')), 'colTwoClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colTwoClasses.' => array('10.' => array('key' => 'two')), 'colThreeClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colThreeClasses.' => array('10.' => array('key' => 'three')), 'colFourClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFourClasses.' => array('10.' => array('key' => 'four')), 'colFiveClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFiveClasses.' => array('10.' => array('key' => 'five')), 'colSixClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colSixClasses.' => array('10.' => array('key' => 'six'))))), '2Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '3Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '4Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '5Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject', 'cObject.' => array('variables.' => array('rowClasses.' => array('10.' => array('value' => 'row-15'))))), '6Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), 'Accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Container.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('containerType' => 'TEXT', 'containerType.' => array('field' => 'flexform_general_containerType', 'ifNull' => 'container'), 'frameClasses' => 'COA', 'frameClasses.' => array('TEXT', '100.' => array('value' => 'frame-gridelements-bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'frame-gridelements-bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'elementClasses' => 'COA', 'elementClasses.' => array('TEXT', '100.' => array('value' => 'bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))))))), 'ImageGallery.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('colClasses' => 'COA', 'colClasses.' => array('TEXT', '10.' => array('value' => '12 / {field:flexform_general_numColumns}', 'value.' => array('insertData' => '1'), 'prioriCalc' => 'intval', 'noTrimWrap' => '| col-md-||'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('collections.' => array('field' => 'flexform_general_collection'), 'as' => 'files')), 'settings.' => array('image_zoom' => '1', 'hide_description' => '0'))), 'Slider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Timeline.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'JobApplication.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement', 'cObject.' => array('templateName' => 'Gridelements', 'layoutRootPaths.' => array('EXT:dia_ge/Resources/Private/Layouts/', 'EXT:dia_ge_bootstrap/Resources/Private/Layouts/'), 'templateRootPaths.' => array('EXT:dia_ge/Resources/Private/Templates/', 'EXT:dia_ge_bootstrap/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:dia_ge/Resources/Private/Partials/', 'EXT:dia_ge_bootstrap/Resources/Private/Partials/'), 'settings.' => array('defaultHeaderType' => '100'), 'variables.' => array('templateName' => 'TEXT', 'templateName.' => array('field' => 'tx_gridelements_backend_layout'), 'frameClasses' => 'COA', 'frameClasses.' => array('TEXT', '15.' => array('value' => 'frame-type-gridelements', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'tx_gridelements_backend_layout', 'required' => '1', 'wrap' => 'frame-type-gridelements-|', 'stdWrap.' => array('case' => 'lower'), 'noTrimWrap' => '| ||')), 'elementClasses' => '< lib.gridelements.defaultGridSetup.variables.frameClasses', 'elementClasses.' => array('15.' => array('value' => 'element-type-gridelements'), '20.' => array('wrap' => 'element-type-gridelements-|'))))))))), 'audio' => '< lib.contentElement', 'audio.' => array('templateName' => 'Audio', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets'))), 'csv' => '< lib.contentElement', 'csv.' => array('templateName' => 'Csv', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\CsvFileProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'maximumColumns.' => array('field' => 'cols')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header'), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html'), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image')), 'templateName.' => array('stdWrap.' => array('override.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'TEXT', '20.' => array('value' => 'ImageParallax')))))), 'media' => '< lib.contentElement', 'media.' => array('templateName' => 'Media', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('allowedFileExtensions' => 'youtube, vimeo, mp4'))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON tt_content.uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '100.' => array('if.' => array('isTrue.' => array('field' => 'categories')), 'table' => 'sys_category', 'pidInList' => 'root,-1', 'selectFields' => 'sys_category.*', 'recursive' => '99', 'as' => 'categories'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'quote' => '< lib.contentElement', 'quote.' => array('templateName' => 'Quote'), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'))))), 'social_links' => '< lib.contentElement', 'social_links.' => array('templateName' => 'SocialLinks', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'socialmedia', 'key' => 'page.theme.socialmedia'))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'as' => 'table'))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text'), 'textcolumn' => '< lib.contentElement', 'textcolumn.' => array('templateName' => 'Textcolumn'), 'textteaser' => '< lib.contentElement', 'textteaser.' => array('templateName' => 'Textteaser'), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextpicBelow'), 'TEXT', '25.' => array('value' => 'TextpicRight'), 'TEXT', '26.' => array('value' => 'TextpicLeft'), 'TEXT', '125.' => array('value' => 'TextpicCenteredRight'), 'TEXT', '126.' => array('value' => 'TextpicCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextpicAbove')), 'override.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'TEXT', '10.' => array('value' => 'TextpicContact'), 'TEXT', '15.' => array('value' => 'TextpicContactBuro'), 'TEXT', '25.' => array('value' => 'TextpicApplicationContact'), 'TEXT', '30.' => array('value' => 'TextpicReward'), 'stacked' => 'TEXT', 'stacked.' => array('value' => 'TextpicStacked'), 'besides' => 'TEXT', 'besides.' => array('value' => 'TextpicBesides'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image'))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextmediaBelow'), 'TEXT', '25.' => array('value' => 'TextmediaRight'), 'TEXT', '26.' => array('value' => 'TextmediaLeft'), 'TEXT', '125.' => array('value' => 'TextmediaCenteredRight'), 'TEXT', '126.' => array('value' => 'TextmediaCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextmediaAbove')))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction'))))), 'accordion' => '< lib.contentElement', 'accordion.' => array('templateName' => 'Accordion', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_accordion_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))), 'card_group' => '< lib.contentElement', 'card_group.' => array('templateName' => 'CardGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_card_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'link_icon'), 'as' => 'linkIcon'))))), 'carousel' => '< lib.contentElement', 'carousel.' => array('templateName' => 'Carousel', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options'))))), 'carousel_small' => '< lib.contentElement', 'carousel_small.' => array('templateName' => 'CarouselSmall', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options'))))), 'carousel_fullscreen' => '< lib.contentElement', 'carousel_fullscreen.' => array('templateName' => 'CarouselFullscreen', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options'))))), 'external_media' => '< lib.contentElement', 'external_media.' => array('templateName' => 'ExternalMedia'), 'icon_group' => '< lib.contentElement', 'icon_group.' => array('templateName' => 'IconGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_icon_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'))))), 'listgroup' => '< lib.contentElement', 'listgroup.' => array('templateName' => 'ListGroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'items'))), 'panel' => '< lib.contentElement', 'panel.' => array('templateName' => 'Panel'), 'tab' => '< lib.contentElement', 'tab.' => array('templateName' => 'Tab', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_tab_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))), 'texticon' => '< lib.contentElement', 'texticon.' => array('templateName' => 'Texticon', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'icon', 'if.' => array('isFalse.' => array('field' => 'icon_set'))), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '20.' => array('files.' => array('0.' => array('field' => 'icon')), 'as' => 'icon', 'if.' => array('isTrue.' => array('field' => 'icon_set'))))), 'timeline' => '< lib.contentElement', 'timeline.' => array('templateName' => 'Timeline', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_bootstrappackage_timeline_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'flexform:pi_flexform:sorting', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => 'date desc'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'))))), 'menu_card_dir' => '< lib.contentElement', 'menu_card_dir.' => array('templateName' => 'MenuCardDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_card_list' => '< lib.contentElement', 'menu_card_list.' => array('templateName' => 'MenuCardList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_dir' => '< lib.contentElement', 'menu_thumbnail_dir.' => array('templateName' => 'MenuThumbnailDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_list' => '< lib.contentElement', 'menu_thumbnail_list.' => array('templateName' => 'MenuThumbnailList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement')))), 'tt_content')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 719
                list($name, $conf) = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'button' => '< lib.contentElement', 'button.' => array('templateName' => 'Button', 'layoutRootPaths.' => array('EXT:dia_ce_button/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:dia_ce_button/Resources/Private/Partials/'), 'templateRootPaths.' => array('EXT:dia_ce_button/Resources/Private/Templates/'), 'variables.' => array('frameClasses.' => array('TEXT', '100.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||')), 'buttonClasses' => 'COA', 'buttonClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('value' => 'btn', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'header_layout', 'required' => '1', 'wrap' => 'btn-|', 'stdWrap.' => array('override.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'header_layout'), 'TEXT', '0.' => array('value' => 'default')))), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'header_style', 'required' => '1', 'wrap' => 'btn-|', 'noTrimWrap' => '| ||'), 'TEXT', '50.' => array('value' => 'btn-block', 'if.' => array('isTrue.' => array('field' => 'button_display_block')), 'noTrimWrap' => '| ||')))), 'iconlist' => '< lib.contentElement', 'iconlist.' => array('templateName' => 'Iconlist', 'layoutRootPaths.' => array('EXT:dia_ce_iconlist/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:dia_ce_iconlist/Resources/Private/Partials/'), 'templateRootPaths.' => array('EXT:dia_ce_iconlist/Resources/Private/Templates/')), 'dia_menu_toc' => '< lib.contentElement', 'dia_menu_toc.' => array('templateName' => 'DiaMenuTableOfContents', 'layoutRootPaths.' => array('EXT:dia_ce_menu_toc/Resources/Private/Layouts/'), 'partialRootPaths.' => array('EXT:dia_ce_menu_toc/Resources/Private/Partials/'), 'templateRootPaths.' => array('EXT:dia_ce_menu_toc/Resources/Private/Templates/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('data' => 'page:uid')), 'excludeDoktypes' => 'dia_menu_toc', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND header <> \'\' AND header_layout <> 100 AND colPos=0', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'includeNotInMenu' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu'))), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content', 'conf.' => array('tt_content' => 'COA', 'tt_content.' => array('TEXT', '10.' => array('field' => 'header', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'section' => 'c', 'section.' => array('dataWrap' => '|{field:uid}'), 'ATagParams' => 'class="nav-link"', 'title.' => array('field' => 'header')), 'wrap' => '<li>|</li>')))))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'diautilities_autosuggestutility' => 'USER', 'diautilities_autosuggestutility.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaUtilities', 'pluginName' => 'AutoSuggestUtility', 'vendorName' => 'Dia'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'vendorName' => 'Reelworx'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'adventskalender_calendar' => 'USER', 'adventskalender_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Adventskalender', 'pluginName' => 'Calendar', 'vendorName' => 'CodingMs'), 'adventskalenderpro_lottery' => 'USER', 'adventskalenderpro_lottery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'AdventskalenderPro', 'pluginName' => 'Lottery', 'vendorName' => 'CodingMs'), 'diaevents_eventmanagement' => 'USER', 'diaevents_eventmanagement.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DiaEvents', 'pluginName' => 'Eventmanagement', 'vendorName' => 'Dia'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'gomapsext_show' => 'USER', 'gomapsext_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoMapsExt', 'pluginName' => 'Show', 'vendorName' => 'Clickstorm'))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework', 'vendorName' => 'TYPO3\\CMS')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'Dia\\DiaGe\\Plugin\\Gridelements->main', 'setup.' => array('Column.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('rowClasses' => 'COA', 'rowClasses.' => array('TEXT', '10.' => array('value' => 'row'), 'TEXT', '20.' => array('field' => 'flexform_advanced_justifyContent', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '30.' => array('field' => 'flexform_advanced_alignItems', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '40.' => array('value' => 'no-gutters', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'colOneClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colOneClasses.' => array('10.' => array('key' => 'one')), 'colTwoClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colTwoClasses.' => array('10.' => array('key' => 'two')), 'colThreeClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colThreeClasses.' => array('10.' => array('key' => 'three')), 'colFourClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFourClasses.' => array('10.' => array('key' => 'four')), 'colFiveClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFiveClasses.' => array('10.' => array('key' => 'five')), 'colSixClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colSixClasses.' => array('10.' => array('key' => 'six'))))), '2Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '3Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '4Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '5Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject', 'cObject.' => array('variables.' => array('rowClasses.' => array('10.' => array('value' => 'row-15'))))), '6Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), 'Accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Container.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('containerType' => 'TEXT', 'containerType.' => array('field' => 'flexform_general_containerType', 'ifNull' => 'container'), 'frameClasses' => 'COA', 'frameClasses.' => array('TEXT', '100.' => array('value' => 'frame-gridelements-bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'frame-gridelements-bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'elementClasses' => 'COA', 'elementClasses.' => array('TEXT', '100.' => array('value' => 'bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))))))), 'ImageGallery.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('colClasses' => 'COA', 'colClasses.' => array('TEXT', '10.' => array('value' => '12 / {field:flexform_general_numColumns}', 'value.' => array('insertData' => '1'), 'prioriCalc' => 'intval', 'noTrimWrap' => '| col-md-||'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('collections.' => array('field' => 'flexform_general_collection'), 'as' => 'files')), 'settings.' => array('image_zoom' => '1', 'hide_description' => '0'))), 'Slider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Timeline.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'JobApplication.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('Column.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('rowClasses' => 'COA', 'rowClasses.' => array('TEXT', '10.' => array('value' => 'row'), 'TEXT', '20.' => array('field' => 'flexform_advanced_justifyContent', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '30.' => array('field' => 'flexform_advanced_alignItems', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '40.' => array('value' => 'no-gutters', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'colOneClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colOneClasses.' => array('10.' => array('key' => 'one')), 'colTwoClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colTwoClasses.' => array('10.' => array('key' => 'two')), 'colThreeClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colThreeClasses.' => array('10.' => array('key' => 'three')), 'colFourClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFourClasses.' => array('10.' => array('key' => 'four')), 'colFiveClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFiveClasses.' => array('10.' => array('key' => 'five')), 'colSixClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colSixClasses.' => array('10.' => array('key' => 'six'))))), '2Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '3Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '4Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '5Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject', 'cObject.' => array('variables.' => array('rowClasses.' => array('10.' => array('value' => 'row-15'))))), '6Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), 'Accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Container.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('containerType' => 'TEXT', 'containerType.' => array('field' => 'flexform_general_containerType', 'ifNull' => 'container'), 'frameClasses' => 'COA', 'frameClasses.' => array('TEXT', '100.' => array('value' => 'frame-gridelements-bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'frame-gridelements-bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))), 'elementClasses' => 'COA', 'elementClasses.' => array('TEXT', '100.' => array('value' => 'bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))), 'TEXT', '200.' => array('value' => 'bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*))))))), 'ImageGallery.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('colClasses' => 'COA', 'colClasses.' => array('TEXT', '10.' => array('value' => '12 / {field:flexform_general_numColumns}', 'value.' => array('insertData' => '1'), 'prioriCalc' => 'intval', 'noTrimWrap' => '| col-md-||'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('collections.' => array('field' => 'flexform_general_collection'), 'as' => 'files')), 'settings.' => array('image_zoom' => '1', 'hide_description' => '0'))), 'Slider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Timeline.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'JobApplication.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement', 'cObject.' => array('templateName' => 'Gridelements', 'layoutRootPaths.' => array('EXT:dia_ge/Resources/Private/Layouts/', 'EXT:dia_ge_bootstrap/Resources/Private/Layouts/'), 'templateRootPaths.' => array('EXT:dia_ge/Resources/Private/Templates/', 'EXT:dia_ge_bootstrap/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:dia_ge/Resources/Private/Partials/', 'EXT:dia_ge_bootstrap/Resources/Private/Partials/'), 'settings.' => array('defaultHeaderType' => '100'), 'variables.' => array('templateName' => 'TEXT', 'templateName.' => array('field' => 'tx_gridelements_backend_layout'), 'frameClasses' => 'COA', 'frameClasses.' => array('TEXT', '15.' => array('value' => 'frame-type-gridelements', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'tx_gridelements_backend_layout', 'required' => '1', 'wrap' => 'frame-type-gridelements-|', 'stdWrap.' => array('case' => 'lower'), 'noTrimWrap' => '| ||')), 'elementClasses' => '< lib.gridelements.defaultGridSetup.variables.frameClasses', 'elementClasses.' => array('15.' => array('value' => 'element-type-gridelements'), '20.' => array('wrap' => 'element-type-gridelements-|'))))))))), 'audio' => '< lib.contentElement', 'audio.' => array('templateName' => 'Audio', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets'))), 'csv' => '< lib.contentElement', 'csv.' => array('templateName' => 'Csv', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\CsvFileProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'maximumColumns.' => array('field' => 'cols')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header'), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html'), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image')), 'templateName.' => array('stdWrap.' => array('override.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'TEXT', '20.' => array('value' => 'ImageParallax')))))), 'media' => '< lib.contentElement', 'media.' => array('templateName' => 'Media', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('allowedFileExtensions' => 'youtube, vimeo, mp4'))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON tt_content.uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '100.' => array('if.' => array('isTrue.' => array('field' => 'categories')), 'table' => 'sys_category', 'pidInList' => 'root,-1', 'selectFields' => 'sys_category.*', 'recursive' => '99', 'as' => 'categories'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'quote' => '< lib.contentElement', 'quote.' => array('templateName' => 'Quote'), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'))))), 'social_links' => '< lib.contentElement', 'social_links.' => array('templateName' => 'SocialLinks', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'socialmedia', 'key' => 'page.theme.socialmedia'))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'as' => 'table'))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text'), 'textcolumn' => '< lib.contentElement', 'textcolumn.' => array('templateName' => 'Textcolumn'), 'textteaser' => '< lib.contentElement', 'textteaser.' => array('templateName' => 'Textteaser'), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextpicBelow'), 'TEXT', '25.' => array('value' => 'TextpicRight'), 'TEXT', '26.' => array('value' => 'TextpicLeft'), 'TEXT', '125.' => array('value' => 'TextpicCenteredRight'), 'TEXT', '126.' => array('value' => 'TextpicCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextpicAbove')), 'override.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'TEXT', '10.' => array('value' => 'TextpicContact'), 'TEXT', '15.' => array('value' => 'TextpicContactBuro'), 'TEXT', '25.' => array('value' => 'TextpicApplicationContact'), 'TEXT', '30.' => array('value' => 'TextpicReward'), 'stacked' => 'TEXT', 'stacked.' => array('value' => 'TextpicStacked'), 'besides' => 'TEXT', 'besides.' => array('value' => 'TextpicBesides'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image'))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextmediaBelow'), 'TEXT', '25.' => array('value' => 'TextmediaRight'), 'TEXT', '26.' => array('value' => 'TextmediaLeft'), 'TEXT', '125.' => array('value' => 'TextmediaCenteredRight'), 'TEXT', '126.' => array('value' => 'TextmediaCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextmediaAbove')))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction'))))), 'accordion' => '< lib.contentElement', 'accordion.' => array('templateName' => 'Accordion', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_accordion_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))), 'card_group' => '< lib.contentElement', 'card_group.' => array('templateName' => 'CardGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_card_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'link_icon'), 'as' => 'linkIcon'))))), 'carousel' => '< lib.contentElement', 'carousel.' => array('templateName' => 'Carousel', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options'))))), 'carousel_small' => '< lib.contentElement', 'carousel_small.' => array('templateName' => 'CarouselSmall', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options'))))), 'carousel_fullscreen' => '< lib.contentElement', 'carousel_fullscreen.' => array('templateName' => 'CarouselFullscreen', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options'))))), 'external_media' => '< lib.contentElement', 'external_media.' => array('templateName' => 'ExternalMedia'), 'icon_group' => '< lib.contentElement', 'icon_group.' => array('templateName' => 'IconGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_icon_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'))))), 'listgroup' => '< lib.contentElement', 'listgroup.' => array('templateName' => 'ListGroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'items'))), 'panel' => '< lib.contentElement', 'panel.' => array('templateName' => 'Panel'), 'tab' => '< lib.contentElement', 'tab.' => array('templateName' => 'Tab', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_tab_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))), 'texticon' => '< lib.contentElement', 'texticon.' => array('templateName' => 'Texticon', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'icon', 'if.' => array('isFalse.' => array('field' => 'icon_set'))), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '20.' => array('files.' => array('0.' => array('field' => 'icon')), 'as' => 'icon', 'if.' => array('isTrue.' => array('field' => 'icon_set'))))), 'timeline' => '< lib.contentElement', 'timeline.' => array('templateName' => 'Timeline', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_bootstrappackage_timeline_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'flexform:pi_flexform:sorting', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => 'date desc'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'))))), 'menu_card_dir' => '< lib.contentElement', 'menu_card_dir.' => array('templateName' => 'MenuCardDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_card_list' => '< lib.contentElement', 'menu_card_list.' => array('templateName' => 'MenuCardList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_dir' => '< lib.contentElement', 'menu_thumbnail_dir.' => array('templateName' => 'MenuThumbnailDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_list' => '< lib.contentElement', 'menu_thumbnail_list.' => array('templateName' => 'MenuThumbnailList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement')))), '')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 94
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $conf['table'] . ':' . $row['uid'];
                        $this->cObj->lastChanged($row['tstamp']);
                        $cObj->start($row, $conf['table']);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentContentObject), array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), '20')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 683
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'slide.' => array('cObject' => 'TEXT', 'cObject.' => array('override.' => array('field' => 'slide', 'if.' => array('isInList.' => array('field' => 'slide'), 'value' => '-1, 0, 1, 2')), 'ifEmpty' => '0')), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php line 41
        if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
            return '';
        }

        $content = $this->cObj->cObjGet($conf);
        $wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
        if ($wrap) {
            $content = $this->cObj->wrap($content, $wrap);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject->render(array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'slide.' => array('cObject' => 'TEXT', 'cObject.' => array('override.' => array('field' => 'slide', 'if.' => array('isInList.' => array('field' => 'slide'), 'value' => '-1, 0, 1, 2')), 'ifEmpty' => '0')), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject), array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'slide.' => array('cObject' => 'TEXT', 'cObject.' => array('override.' => array('field' => 'slide', 'if.' => array('isInList.' => array('field' => 'slide'), 'value' => '-1, 0, 1, 2')), 'ifEmpty' => '0')), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('COA', array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'slide.' => array('cObject' => 'TEXT', 'cObject.' => array('override.' => array('field' => 'slide', 'if.' => array('isInList.' => array('field' => 'slide'), 'value' => '-1, 0, 1, 2')), 'ifEmpty' => '0')), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), 'lib.dynamicContent')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 189
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('tx_news.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'parseFunc_powermail.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank', 'forceAbsoluteUrl' => '1'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('data' => 'parameters:target'), 'extTarget' => '_blank', 'extTarget.' => array('override.' => array('data' => 'parameters:target')), 'forceAbsoluteUrl' => '1'))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo,big, blockquote, br, caption, center, cite, code, col,colgroup, dd, del, dfn, dl, div, dt, em, font,footer, header, h1, h2, h3, h4, h5, h6, hr, i, img,ins, kbd, label, li, link, meta, nav, ol, p, pre, q,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="text-highlight">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p, pre, h1, h2, h3, h4, h5, h6, hr, dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'externalBlocks' => 'article, address, aside, blockquote, div, dd, dl, footer,header, nav, ol, section, table, ul, pre', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc', 'HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('ul.' => array('fixAttrib.' => array('class.' => array('default' => 'list-normal')))), 'keepNonMatchedTags' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('wrap' => '<div class="table-responsive">|</div>'), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => ''))))))), 'pre.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('data' => 'parameters:target'), 'extTarget' => '_blank', 'extTarget.' => array('override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo,big, blockquote, br, caption, center, cite, code, col,colgroup, dd, del, dfn, dl, div, dt, em, font,footer, header, h1, h2, h3, h4, h5, h6, hr, i, img,ins, kbd, label, li, link, meta, nav, ol, p, pre, q,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="text-highlight">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'))))), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'address.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'powermail.' => array('salutation' => 'COA', 'salutation.' => array('CASE', '10.' => array('key.' => array('field' => '0'), 'default' => 'TEXT', 'default.' => array('value' => 'Sehr geehrte Damen und Herren,'), 'Herr' => 'TEXT', 'Herr.' => array('value' => 'Sehr geehrter Herr'), 'Frau' => 'TEXT', 'Frau.' => array('value' => 'Sehr geehrte Frau'))), 'anrede' => 'COA', 'anrede.' => array('CASE', '10.' => array('key.' => array('field' => '0'), 'default' => 'TEXT', 'default.' => array('value' => 'Sehr geehrte Damen und Herren,'), 'Herr' => 'TEXT', 'Herr.' => array('value' => 'Sehr geehrter Herr'), 'Frau' => 'TEXT', 'Frau.' => array('value' => 'Sehr geehrte Frau'))), 'messageId' => 'USER', 'messageId.' => array('userFunc' => 'Dia\\DiaPowermail\\User\\DiaPowermailUserFunc->getLatestMailId', 'userFunc.' => array())), 'contentElement.' => array('layoutRootPaths.' => array('EXT:dia_ce/Resources/Private/Layouts/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_common/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_common/Resources/Private/Layouts/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/ContentElements/'), 'partialRootPaths.' => array('EXT:dia_ce/Resources/Private/Partials/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:dia_site/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_common/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_common/Resources/Private/Partials/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/ContentElements/'), 'templateRootPaths.' => array('EXT:dia_ce/Resources/Private/Templates/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:dia_site/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_common/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_common/Resources/Private/Templates/ContentElements/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/ContentElements/'), 'variables.' => array('frameClasses' => 'COA', 'frameClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '200.' => array('field' => 'tx_diacontent_classes', 'required' => '1', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '.', 'replace.' => array('char' => '32')), '20.' => array('search' => ',', 'replace.' => array('char' => '32')))), 'noTrimWrap' => '| ||'), 'TEXT', '10.' => array('field' => 'frame_class', 'required' => '1', 'wrap' => 'frame-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'CType', 'required' => '1', 'wrap' => 'frame-type-|', 'noTrimWrap' => '| ||', 'override.' => array('field' => 'list_type', 'wrap' => 'plugin-|', 'if.' => array('value' => 'list', 'equals.' => array('field' => 'CType')))), 'TEXT', '30.' => array('field' => 'layout', 'required' => '1', 'wrap' => 'frame-layout-|', 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('value' => 'hidden-md hidden-lg', 'if.' => array('isTrue.' => array('field' => 'dia_show_mobile')), 'noTrimWrap' => '| ||'), 'TEXT', '50.' => array('value' => 'hidden-xs hidden-sm', 'if.' => array('isTrue.' => array('field' => 'dia_show_desktop')), 'noTrimWrap' => '| ||')), 'headerClasses' => 'COA', 'headerClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '20.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||'), 'TEXT', '30.' => array('field' => 'header_style', 'required' => '1', 'if.' => array('value.' => array('field' => 'header_style'), 'equals.' => array('field' => 'header_layout'), 'negate' => '1'), 'stdWrap.' => array('prioriCalc' => 'intval', 'wrap' => 'h|', 'if.' => array('isTrue.' => array('field' => 'header_style'))), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'header_color', 'required' => '1', 'wrap' => 'header-color-|', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'header_color')))), 'backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'frameSpaceBeforeClasses' => 'COA', 'frameSpaceBeforeClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'space_before_class', 'required' => '1', 'wrap' => 'frame-space-before-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'space_inner_before_class', 'required' => '1', 'wrap' => 'frame-space-inner-before-|', 'noTrimWrap' => '| ||')), 'frameSpaceAfterClasses' => 'COA', 'frameSpaceAfterClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'space_after_class', 'required' => '1', 'wrap' => 'frame-space-after-|', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'space_inner_after_class', 'required' => '1', 'wrap' => 'frame-space-inner-after-|', 'noTrimWrap' => '| ||')), 'frameHeightClasses' => 'COA', 'frameHeightClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '10.' => array('field' => 'height_class', 'required' => '1', 'wrap' => 'h-|', 'noTrimWrap' => '| ||')), 'elementClasses' => '< lib.contentElement.variables.frameClasses', 'elementClasses.' => array('10.' => array('wrap' => 'element-|'), '20.' => array('wrap' => 'element-type-|'), '30.' => array('wrap' => 'element-layout-|')), 'spaceClasses' => 'COA', 'spaceClasses.' => array('stdWrap.' => array('trim' => '1'), '< lib.contentElement.variables.frameSpaceBeforeClasses', '10.' => array('10.' => array('wrap' => 'margin-above-|'), '20.' => array('wrap' => 'margin-below-|')), '< lib.contentElement.variables.frameSpaceBeforeClasses', '20.' => array('10.' => array('wrap' => 'padding-above-|'), '20.' => array('wrap' => 'padding-below-|')), '< lib.contentElement.variables.frameHeightClasses', '30.' => array('10.' => array('wrap' => 'h-|'))), 'containerLayout' => 'TEXT', 'containerLayout.' => array('wrap3' => '{|}', 'dataWrap' => 'DB:tt_content:{field:tx_gridelements_container}:tx_gridelements_backend_layout', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'tx_gridelements_container'))), 'subHeaderClasses' => 'COA', 'subHeaderClasses.' => array('stdWrap.' => array('trim' => '1'), 'TEXT', '20.' => array('field' => 'header_position', 'required' => '1', 'wrap' => 'text-|', 'noTrimWrap' => '| ||'), 'TEXT', '30.' => array('field' => 'header_style', 'required' => '1', 'if.' => array('value.' => array('field' => 'header_style'), 'equals.' => array('field' => 'header_layout'), 'negate' => '1'), 'stdWrap.' => array('prioriCalc' => 'intval', 'wrap' => 'h|', 'if.' => array('isTrue.' => array('field' => 'header_style')), 'override.' => array('field' => 'header_style', 'dataWrap' => '|+1')), 'noTrimWrap' => '| ||'), 'TEXT', '40.' => array('field' => 'subheader_color', 'required' => '1', 'wrap' => 'header-color-|', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'subheader_color'))))), 'templateName' => 'Default', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '1509614342.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532626753.' => array('fieldName' => 'background_image_options')), 'settings.' => array('header.' => array('defaultHeaderType' => '2', 'class' => 'element-header', 'date.' => array('format' => '%B %e, %Y')), 'subheader.' => array('class' => 'element-subheader'), 'lightbox.' => array('cssClass' => 'fresco', 'prefix' => 'data-fresco-group', 'image.' => array('maxHeight' => '1200', 'maxWidth' => '1200')), 'media.' => array('additionalConfig.' => array('autoplay' => '0', 'controls' => '1', 'loop' => '0', 'enablejsapi' => '1', 'showinfo' => '0', 'relatedVideos' => '0', 'modestbranding' => '0'), 'popup.' => array('linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="{field:uid}" data-fancybox="{field:uid}"')))), 'gallery.' => array('columns.' => array('1.' => array('class' => 'gallery-item-size-1'), '2.' => array('class' => 'gallery-item-size-2', 'multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1200', 'width' => '1920', 'height' => '', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'large.' => array('breakpoint' => '992', 'width' => '1200', 'height' => '', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'medium.' => array('breakpoint' => '768', 'width' => '992', 'height' => '558', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'small.' => array('breakpoint' => '576', 'width' => '768', 'height' => '432', 'sizes.' => array('1x.' => array('multiplier' => '1'))), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '576', 'height' => '432', 'sizes.' => array('1x.' => array('multiplier' => '1')))), 'backendlayout.' => array('2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '21.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '22.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'top.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'bottom.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))))), 'menuthumbnail.' => array('title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '80')), 'menucard.' => array('icon.' => array('enable' => '0', 'height' => '32', 'width' => '32c'), 'title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '100'), 'abstract.' => array('crop' => '250')), 'texticon.' => array('icon.' => array('default.' => array('height' => '32', 'width' => '32'), 'medium.' => array('height' => '48', 'width' => '48'), 'large.' => array('height' => '64', 'width' => '64'), 'awesome.' => array('height' => '80', 'width' => '80'))), 'timeline.' => array('date.' => array('format' => '%B %e, %Y - %H:%M')), 'uploads.' => array('preview.' => array('height' => '100c', 'width' => '100c')))), 'format.' => array('filterName' => 'COA', 'filterName.' => array('TEXT', '5.' => array('field' => 'uid', 'wrap' => '|-'), 'TEXT', '10.' => array('field' => 'header', 'stdWrap.' => array('replacement.' => array('10.' => array('search.' => array('char' => '38'), 'replace.' => array('char' => '32')), '15.' => array('search' => '/\\s\\s+/', 'replace.' => array('char' => '32')), '20.' => array('search' => '/ /', 'useRegExp' => '1', 'replace' => '-'), '30.' => array('search' => 'ä', 'replace' => 'ae'), '31.' => array('search' => 'ö', 'replace' => 'oe'), '32.' => array('search' => 'ü', 'replace' => 'ue'), '33.' => array('search' => 'ß', 'replace' => 'ss'), '40.' => array('search' => '/[^a-zA-Z0-9-_:.]/', 'useRegExp' => '1', 'replace' => '')), 'stdWrap.' => array('trim' => '1', 'case' => 'lower'))), 'stdWrap.' => array('override.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'dia_nav_title', 'required' => '1'))))), 'contentElement' => '< lib.helperTemplate', 'dynamicContent' => 'COA', 'dynamicContent.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'slide.' => array('cObject' => 'TEXT', 'cObject.' => array('override.' => array('field' => 'slide', 'if.' => array('isInList.' => array('field' => 'slide'), 'value' => '-1, 0, 1, 2')), 'ifEmpty' => '0')), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), 'dynamicContentSlide' => '< lib.dynamicContent', 'dynamicContentSlide.' => array('20.' => array('slide' => '-1')), 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('data' => 'parameters:target'), 'extTarget' => '_blank', 'extTarget.' => array('override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo,big, blockquote, br, caption, center, cite, code, col,colgroup, dd, del, dfn, dl, div, dt, em, font,footer, header, h1, h2, h3, h4, h5, h6, hr, i, img,ins, kbd, label, li, link, meta, nav, ol, p, pre, q,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var,a, abbr, acronym, address, article, aside, b, bdo,big, blockquote, br, caption, center, cite, code, col,colgroup, dd, del, dfn, dl, div, dt, em, font,footer, header, h1, h2, h3, h4, h5, h6, hr, i, img,ins, kbd, label, li, link, meta, nav, ol, p, pre, q,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="text-highlight">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'))), 'parseFunc_RTE.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('data' => 'parameters:target'), 'extTarget' => '_blank', 'extTarget.' => array('override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo,big, blockquote, br, caption, center, cite, code, col,colgroup, dd, del, dfn, dl, div, dt, em, font,footer, header, h1, h2, h3, h4, h5, h6, hr, i, img,ins, kbd, label, li, link, meta, nav, ol, p, pre, q,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var,a, abbr, acronym, address, article, aside, b, bdo,big, blockquote, br, caption, center, cite, code, col,colgroup, dd, del, dfn, dl, div, dt, em, font,footer, header, h1, h2, h3, h4, h5, h6, hr, i, img,ins, kbd, label, li, link, meta, nav, ol, p, pre, q,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="text-highlight">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p, pre, h1, h2, h3, h4, h5, h6, hr, dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'externalBlocks' => 'article, address, aside, blockquote, div, dd, dl, footer,header, nav, ol, section, table, ul, pre', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc', 'HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('ul.' => array('fixAttrib.' => array('class.' => array('default' => 'list-normal')))), 'keepNonMatchedTags' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('wrap' => '<div class="table-responsive">|</div>'), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => ''))))))), 'pre.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('data' => 'parameters:target'), 'extTarget' => '_blank', 'extTarget.' => array('override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo,big, blockquote, br, caption, center, cite, code, col,colgroup, dd, del, dfn, dl, div, dt, em, font,footer, header, h1, h2, h3, h4, h5, h6, hr, i, img,ins, kbd, label, li, link, meta, nav, ol, p, pre, q,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var,a, abbr, acronym, address, article, aside, b, bdo,big, blockquote, br, caption, center, cite, code, col,colgroup, dd, del, dfn, dl, div, dt, em, font,footer, header, h1, h2, h3, h4, h5, h6, hr, i, img,ins, kbd, label, li, link, meta, nav, ol, p, pre, q,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="text-highlight">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'))))), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'address.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'block' => 'FLUIDTEMPLATE', 'block.' => array('templateName' => 'Default', 'templateName.' => array('override.' => array('field' => 'template')), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Blocks/', 'EXT:bootstrap_package/Resources/Private/Templates/Blocks/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Blocks/', 'EXT:bootstrap_package/Resources/Private/Partials/Blocks/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Blocks/', 'EXT:bootstrap_package/Resources/Private/Layouts/Blocks/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'))), 'page.' => array('class' => 'COA', 'class.' => array('TEXT', '10.' => array('field' => 'alias // uid', 'noTrimWrap' => '|page-||'), 'TEXT', '20.' => array('data' => 'level:1', 'noTrimWrap' => '| pagelevel-||'), 'TEXT', '30.' => array('data' => 'TSFE:sys_language_uid', 'noTrimWrap' => '| language-||'), 'TEXT', '40.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default', 'noTrimWrap' => '| backendlayout-||'), 'TEXT', '50.' => array('field' => 'layout', 'noTrimWrap' => '| layout-||', 'ifEmpty' => 'default'))), 'tx_form.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'cssClassSplitter' => 'TEXT', 'cssClassSplitter.' => array('value.' => array('field' => 'default'), 'override.' => array('field' => 'class', 'require' => '1'), 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '.', 'replace.' => array('char' => '32')), '20.' => array('search' => ',', 'replace.' => array('char' => '32'))))), 'helperTemplate' => 'FLUIDTEMPLATE', 'helperTemplate.' => array('extbase.' => array('controllerExtensionName' => 'dia_site'), 'layoutRootPaths.' => array('EXT:dia_site/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/'), 'partialRootPaths.' => array('EXT:dia_site/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/'), 'templateRootPaths.' => array('EXT:dia_site/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/')), 'newLine' => 'TEXT', 'newLine.' => array('char' => '10'), 'pageElement' => '< lib.helperTemplate', 'pageElement.' => array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'layoutRootPaths.' => array('EXT:dia_site/Resources/Private/Layouts/Page/', 'EXT:dia_site_common/Resources/Private/Layouts/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Page/', 'EXT:dia_site_common/Resources/Private/Layouts/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Page/'), 'partialRootPaths.' => array('EXT:dia_site/Resources/Private/Partials/Page/', 'EXT:dia_site_common/Resources/Private/Partials/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Page/', 'EXT:dia_site_common/Resources/Private/Partials/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Page/'), 'templateRootPaths.' => array('EXT:dia_site/Resources/Private/Templates/Page/', 'EXT:dia_site_common/Resources/Private/Templates/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Page/', 'EXT:dia_site_common/Resources/Private/Templates/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Page/'), 'settings.' => array('dia_site.' => array('ext.' => array('common' => 'dia_site_common', 'base' => 'dia_site_vilavita_marburg'), 'favicon.' => array('appleTileColor' => '', 'windowsTileColor' => '', 'themeColor' => '')), 'searchbox.' => array('targetPid' => '148'), 'cookieInfo.' => array('targetPid' => '34')), 'variables.' => array('sitetitle' => 'TEXT', 'sitetitle.' => array('value' => ''), 'rootline' => 'TEXT', 'rootline.' => array('value' => '0', 'override' => '1', 'override.' => array('if.' => array('value.' => array('data' => 'leveluid:0'), 'equals.' => array('data' => 'TSFE:id')))), 'rootPid' => 'TEXT', 'rootPid.' => array('data' => 'leveluid:0'), 'header' => 'COA', 'header.' => array('< styles.content.get', '10.' => array('select.' => array('where' => '{#colPos}=30')), 'stdWrap.' => array('ifEmpty.' => array('cObject' => '< styles.content.get', 'cObject.' => array('select.' => array('where' => '{#colPos}=20'), 'slide' => '-1')))), 'main' => '< styles.content.get', 'footer' => '< styles.content.get', 'footer.' => array('select.' => array('where' => '{#colPos}=90'), 'slide' => '-1'))), 'gridelements.' => array('defaultGridSetup.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement', 'cObject.' => array('templateName' => 'Gridelements', 'layoutRootPaths.' => array('EXT:dia_ge/Resources/Private/Layouts/', 'EXT:dia_ge_bootstrap/Resources/Private/Layouts/'), 'templateRootPaths.' => array('EXT:dia_ge/Resources/Private/Templates/', 'EXT:dia_ge_bootstrap/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:dia_ge/Resources/Private/Partials/', 'EXT:dia_ge_bootstrap/Resources/Private/Partials/'), 'settings.' => array('defaultHeaderType' => '100'), 'variables.' => array('templateName' => 'TEXT', 'templateName.' => array('field' => 'tx_gridelements_backend_layout'), 'frameClasses' => 'COA', 'frameClasses.' => array('TEXT', '15.' => array('value' => 'frame-type-gridelements', 'noTrimWrap' => '| ||'), 'TEXT', '20.' => array('field' => 'tx_gridelements_backend_layout', 'required' => '1', 'wrap' => 'frame-type-gridelements-|', 'stdWrap.' => array('case' => 'lower'), 'noTrimWrap' => '| ||')), 'elementClasses' => '< lib.gridelements.defaultGridSetup.variables.frameClasses', 'elementClasses.' => array('15.' => array('value' => 'element-type-gridelements'), '20.' => array('wrap' => 'element-type-gridelements-|'))))), 'bootstrapGridSetup.' => array('Column.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('rowClasses' => 'COA', 'rowClasses.' => array('TEXT', '10.' => array('value' => 'row'), 'TEXT', '20.' => array('field' => 'flexform_advanced_justifyContent', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'flexform_advanced_justifyContent'))), 'TEXT', '30.' => array('field' => 'flexform_advanced_alignItems', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'flexform_advanced_alignItems'))), 'TEXT', '40.' => array('value' => 'no-gutters', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'flexform_advanced_noGutters')))), 'colOneClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colOneClasses.' => array('10.' => array('key' => 'one')), 'colTwoClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colTwoClasses.' => array('10.' => array('key' => 'two')), 'colThreeClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colThreeClasses.' => array('10.' => array('key' => 'three')), 'colFourClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFourClasses.' => array('10.' => array('key' => 'four')), 'colFiveClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colFiveClasses.' => array('10.' => array('key' => 'five')), 'colSixClasses' => '< styles.tx_diagebootstrap.flexToBootstrap', 'colSixClasses.' => array('10.' => array('key' => 'six'))))), '2Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '3Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '4Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), '5Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject', 'cObject.' => array('variables.' => array('rowClasses.' => array('10.' => array('value' => 'row-15'))))), '6Columns.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.bootstrapGridSetup.Column.cObject'), 'Accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Container.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('containerType' => 'TEXT', 'containerType.' => array('field' => 'flexform_general_containerType', 'ifNull' => 'container'), 'frameClasses' => 'COA', 'frameClasses.' => array('TEXT', '100.' => array('value' => 'frame-gridelements-bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'flexform_background_backgroundImage'))), 'TEXT', '200.' => array('value' => 'frame-gridelements-bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'flexform_background_backgroundColor')))), 'elementClasses' => 'COA', 'elementClasses.' => array('TEXT', '100.' => array('value' => 'bg-image', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'flexform_background_backgroundImage'))), 'TEXT', '200.' => array('value' => 'bg-color', 'noTrimWrap' => '| ||', 'if.' => array('isTrue.' => array('field' => 'flexform_background_backgroundColor'))))))), 'ImageGallery.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject', 'cObject.' => array('variables.' => array('colClasses' => 'COA', 'colClasses.' => array('TEXT', '10.' => array('value' => '12 / {field:flexform_general_numColumns}', 'value.' => array('insertData' => '1'), 'prioriCalc' => 'intval', 'noTrimWrap' => '| col-md-||'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('collections.' => array('field' => 'flexform_general_collection'), 'as' => 'files')))), 'Slider.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Tabs.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'Timeline.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'), 'JobApplication.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.gridelements.defaultGridSetup.cObject'))), 'tt_content.' => array('shortcut.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'))), 'helper.' => array('getCategory' => 'COA', 'getCategory.' => array('LOAD_REGISTER', '5.' => array('switch' => 'TEXT', 'switch.' => array('field' => 'fieldName')), 'CONTENT', '10.' => array('table' => 'sys_category', 'select.' => array('pidInList.' => array('field' => 'categoryPid // 1'), 'join' => 'sys_category_record_mm ON sys_category.uid = sys_category_record_mm.uid_local', 'where' => 'sys_category_record_mm.uid_foreign = {field:uid} AND sys_category_record_mm.tablenames = "{field:table}"', 'where.' => array('insertData' => '1')), 'renderObj' => 'CASE', 'renderObj.' => array('key.' => array('data' => 'register:switch'), 'uid' => 'TEXT', 'uid.' => array('field' => 'uid'), 'title' => 'TEXT', 'title.' => array('field' => 'title'), 'default' => 'TEXT', 'default.' => array('field' => 'uid'), 'stdWrap.' => array('noTrimWrap' => '| category||', 'required' => '1'))))), 'fluidComponent' => 'FLUIDTEMPLATE', 'fluidComponent.' => array('layoutRootPaths.' => array('EXT:dia_site_common/Resources/Private/Layouts/Components/'), 'partialRootPaths.' => array('EXT:dia_site_common/Resources/Private/Partials/Components/'), 'templateRootPaths.' => array('EXT:dia_site_common/Resources/Private/Templates/Components/')), 'footerlocations' => 'RECORDS', 'footerlocations.' => array('tables' => 'tt_content', 'source' => '17'), 'dia_mmenu_unfold' => 'TEXT', 'dia_mmenu_unfold.' => array('data' => 'levelfield : -1,dia_mmenu_unfold,slide')), 'lib.dynamicContent', 'dynamicContent')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 166
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('pageUid' => 83, 'colPos' => 0, 'slide' => null), 'typoscriptObjectPath' => 'lib.dynamicContent', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/var/cache/code/fluid_template/Standard_action_NewsDetail_bc2713182c844e6903e8811d120897eaf45392ae.php line 86
$array8 = array (
);$array6['slide'] = $renderingContext->getVariableProvider()->getByPath('theme.pagelayout.{pagelayout}.colPos.0.slide', $array8);
$arguments4['data'] = $array6;
$renderChildrenClosure5 = ($arguments4['data'] !== null) ? function() use ($arguments4) { return $arguments4['data']; } : $renderChildrenClosure5;
$output0 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments4, $renderChildrenClosure5, $renderingContext);

$output0 .= '
        <!--TYPO3SEARCH_end-->
    </main>
at Standard_action_NewsDetail_bc2713182c844e6903e8811d120897eaf45392ae->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 258
                    new InvalidSectionException('Section "' . $sectionName . '" does not exist.')
                );
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('Main', array(), false)
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 172
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'Main', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array(), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/var/cache/code/fluid_template/layout_Default_html_84845390e5a8daab988f7afe33a24b6fa06ea800.php line 279
$arguments33['contentAs'] = NULL;
$arguments33['debug'] = true;
$arguments33['section'] = 'Main';

$output0 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments33, $renderChildrenClosure34, $renderingContext);

$output0 .= '
</div>
';
at layout_Default_html_84845390e5a8daab988f7afe33a24b6fa06ea800->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 200
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 358
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 107

        $this->view->assignMultiple($variables);

        $this->renderFluidTemplateAssetsIntoPageRenderer();
        $content = $this->renderFluidView();
        $content = $this->applyStandardWrapToRenderedContent($content, $conf);

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('extbase.' => array('controllerExtensionName' => 'dia_site'), 'layoutRootPaths.' => array('EXT:dia_site/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_site/Resources/Private/Layouts/Page/', 'EXT:dia_site_common/Resources/Private/Layouts/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Page/', 'EXT:dia_site_common/Resources/Private/Layouts/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/'), 'partialRootPaths.' => array('EXT:dia_site/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_site/Resources/Private/Partials/Page/', 'EXT:dia_site_common/Resources/Private/Partials/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Page/', 'EXT:dia_site_common/Resources/Private/Partials/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/'), 'templateRootPaths.' => array('EXT:dia_site/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_site/Resources/Private/Templates/Page/', 'EXT:dia_site_common/Resources/Private/Templates/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Page/', 'EXT:dia_site_common/Resources/Private/Templates/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/'), 'templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'settings.' => array('dia_site.' => array('ext.' => array('common' => 'dia_site_common', 'base' => 'dia_site_vilavita_marburg'), 'favicon.' => array('appleTileColor' => '', 'windowsTileColor' => '', 'themeColor' => '')), 'searchbox.' => array('targetPid' => '148'), 'cookieInfo.' => array('targetPid' => '34'), 'logo.' => array('height' => '75', 'width' => '128', 'linktitle' => 'Vila Vita Marburg'), 'newsletterLightbox' => '1'), 'variables.' => array('sitetitle' => 'TEXT', 'sitetitle.' => array('value' => ''), 'rootline' => 'TEXT', 'rootline.' => array('value' => '0', 'override' => '1', 'override.' => array('if.' => array('value.' => array('data' => 'leveluid:0'), 'equals.' => array('data' => 'TSFE:id')))), 'rootPid' => 'TEXT', 'rootPid.' => array('data' => 'leveluid:0'), 'pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'TSFE:tmpl|setup|sitetitle'), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'leveluid:0'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'TSFE:tmpl|setup|sitetitle', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'Vila Vita Marburg')), 'TEXT', '20.' => array('value' => 'Vila Vita Marburg', 'if.' => array('isTrue' => 'Vila Vita Marburg'))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array()), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '5', 'includeSpacer' => '1', 'as' => 'mainnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '1')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '1')))))))), 'expandAll' => '1'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel' => '1', 'levels' => '2', 'expandAll' => '1', 'includeSpacer' => '1', 'as' => 'subnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '1')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'as' => 'breadcrumb', 'if.' => array('value' => '1', 'value.' => array('insertData' => '1', 'prioriCalc' => '1', 'stdWrap.' => array('wrap' => '|-1')), 'isGreaterThan.' => array('data' => 'level')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languagenavigation'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '31'), 'includeNotInMenu' => '1', 'as' => 'metanavigation', 'if.' => array('isTrue' => '31')), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '1553883874.' => array('files.' => array('normal' => 'EXT:dia_site_vilavita_marburg/Resources/Public/Images/logo-vila-vita-marburg.svg', 'inverted' => 'EXT:dia_site_vilavita_marburg/Resources/Public/Images/logo-vila-vita-marburg.svg'), 'as' => 'logo'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '100.' => array('special' => 'directory', 'special.' => array('value' => '99'), 'includeNotInMenu' => '1', 'as' => 'flyout')), 'stdWrap.' => array('replacement.' => array('1.' => array('search' => 'http://###BACKEND_URL###/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '2.' => array('search' => '###FRONTEND_URL###', 'replace.' => array('typolink.' => array('parameter.' => array('data' => 'leveluid:0'), 'returnLast' => 'url'))), '3.' => array('search' => '###CURRENTYEAR###', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '4.' => array('search' => '###SPACE###', 'replace.' => array('char' => '32')), '99.' => array('search' => '###GoogleAnalyticsStatus###', 'replace.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('templateName' => 'GoogleAnalyticsStatus', 'templateName.' => array('override.' => array('field' => 'template')), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Blocks/', 'EXT:bootstrap_package/Resources/Private/Templates/Blocks/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Blocks/', 'EXT:bootstrap_package/Resources/Private/Partials/Blocks/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Blocks/', 'EXT:bootstrap_package/Resources/Private/Layouts/Blocks/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme')))))))))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('extbase.' => array('controllerExtensionName' => 'dia_site'), 'layoutRootPaths.' => array('EXT:dia_site/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_site/Resources/Private/Layouts/Page/', 'EXT:dia_site_common/Resources/Private/Layouts/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Page/', 'EXT:dia_site_common/Resources/Private/Layouts/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/'), 'partialRootPaths.' => array('EXT:dia_site/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_site/Resources/Private/Partials/Page/', 'EXT:dia_site_common/Resources/Private/Partials/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Page/', 'EXT:dia_site_common/Resources/Private/Partials/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/'), 'templateRootPaths.' => array('EXT:dia_site/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_site/Resources/Private/Templates/Page/', 'EXT:dia_site_common/Resources/Private/Templates/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Page/', 'EXT:dia_site_common/Resources/Private/Templates/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/'), 'templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'settings.' => array('dia_site.' => array('ext.' => array('common' => 'dia_site_common', 'base' => 'dia_site_vilavita_marburg'), 'favicon.' => array('appleTileColor' => '', 'windowsTileColor' => '', 'themeColor' => '')), 'searchbox.' => array('targetPid' => '148'), 'cookieInfo.' => array('targetPid' => '34'), 'logo.' => array('height' => '75', 'width' => '128', 'linktitle' => 'Vila Vita Marburg'), 'newsletterLightbox' => '1'), 'variables.' => array('sitetitle' => 'TEXT', 'sitetitle.' => array('value' => ''), 'rootline' => 'TEXT', 'rootline.' => array('value' => '0', 'override' => '1', 'override.' => array('if.' => array('value.' => array('data' => 'leveluid:0'), 'equals.' => array('data' => 'TSFE:id')))), 'rootPid' => 'TEXT', 'rootPid.' => array('data' => 'leveluid:0'), 'pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'TSFE:tmpl|setup|sitetitle'), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'leveluid:0'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'TSFE:tmpl|setup|sitetitle', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'Vila Vita Marburg')), 'TEXT', '20.' => array('value' => 'Vila Vita Marburg', 'if.' => array('isTrue' => 'Vila Vita Marburg'))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array()), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '5', 'includeSpacer' => '1', 'as' => 'mainnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '1')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '1')))))))), 'expandAll' => '1'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel' => '1', 'levels' => '2', 'expandAll' => '1', 'includeSpacer' => '1', 'as' => 'subnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '1')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'as' => 'breadcrumb', 'if.' => array('value' => '1', 'value.' => array('insertData' => '1', 'prioriCalc' => '1', 'stdWrap.' => array('wrap' => '|-1')), 'isGreaterThan.' => array('data' => 'level')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languagenavigation'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '31'), 'includeNotInMenu' => '1', 'as' => 'metanavigation', 'if.' => array('isTrue' => '31')), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '1553883874.' => array('files.' => array('normal' => 'EXT:dia_site_vilavita_marburg/Resources/Public/Images/logo-vila-vita-marburg.svg', 'inverted' => 'EXT:dia_site_vilavita_marburg/Resources/Public/Images/logo-vila-vita-marburg.svg'), 'as' => 'logo'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '100.' => array('special' => 'directory', 'special.' => array('value' => '99'), 'includeNotInMenu' => '1', 'as' => 'flyout')), 'stdWrap.' => array('replacement.' => array('1.' => array('search' => 'http://###BACKEND_URL###/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '2.' => array('search' => '###FRONTEND_URL###', 'replace.' => array('typolink.' => array('parameter.' => array('data' => 'leveluid:0'), 'returnLast' => 'url'))), '3.' => array('search' => '###CURRENTYEAR###', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '4.' => array('search' => '###SPACE###', 'replace.' => array('char' => '32')), '99.' => array('search' => '###GoogleAnalyticsStatus###', 'replace.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('templateName' => 'GoogleAnalyticsStatus', 'templateName.' => array('override.' => array('field' => 'template')), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Blocks/', 'EXT:bootstrap_package/Resources/Private/Templates/Blocks/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Blocks/', 'EXT:bootstrap_package/Resources/Private/Partials/Blocks/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Blocks/', 'EXT:bootstrap_package/Resources/Private/Layouts/Blocks/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme')))))))))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('extbase.' => array('controllerExtensionName' => 'dia_site'), 'layoutRootPaths.' => array('EXT:dia_site/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_site/Resources/Private/Layouts/Page/', 'EXT:dia_site_common/Resources/Private/Layouts/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Page/', 'EXT:dia_site_common/Resources/Private/Layouts/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/'), 'partialRootPaths.' => array('EXT:dia_site/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_site/Resources/Private/Partials/Page/', 'EXT:dia_site_common/Resources/Private/Partials/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Page/', 'EXT:dia_site_common/Resources/Private/Partials/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/'), 'templateRootPaths.' => array('EXT:dia_site/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_site/Resources/Private/Templates/Page/', 'EXT:dia_site_common/Resources/Private/Templates/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Page/', 'EXT:dia_site_common/Resources/Private/Templates/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/'), 'templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'settings.' => array('dia_site.' => array('ext.' => array('common' => 'dia_site_common', 'base' => 'dia_site_vilavita_marburg'), 'favicon.' => array('appleTileColor' => '', 'windowsTileColor' => '', 'themeColor' => '')), 'searchbox.' => array('targetPid' => '148'), 'cookieInfo.' => array('targetPid' => '34'), 'logo.' => array('height' => '75', 'width' => '128', 'linktitle' => 'Vila Vita Marburg'), 'newsletterLightbox' => '1'), 'variables.' => array('sitetitle' => 'TEXT', 'sitetitle.' => array('value' => ''), 'rootline' => 'TEXT', 'rootline.' => array('value' => '0', 'override' => '1', 'override.' => array('if.' => array('value.' => array('data' => 'leveluid:0'), 'equals.' => array('data' => 'TSFE:id')))), 'rootPid' => 'TEXT', 'rootPid.' => array('data' => 'leveluid:0'), 'pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'TSFE:tmpl|setup|sitetitle'), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'leveluid:0'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'TSFE:tmpl|setup|sitetitle', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'Vila Vita Marburg')), 'TEXT', '20.' => array('value' => 'Vila Vita Marburg', 'if.' => array('isTrue' => 'Vila Vita Marburg'))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array()), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '5', 'includeSpacer' => '1', 'as' => 'mainnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '1')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '1')))))))), 'expandAll' => '1'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel' => '1', 'levels' => '2', 'expandAll' => '1', 'includeSpacer' => '1', 'as' => 'subnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '1')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'as' => 'breadcrumb', 'if.' => array('value' => '1', 'value.' => array('insertData' => '1', 'prioriCalc' => '1', 'stdWrap.' => array('wrap' => '|-1')), 'isGreaterThan.' => array('data' => 'level')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languagenavigation'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '31'), 'includeNotInMenu' => '1', 'as' => 'metanavigation', 'if.' => array('isTrue' => '31')), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '1553883874.' => array('files.' => array('normal' => 'EXT:dia_site_vilavita_marburg/Resources/Public/Images/logo-vila-vita-marburg.svg', 'inverted' => 'EXT:dia_site_vilavita_marburg/Resources/Public/Images/logo-vila-vita-marburg.svg'), 'as' => 'logo'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '100.' => array('special' => 'directory', 'special.' => array('value' => '99'), 'includeNotInMenu' => '1', 'as' => 'flyout')), 'stdWrap.' => array('replacement.' => array('1.' => array('search' => 'http://###BACKEND_URL###/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '2.' => array('search' => '###FRONTEND_URL###', 'replace.' => array('typolink.' => array('parameter.' => array('data' => 'leveluid:0'), 'returnLast' => 'url'))), '3.' => array('search' => '###CURRENTYEAR###', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '4.' => array('search' => '###SPACE###', 'replace.' => array('char' => '32')), '99.' => array('search' => '###GoogleAnalyticsStatus###', 'replace.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('templateName' => 'GoogleAnalyticsStatus', 'templateName.' => array('override.' => array('field' => 'template')), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Blocks/', 'EXT:bootstrap_package/Resources/Private/Templates/Blocks/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Blocks/', 'EXT:bootstrap_package/Resources/Private/Partials/Blocks/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Blocks/', 'EXT:bootstrap_package/Resources/Private/Layouts/Blocks/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme')))))))), 'lib.helperTemplate')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 719
                list($name, $conf) = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('extbase.' => array('controllerExtensionName' => 'dia_site'), 'layoutRootPaths.' => array('EXT:dia_site/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_site_common/Resources/Private/Layouts/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Helper/', 'EXT:dia_site/Resources/Private/Layouts/Page/', 'EXT:dia_site_common/Resources/Private/Layouts/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Page/', 'EXT:dia_site_common/Resources/Private/Layouts/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/'), 'partialRootPaths.' => array('EXT:dia_site/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_site_common/Resources/Private/Partials/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Helper/', 'EXT:dia_site/Resources/Private/Partials/Page/', 'EXT:dia_site_common/Resources/Private/Partials/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Page/', 'EXT:dia_site_common/Resources/Private/Partials/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/'), 'templateRootPaths.' => array('EXT:dia_site/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_site_common/Resources/Private/Templates/Helper/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Helper/', 'EXT:dia_site/Resources/Private/Templates/Page/', 'EXT:dia_site_common/Resources/Private/Templates/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Page/', 'EXT:dia_site_common/Resources/Private/Templates/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/'), 'templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'settings.' => array('dia_site.' => array('ext.' => array('common' => 'dia_site_common', 'base' => 'dia_site_vilavita_marburg'), 'favicon.' => array('appleTileColor' => '', 'windowsTileColor' => '', 'themeColor' => '')), 'searchbox.' => array('targetPid' => '148'), 'cookieInfo.' => array('targetPid' => '34'), 'logo.' => array('height' => '75', 'width' => '128', 'linktitle' => 'Vila Vita Marburg'), 'newsletterLightbox' => '1'), 'variables.' => array('sitetitle' => 'TEXT', 'sitetitle.' => array('value' => ''), 'rootline' => 'TEXT', 'rootline.' => array('value' => '0', 'override' => '1', 'override.' => array('if.' => array('value.' => array('data' => 'leveluid:0'), 'equals.' => array('data' => 'TSFE:id')))), 'rootPid' => 'TEXT', 'rootPid.' => array('data' => 'leveluid:0'), 'pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'TSFE:tmpl|setup|sitetitle'), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'leveluid:0'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'TSFE:tmpl|setup|sitetitle', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'Vila Vita Marburg')), 'TEXT', '20.' => array('value' => 'Vila Vita Marburg', 'if.' => array('isTrue' => 'Vila Vita Marburg'))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array()), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '5', 'includeSpacer' => '1', 'as' => 'mainnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '1')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '1')))))))), 'expandAll' => '1'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel' => '1', 'levels' => '2', 'expandAll' => '1', 'includeSpacer' => '1', 'as' => 'subnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '1')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'as' => 'breadcrumb', 'if.' => array('value' => '1', 'value.' => array('insertData' => '1', 'prioriCalc' => '1', 'stdWrap.' => array('wrap' => '|-1')), 'isGreaterThan.' => array('data' => 'level')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languagenavigation'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '31'), 'includeNotInMenu' => '1', 'as' => 'metanavigation', 'if.' => array('isTrue' => '31')), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '1553883874.' => array('files.' => array('normal' => 'EXT:dia_site_vilavita_marburg/Resources/Public/Images/logo-vila-vita-marburg.svg', 'inverted' => 'EXT:dia_site_vilavita_marburg/Resources/Public/Images/logo-vila-vita-marburg.svg'), 'as' => 'logo'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '100.' => array('special' => 'directory', 'special.' => array('value' => '99'), 'includeNotInMenu' => '1', 'as' => 'flyout')), 'stdWrap.' => array('replacement.' => array('1.' => array('search' => 'http://###BACKEND_URL###/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '2.' => array('search' => '###FRONTEND_URL###', 'replace.' => array('typolink.' => array('parameter.' => array('data' => 'leveluid:0'), 'returnLast' => 'url'))), '3.' => array('search' => '###CURRENTYEAR###', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '4.' => array('search' => '###SPACE###', 'replace.' => array('char' => '32')), '99.' => array('search' => '###GoogleAnalyticsStatus###', 'replace.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('templateName' => 'GoogleAnalyticsStatus', 'templateName.' => array('override.' => array('field' => 'template')), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Blocks/', 'EXT:bootstrap_package/Resources/Private/Templates/Blocks/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Blocks/', 'EXT:bootstrap_package/Resources/Private/Partials/Blocks/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Blocks/', 'EXT:bootstrap_package/Resources/Private/Layouts/Blocks/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme')))))))), 'lib.pageElement')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 719
                list($name, $conf) = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('< lib.helperTemplate', array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'layoutRootPaths.' => array('EXT:dia_site/Resources/Private/Layouts/Page/', 'EXT:dia_site_common/Resources/Private/Layouts/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Page/', 'EXT:dia_site_common/Resources/Private/Layouts/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/'), 'partialRootPaths.' => array('EXT:dia_site/Resources/Private/Partials/Page/', 'EXT:dia_site_common/Resources/Private/Partials/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Page/', 'EXT:dia_site_common/Resources/Private/Partials/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/'), 'templateRootPaths.' => array('EXT:dia_site/Resources/Private/Templates/Page/', 'EXT:dia_site_common/Resources/Private/Templates/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Page/', 'EXT:dia_site_common/Resources/Private/Templates/Page/', 'EXT:dia_site_vilavita_marburg/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/'), 'settings.' => array('dia_site.' => array('ext.' => array('common' => 'dia_site_common', 'base' => 'dia_site_vilavita_marburg'), 'favicon.' => array('appleTileColor' => '', 'windowsTileColor' => '', 'themeColor' => '')), 'searchbox.' => array('targetPid' => '148'), 'cookieInfo.' => array('targetPid' => '34'), 'logo.' => array('height' => '75', 'width' => '128', 'linktitle' => 'Vila Vita Marburg'), 'newsletterLightbox' => '1'), 'variables.' => array('sitetitle' => 'TEXT', 'sitetitle.' => array('value' => ''), 'rootline' => 'TEXT', 'rootline.' => array('value' => '0', 'override' => '1', 'override.' => array('if.' => array('value.' => array('data' => 'leveluid:0'), 'equals.' => array('data' => 'TSFE:id')))), 'rootPid' => 'TEXT', 'rootPid.' => array('data' => 'leveluid:0'), 'pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'TSFE:tmpl|setup|sitetitle'), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'leveluid:0'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'TSFE:tmpl|setup|sitetitle', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'Vila Vita Marburg')), 'TEXT', '20.' => array('value' => 'Vila Vita Marburg', 'if.' => array('isTrue' => 'Vila Vita Marburg'))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array()), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '5', 'includeSpacer' => '1', 'as' => 'mainnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '1')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '1')))))))), 'expandAll' => '1'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel' => '1', 'levels' => '2', 'expandAll' => '1', 'includeSpacer' => '1', 'as' => 'subnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '1')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'as' => 'breadcrumb', 'if.' => array('value' => '1', 'value.' => array('insertData' => '1', 'prioriCalc' => '1', 'stdWrap.' => array('wrap' => '|-1')), 'isGreaterThan.' => array('data' => 'level')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languagenavigation'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '31'), 'includeNotInMenu' => '1', 'as' => 'metanavigation', 'if.' => array('isTrue' => '31')), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '1553883874.' => array('files.' => array('normal' => 'EXT:dia_site_vilavita_marburg/Resources/Public/Images/logo-vila-vita-marburg.svg', 'inverted' => 'EXT:dia_site_vilavita_marburg/Resources/Public/Images/logo-vila-vita-marburg.svg'), 'as' => 'logo'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '100.' => array('special' => 'directory', 'special.' => array('value' => '99'), 'includeNotInMenu' => '1', 'as' => 'flyout')), 'stdWrap.' => array('replacement.' => array('1.' => array('search' => 'http://###BACKEND_URL###/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '2.' => array('search' => '###FRONTEND_URL###', 'replace.' => array('typolink.' => array('parameter.' => array('data' => 'leveluid:0'), 'returnLast' => 'url'))), '3.' => array('search' => '###CURRENTYEAR###', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '4.' => array('search' => '###SPACE###', 'replace.' => array('char' => '32')), '99.' => array('search' => '###GoogleAnalyticsStatus###', 'replace.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('templateName' => 'GoogleAnalyticsStatus', 'templateName.' => array('override.' => array('field' => 'template')), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Blocks/', 'EXT:bootstrap_package/Resources/Private/Templates/Blocks/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Blocks/', 'EXT:bootstrap_package/Resources/Private/Partials/Blocks/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Blocks/', 'EXT:bootstrap_package/Resources/Private/Layouts/Blocks/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme')))))))), '10')
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 683
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('includeJSFooter.' => array('tx_rxshariff_shariff' => 'EXT:rx_shariff/Resources/Public/JavaScript/shariff.min.js', 'powermailJQueryFormValidation' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/parsley.min.js', 'powermailJQueryTabs' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Tabs.min.js', 'powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'newsDetail' => 'EXT:dia_site_common/Resources/Public/JavaScript/NewsDetail.js', 'selfParallax' => 'EXT:dia_site_common/Resources/Public/JavaScript/SelfParallax.js', 'slideshowstartpage' => 'EXT:dia_site_common/Resources/Public/JavaScript/SlideshowStartpage.js', 'newsletterPopup' => 'EXT:dia_site_common/Resources/Public/JavaScript/NewsletterPopup.js', 'newsletterPopup.' => array('defer' => '1'), 'stickyDisturber' => 'EXT:dia_site_common/Resources/Public/JavaScript/StickyDisturber.js', 'scriptJs' => 'EXT:dia_site_common/Resources/Public/JavaScript/Script.js', 'scriptJs.' => array('defer' => '1'), 'jobApplicationForm' => 'EXT:dia_site_common/Resources/Public/JavaScript/JobApplicationForm.js', 'mmenu' => 'EXT:dia_site_common/Resources/Public/JavaScript/Mmenu.js', 'mobileDetectMordenizr' => 'EXT:dia_site_common/Resources/Public/Libs/mobile-detect/mobile-detect-modernizr.js', 'slickCarousel' => 'EXT:dia_site_common/Resources/Public/JavaScript/ConfigSlick.js'), 'includeCSS.' => array('theme' => 'EXT:dia_site_vilavita_marburg/Resources/Public/Scss/Theme/AllSetup.scss', 'diaGeBootstrap' => 'EXT:dia_ge_bootstrap/Resources/Public/Css/layout.css', 'diaIndexedSearch' => 'EXT:dia_indexed_search/Resources/Public/Css/layout.css'), 'includeCSSLibs.' => array('googlewebfont' => 'https://fonts.googleapis.com/css?family=:', 'googlewebfont.' => array('external' => '1', 'disableCompression' => '1', 'excludeFromConcatenation' => '1', 'fontLoader.' => array('families.' => array(':'), 'enabled' => '1'), 'if.' => array('isTrue' => '0')), 'bootstrappackageicon' => 'EXT:bootstrap_package/Resources/Public/Fonts/bootstrappackageicon.min.css', 'bootstrappackageicon.' => array('fontLoader.' => array('families.' => array('BootstrapPackageIcon'), 'enabled' => '0')), 'animate' => 'EXT:dia_site_common/Resources/Public/Libs/animate/animate.min.css', 'icomoon' => 'EXT:dia_site_common/Resources/Public/Font/icomoon/style.css', 'juxtapose' => 'EXT:dia_site_common/Resources/Public/Libs/juxtapose/juxtapose.css', 'mmenu' => 'EXT:dia_site_common/Resources/Public/Libs/mmenu/jquery.mmenu.all.css', 'owlCarousel' => 'EXT:dia_site_common/Resources/Public/Libs/owlCarousel/owl.carousel.css', 'select2' => 'EXT:dia_site_common/Resources/Public/Libs/select2/Select2.min.css', 'slickCarousel' => 'EXT:dia_site_common/Resources/Public/Libs/slick/slick.css'), 'includeJSFooterlibs.' => array('bootstrap' => 'EXT:dia_site_common/Resources/Public/Libs/bootstrap/bootstrap.min.js', 'jquery' => 'EXT:dia_site_common/Resources/Public/Libs/jquery/jquery-1.12.3.min.js', 'jquery.' => array('forceOnTop' => '1'), 'bowser' => 'EXT:dia_site_common/Resources/Public/Libs/bowser/bowser.js', 'diaSlideIn' => 'EXT:dia_site_common/Resources/Public/Libs/dia/SlideIn.js', 'diaSlideIn.' => array('if.' => array('isTrue' => '{$dia.components.jsLibs.diaSlideIn.enable}')), 'diaScroll' => 'EXT:dia_site_common/Resources/Public/Libs/dia/Scroll.js', 'diaScroll.' => array('if.' => array('isTrue' => '{$dia.components.jsLibs.diaScroll.enable}')), 'diaCookieInfo' => 'EXT:dia_site_common/Resources/Public/Libs/dia/CookieInfo.js', 'diaImageScale' => 'EXT:dia_site_common/Resources/Public/Libs/dia/ImageScaling/scale.min.js', 'diaMain' => 'EXT:dia_site_common/Resources/Public/Libs/dia/Main.js', 'fresco' => 'EXT:dia_site_common/Resources/Public/Libs/fresco/fresco.js', 'imagesloaded' => 'EXT:dia_site_common/Resources/Public/Libs/imagesloaded/imagesloaded.pkgd.min.js', 'incertClient' => 'https://myincert.com/public/api/incertClient.js', 'incertClient.' => array('if.' => array('isInList.' => array('data' => 'TSFE:id'), 'value' => '762,179,412,785,437,12,543,545,771,567,772')), 'isotope' => 'EXT:dia_site_common/Resources/Public/Libs/isotope/isotope.pkgd.min.js', 'juxtapose' => 'EXT:dia_site_common/Resources/Public/Libs/juxtapose/juxtapose.min.js', 'matchHeight' => 'EXT:dia_site_common/Resources/Public/Libs/matchHeight/jquery.matchHeight.min.js', 'mmenu' => 'EXT:dia_site_common/Resources/Public/Libs/mmenu/jquery.mmenu.all.min.js', 'mmenuFixedelements' => 'EXT:dia_site_common/Resources/Public/Libs/mmenu/jquery.mmenu.fixedelements.js', 'mobileDetect' => 'EXT:dia_site_common/Resources/Public/Libs/mobile-detect/mobile-detect.js', 'modernizr' => 'EXT:dia_site_common/Resources/Public/Libs/modernizr/modernizr.js', 'owlCarousel' => 'EXT:dia_site_common/Resources/Public/Libs/owlCarousel/owl.carousel.min.js', 'parallax' => 'EXT:dia_site_common/Resources/Public/Libs/parallax/parallax.min.js', 'parsleyDE' => 'EXT:dia_site_common/Resources/Public/Libs/parsley/parsley-de.js', 'polyfill' => 'EXT:dia_site_common/Resources/Public/JavaScript/polyfill.js', 'select2' => 'EXT:dia_site_common/Resources/Public/Libs/select2/Select2.min.js', 'select2multiCheckboxes' => 'EXT:dia_site_common/Resources/Public/Libs/select2/select2.multi-checkboxes.js', 'slickCarousel' => 'EXT:dia_site_common/Resources/Public/Libs/slick/slick.min.js', 'timeline' => 'EXT:dia_site_common/Resources/Public/Libs/timeline/TimelineLite.min.js', 'truncate' => 'EXT:dia_site_common/Resources/Public/Libs/truncate/truncate.min.js', 'tweenmax' => 'EXT:dia_site_common/Resources/Public/Libs/tweenmax/TweenMax.min.js', 'dianews' => 'EXT:dia_site_common/Resources/Public/JavaScript/Lib/Plugin/dia_news/AjaxPaginate.js', 'gomapsext' => 'EXT:dia_site_common/Resources/Public/JavaScript/Lib/Plugin/gomap/jquery.gomapsext.js', 'gomapsextMarkerCluster' => 'EXT:dia_site_common/Resources/Public/JavaScript/Lib/Plugin/gomap/markerclusterer_compiled.js'), 'COA', '1.' => array('EDITPANEL', '10.' => array('allow' => 'toolbar,move,hide', 'label' => '%s')), 'typeNum' => '0', 'shortcutIcon' => 'EXT:dia_site_vilavita_marburg/Resources/Public/Icons/Favicons/favicon.ico', 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('TEXT', '10.' => array('data' => 'TSFE:id', 'noTrimWrap' => '| id="p|"|'), '< lib.page.class', '20.' => array('stdWrap.' => array('noTrimWrap' => '| class="|"|')), 'wrap' => '<body|>'), 'headerData.' => array('HMENU', '10.' => array('special' => 'browse', 'special.' => array('items' => 'prev|next'), 'TMENU', '1.' => array('NO.' => array('allWrap' => '<link rel="prev" href="|"> |*| <link rel="next" href="|">', 'doNotLinkIt' => '1', 'stdWrap.' => array('typolink.' => array('parameter.' => array('data' => 'field:uid'), 'returnLast' => 'url'))))), 'TEXT', '1000.' => array('value' => '<script>try{Typekit.load({ async: true });}catch(e){}</script>'), 'TEXT', '1637850029.' => array('value' => '<style> .frame-type-image.frame-layout-10 img { height: auto; width: 100%; } </style>')), '< lib.pageElement', '10.' => array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '5', 'includeSpacer' => '1', 'as' => 'mainnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '1', 'if.' => array(*DEEP NESTED ARRAY*)))))))), 'expandAll' => '1'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel' => '1', 'levels' => '2', 'expandAll' => '1', 'includeSpacer' => '1', 'as' => 'subnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '1')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'as' => 'breadcrumb', 'if.' => array('value' => '1', 'value.' => array('insertData' => '1', 'prioriCalc' => '1', 'stdWrap.' => array('wrap' => '|-1')), 'isGreaterThan.' => array('data' => 'level')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languagenavigation'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'directory', 'special.' => array('value' => '31'), 'includeNotInMenu' => '1', 'as' => 'metanavigation', 'if.' => array('isTrue' => '31')), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '1553883874.' => array('files.' => array('normal' => 'EXT:dia_site_vilavita_marburg/Resources/Public/Images/logo-vila-vita-marburg.svg', 'inverted' => 'EXT:dia_site_vilavita_marburg/Resources/Public/Images/logo-vila-vita-marburg.svg'), 'as' => 'logo'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '100.' => array('special' => 'directory', 'special.' => array('value' => '99'), 'includeNotInMenu' => '1', 'as' => 'flyout')), 'settings.' => array('logo.' => array('height' => '75', 'width' => '128', 'linktitle' => 'Vila Vita Marburg'), 'newsletterLightbox' => '1'), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'TSFE:tmpl|setup|sitetitle'), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'leveluid:0'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'TSFE:tmpl|setup|sitetitle', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'Vila Vita Marburg')), 'TEXT', '20.' => array('value' => 'Vila Vita Marburg', 'if.' => array('isTrue' => 'Vila Vita Marburg'))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array()), 'stdWrap.' => array('replacement.' => array('1.' => array('search' => 'http://###BACKEND_URL###/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '2.' => array('search' => '###FRONTEND_URL###', 'replace.' => array('typolink.' => array('parameter.' => array('data' => 'leveluid:0'), 'returnLast' => 'url'))), '3.' => array('search' => '###CURRENTYEAR###', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '4.' => array('search' => '###SPACE###', 'replace.' => array('char' => '32')), '99.' => array('search' => '###GoogleAnalyticsStatus###', 'replace.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('templateName' => 'GoogleAnalyticsStatus', 'templateName.' => array('override.' => array('field' => 'template')), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Blocks/', 'EXT:bootstrap_package/Resources/Private/Templates/Blocks/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Blocks/', 'EXT:bootstrap_package/Resources/Private/Partials/Blocks/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Blocks/', 'EXT:bootstrap_package/Resources/Private/Layouts/Blocks/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme')))))))), 'meta.' => array('viewport' => 'width=device-width, initial-scale=1, minimum-scale=1', 'robots' => 'index,follow', 'apple-mobile-web-app-capable' => 'no', 'X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'google' => 'notranslate', 'google-site-verification' => 'MjZIhhWEtAOANMvxStubHubMh47SWrxS8_v0lRelv3U', 'msvalidate.01' => 'C0E8FC01477AB61A71D5EEC7D7094DB1', 'description' => ''), 'includeJSLibs.' => array('modernizr' => '', 'modernizr.' => array('forceOnTop' => '1', 'async' => '1'), 'webFont' => '{$dia.components.webfonts.primary.inclusion}', 'webfont.' => array('external' => '1')), 'jsInline.' => array(), 'theme.' => array('browserWarning.' => array('enable' => '1')), 'headTag' => ' <head> <script id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="1790736f-c522-4243-8572-785a73418715" data-blockingmode="auto" type="text/javascript" data-ignore="1"></script>', 'config.' => array('contentObjectExceptionHandler' => '0'), 'TEXT', '999.' => array('value' => ' <!-- Dialogshift Chatbot --> <script> ;(function() { var script = document.createElement(\'script\'); script.src = \'https://assets.dialogshift.com/code/pro1cbf.js\'; document.getElementsByTagName(\'head\')[0].appendChild(script); })() </script> <!-- Dialogshift Chatbot End -->')))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 246
     * @return string
     */
    protected function generatePageContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 268
     */
    protected function generatePageContentWithHeader(TypoScriptFrontendController $controller, ?SiteLanguage $siteLanguage): string
    {
        // Generate the page content, this has to be first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageContent($controller);
        $pageRenderer = $this->getPageRenderer();
        if ($controller->config['config']['moveJsFromHeaderToFooter'] ?? false) {
            $pageRenderer->enableMoveJsFromHeaderToFooter();
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContentWithHeader(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Site\Entity\SiteLanguage))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 168
            // If 'disableAllHeaderCode' is set, all the header-code is discarded
            if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
                $controller->content = $this->generatePageContent($controller);
            } else {
                $controller->content = $this->generatePageContentWithHeader($controller, $request->getAttribute('language', null));
            }

            $this->timeTracker->pull($this->timeTracker->LR ? $controller->content : '');
            $this->timeTracker->decStackPointer();
at TYPO3\CMS\Frontend\Http\RequestHandler->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 46
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3conf/ext/crawler/Classes/Middleware/CrawlerInitialization.php line 58
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $queueParameters = $request->getAttribute('tx_crawler');
        if ($queueParameters === null) {
            return $handler->handle($request);
        }

        $GLOBALS['TSFE']->applicationData['forceIndexing'] = true;
        $GLOBALS['TSFE']->applicationData['tx_crawler']['running'] = true;
at AOE\Crawler\Middleware\CrawlerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/feedit/Classes/Middleware/FrontendEditInitiator.php line 79
                    }
                }
            }
        }
        return $handler->handle($request);
    }

    /**
     * Returns TRUE if an edit-action is sent from the Admin Panel
at TYPO3\CMS\Feedit\Middleware\FrontendEditInitiator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 44
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelDataPersister->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelRenderer.php line 46
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelRenderer->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting()) {
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 65
                return new RedirectResponse($externalUrl, 303);
            }
        }

        return $handler->handle($request);
    }

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 118
                GeneralUtility::makeInstance($className)->checkDataSubmission($this->controller);
            }
        }

        return $handler->handle($request);
    }

    /**
     * Small helper function to convert charsets for arrays to UTF-8
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 99
                    ['code' => PageAccessFailureReasons::CACHEHASH_COMPARISON_FAILED]
                );
            }
        }
        return $handler->handle($request);
    }

    /**
     * Calculates a hash string based on additional parameters in the url.
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 53
        ) {
            return GeneralUtility::makeInstance(ErrorController::class)->unavailableAction($request, 'This page is temporarily unavailable.');
        }
        // Continue the regular stack if no maintenance mode is active
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\MaintenanceMode->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 171
            }
            $this->controller->determineId();
        }

        return $handler->handle($request);
    }

    /**
     * Provides ways to bypass the '?id=[xxx]&type=[xx]' format, using either PATH_INFO or Server Rewrites
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3conf/ext/crawler/Classes/Middleware/FrontendUserAuthenticator.php line 73
        $jsonCompatibilityConverter = GeneralUtility::makeInstance(JsonCompatibilityConverter::class);

        $crawlerInformation = $request->getHeaderLine($this->headerName) ?? null;
        if (empty($crawlerInformation)) {
            return $handler->handle($request);
        }

        // Authenticate crawler request:
        //@todo: ask service to exclude current call for special reasons: for example no relevance because the language version is not affected
at AOE\Crawler\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/workspaces/Classes/Middleware/WorkspacePreview.php line 110
            // Caching is disabled, because otherwise generated URLs could include the ADMCMD_noBeUser parameter
            $GLOBALS['TSFE']->set_no_cache('GET Parameter ADMCMD_noBeUser was given', true);
        }

        $response = $handler->handle($request);

        // Add a info box to the frontend content
        if ($GLOBALS['TSFE']->doWorkspacePreview() && $GLOBALS['TSFE']->isOutputting()) {
            $previewInfo = $this->renderPreviewInfo($GLOBALS['TSFE'], $request->getAttribute('normalizedParams'));
at TYPO3\CMS\Workspaces\Middleware\WorkspacePreview->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/PreviewSimulator.php line 62
            $showHiddenRecords = ($this->context->hasAspect('visibility') ? $this->context->getAspect('visibility')->includeHidden() : false);
            $GLOBALS['TSFE']->fePreview = ($simulatingDate || $simulatingGroup || $showHiddenRecords);
        }

        return $handler->handle($request);
    }

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 70
                return $response;
            }
        }

        return $handler->handle($request);
    }

    /**
     * Creates a PSR-7 compatible Response object
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 62

                return new HtmlResponse($content, 200, ['Content-Type' => $contentType]);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 62

                return new HtmlResponse($content, 200, ['Content-Type' => $contentType]);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/packages/dia/Classes/Frontend/Middleware/StaticRouteResolver.php line 35
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $this->request = $request;

        return parent::process($request, $handler);
    }

    /**
     * @param string $uri
at Dia\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 86
                $uri = $requestedUri->withPath(rtrim($requestedUri->getPath(), '/'));
                return new RedirectResponse($uri, 307);
            }
        }
        return $handler->handle($request);
    }
    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
     *
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelInitiator.php line 58
            $beUser = $GLOBALS['BE_USER'];
            $beUser->adminPanel = GeneralUtility::makeInstance(AdminPanelView::class);
            $beUser->extAdmEnabled = true;
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelInitiator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 68
        // At this point, we later get further route modifiers
        // for bw-compat we update $GLOBALS[TYPO3_REQUEST] to be used later in TSFE.
        $GLOBALS['TYPO3_REQUEST'] = $request;

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/adminpanel/Classes/Middleware/SqlLogging.php line 49
            $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
            $connection = $connectionPool->getConnectionByName(ConnectionPool::DEFAULT_CONNECTION_NAME);
            $connection->getConfiguration()->setSQLLogger(GeneralUtility::makeInstance(DoctrineSqlLogger::class));
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\SqlLogging->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 95
            Bootstrap::loadExtTables();
            $this->setBackendUserAspect(GeneralUtility::makeInstance(Context::class), $GLOBALS['BE_USER']);
        }

        return $handler->handle($request);
    }

    /**
     * Creates the backend user object and returns it.
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 85

        // Register the frontend user as aspect
        $this->setFrontendUserAspect(GeneralUtility::makeInstance(Context::class), $frontendUser);

        return $handler->handle($request);
    }

    /**
     * It's possible to transfer a frontend user session via a GET/POST parameter 'FE_SESSION_KEY'.
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 90
                GeneralUtility::callUserFunction($_funcRef, $_params, $GLOBALS['TSFE']);
            }
        }

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3conf/ext/yoast_seo/Classes/Middleware/PageRequestMiddleware.php line 32
        if (YoastRequestHash::isValid($request->getServerParams())) {
            $context = GeneralUtility::makeInstance(Context::class);
            $context->setAspect('visibility', new VisibilityAspect(true));
        }
        return $handler->handle($request);
    }
}
at YoastSeoForTypo3\YoastSeo\Middleware\PageRequestMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 50
    {
        $eID = $request->getParsedBody()['eID'] ?? $request->getQueryParams()['eID'] ?? null;

        if ($eID === null) {
            return $handler->handle($request);
        }

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3conf/ext/zabbix_client/Classes/Middleware/ZabbixClient.php line 48
        if (strpos($requestedUri->getPath(), '/zabbixclient/') === 0) {
            return $this->processRequest($request);
        }

        return $handler->handle($request);
    }

    private function processRequest(ServerRequestInterface $request)
    {
at WapplerSystems\ZabbixClient\Middleware\ZabbixClient->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/PreprocessRequestHook.php line 57
                $hookParameters = [];
                GeneralUtility::callUserFunction($hookFunction, $hookParameters, $hookParameters);
            }
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PreprocessRequestHook->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 58
        // refactored to have ServerRequest object available where it is needed. This global will be
        // deprecated then and removed.
        $GLOBALS['TYPO3_REQUEST'] = $request;

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 49
        );
        $timeTracker->start();
        $timeTracker->push('');

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7fcfd6949056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 67
     * @return ResponseInterface
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/AbstractApplication.php line 108
    {
        $requestHandler = GeneralUtility::makeInstance($this->requestHandler);
        $dispatcher = $this->createMiddlewareDispatcher($requestHandler);

        return $dispatcher->handle($request);
    }

    /**
     * Set up the application and shut it down afterwards
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/frontend/Classes/Http/Application.php line 69
        if (!$this->checkIfEssentialConfigurationExists()) {
            return $this->installToolRedirect();
        }
        $this->initializeContext();
        return parent::handle($request);
    }

    /**
     * Check if LocalConfiguration.php and PackageStates.php exist
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/typo3/sysext/core/Classes/Http/AbstractApplication.php line 120
    final public function run(callable $execute = null)
    {
        try {
            $response = $this->handle(
                \TYPO3\CMS\Core\Http\ServerRequestFactory::fromGlobals()
            );
            if ($execute !== null) {
                call_user_func($execute);
            }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/index.php line 24
// Set up the application for the frontend
call_user_func(function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /www/htdocs/w012e9f3/vvmr_typo3_v9/releases/2024-03-27_6206b6e1/public/index.php line 25
call_user_func(function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});