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) #1176558158 TYPO3\CMS\Extbase\Mvc\Exception\NoSuchArgumentException

An argument "id" does not exist for this request.

in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/extbase/Classes/Mvc/ExtbaseRequestParameters.php line 375
     */
    public function getArgument($argumentName)
    {
        if (!isset($this->arguments[$argumentName])) {
            throw new NoSuchArgumentException('An argument "' . $argumentName . '" does not exist for this request.', 1176558158);
        }
        return $this->arguments[$argumentName];
    }

at TYPO3\CMS\Extbase\Mvc\ExtbaseRequestParameters->getArgument('id')
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/extbase/Classes/Mvc/Request.php line 235
     * @inheritdoc
     */
    public function getArgument($argumentName)
    {
        return $this->getExtbaseAttribute()->getArgument($argumentName);
    }

    /**
     * @inheritDoc
at TYPO3\CMS\Extbase\Mvc\Request->getArgument('id')
in /pages/51/21/d0012242/home/htdocs/typo3_11/Sources/Extensions/mtmfertighauswelt/Classes/Controller/HouseController.php line 122
     * 
     * @return void
     */
    public function showAction() {
        $Uid = $this->request->getArgument('id');

        $sessionData = $this->session->get($this->request->getControllerExtensionName() . 'Requestlist');
        $sessionArray = json_decode($sessionData, true);

at Matoma\Mtmfertighauswelt\Controller\HouseController->showAction()
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 571
        }
        $validationResult = $this->arguments->validate();
        if (!$validationResult->hasErrors()) {
            $this->eventDispatcher->dispatch(new BeforeActionCallEvent(static::class, $this->actionMethodName, $preparedArguments));
            $actionResult = $this->{$this->actionMethodName}(...$preparedArguments);
        } else {
            $actionResult = $this->{$this->errorMethodName}();
        }

at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->callActionMethod(object(TYPO3\CMS\Extbase\Mvc\Request))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 488
        $this->view = $this->resolveView();
        if ($this->view !== null && method_exists($this, 'initializeView')) {
            $this->initializeView($this->view);
        }
        $response = $this->callActionMethod($request);
        $this->renderAssetsForRequest($request);

        return $response;
    }
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Request))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 96
                throw new InfiniteLoopException('Could not ultimately dispatch the request after ' . $dispatchLoopCount . ' iterations. Most probably, a @' . IgnoreValidation::class . ' annotation is missing on re-displaying a form with validation errors.', 1217839467);
            }
            $controller = $this->resolveController($request);
            try {
                $response = $controller->processRequest($request);
                if ($response instanceof ForwardResponse) {
                    // The controller action returned an extbase internal Forward response:
                    // Another action should be dispatched.
                    $request = static::buildRequestFromCurrentRequestAndForwardResponse($request, $response);
at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Request))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 46
     * @throws InfiniteLoopException
     */
    public function handleRequest(RequestInterface $request)
    {
        return $this->dispatcher->dispatch($request);
    }

    /**
     * This request handler can handle any web request.
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest(object(TYPO3\CMS\Extbase\Mvc\Request))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 165
        }

        // Dispatch the extbase request
        $requestHandler = $this->requestHandlerResolver->resolveRequestHandler($extbaseRequest);
        $response = $requestHandler->handleRequest($extbaseRequest);
        if ($response->getStatusCode() >= 300) {
            // Avoid caching the plugin when we issue a redirect or error response
            // This means that even when an action is configured as cachable
            // we avoid the plugin to be cached, but keep the page cache untouched
at TYPO3\CMS\Extbase\Core\Bootstrap->handleFrontendRequest(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 148
    public function run(string $content, array $configuration, ?ServerRequestInterface $request = null): string
    {
        $request = $request ?? $GLOBALS['TYPO3_REQUEST'];
        $this->initialize($configuration);
        return $this->handleFrontendRequest($request);
    }

    protected function handleFrontendRequest(ServerRequestInterface $request): string
    {
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Housedetail'), object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5431
                        // Extensions should either drop the property altogether if they don't need current instance
                        // of ContentObjectRenderer, or set the property to protected and use the setter above.
                        $classObj->cObj = $this;
                    }
                    $content = $callable($content, $conf, $this->getRequest());
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', LogLevel::ERROR);
                }
            } else {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Housedetail'), '')
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 44
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->processNonCacheableContentPartsAndSubstituteContentMarkers()!
            $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' => 'Mtmfertighauswelt', 'pluginName' => 'Housedetail'))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // 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' => 'Mtmfertighauswelt', 'pluginName' => 'Housedetail'))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Housedetail'), 'tt_content.list.20.mtmfertighauswelt_housedetail')
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 197
        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'), 'newsslider_flexslider' => 'USER', 'newsslider_flexslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'flexslider'), 'newsslider_nivoslider' => 'USER', 'newsslider_nivoslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'nivoslider'), 'newsslider_camera' => 'USER', 'newsslider_camera.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'camera'), 'newsslider_slickslider' => 'USER', 'newsslider_slickslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'slickslider'), 'newsslider_customslider' => 'USER', 'newsslider_customslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'customslider'), 'newsslider_swiperslider' => 'USER', 'newsslider_swiperslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'swiperslider'), 'dpnglossary_glossary' => 'USER', 'dpnglossary_glossary.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossary'), 'dpnglossary_glossarypreview' => 'USER', 'dpnglossary_glossarypreview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossarypreview'), 'genericgallery_pi1' => 'USER', 'genericgallery_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GenericGallery', 'pluginName' => 'Pi1'), 'mtmfertighauswelt_houselist' => 'USER', 'mtmfertighauswelt_houselist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houselist'), 'mtmfertighauswelt_houseslider' => 'USER', 'mtmfertighauswelt_houseslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houseslider'), 'mtmfertighauswelt_housedetail' => 'USER', 'mtmfertighauswelt_housedetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Housedetail'), 'mtmfertighauswelt_manufacturerlist' => 'USER', 'mtmfertighauswelt_manufacturerlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerlist'), 'mtmfertighauswelt_manufacturerslider' => 'USER', 'mtmfertighauswelt_manufacturerslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerslider'), 'mtmfertighauswelt_manufacturerdetail' => 'USER', 'mtmfertighauswelt_manufacturerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerdetail'), 'mtmfertighauswelt_imagemap' => 'USER', 'mtmfertighauswelt_imagemap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Imagemap'), 'mtmfertighauswelt_requestlistdetail' => 'USER', 'mtmfertighauswelt_requestlistdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistdetail'), 'mtmfertighauswelt_requestlistwidget' => 'USER', 'mtmfertighauswelt_requestlistwidget.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistwidget'), 'mtmslider_sliderview' => 'USER', 'mtmslider_sliderview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmslider', 'pluginName' => 'Sliderview'), 'mtmumkreissuche_umkreissuche' => 'USER', 'mtmumkreissuche_umkreissuche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MtmUmkreissuche', 'pluginName' => 'Umkreissuche'), 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment')), 'tt_content.list.20.mtmfertighauswelt_housedetail', 'mtmfertighauswelt_housedetail')
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 174
                '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' => 1746, 'rowDescription' => '', 'pid' => 296, 'tstamp' => 1698225452, 'crdate' => 1600697732, 'cruser_id' => 2, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 128, 'editlock' => 0, 'sys_language_uid' => 0, 'l18n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l18n_diffsource' => '{"CType":"","colPos":"","header":"","header_layout":"","header_position":"","date":"","header_link":"","subheader":"","list_type":"","pages":"","recursive":"","layout":"","frame_class":"","space_before_class":"","space_after_class":"","tx_backgroundimage4ce_active":"","sectionIndex":"","linkToTop":"","tx_dpnglossary_disable_parser":"","sys_language_uid":"","hidden":"","starttime":"","endtime":"","fe_group":"","editlock":"","categories":"","rowDescription":"","tx_gridelements_container":""}', 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 'CType' => 'list', 'header' => '', 'header_position' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => '0', 'frame_class' => 'default', 'cols' => 0, 'spaceBefore' => 0, 'spaceAfter' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => '', 'pages' => '', 'colPos' => 2, 'subheader' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '0', 'list_type' => 'mtmfertighauswelt_housedetail', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'filelink_sorting_direction' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="general"> <language index="lDEF"> <field index="settings.housedetailpage"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">House-&gt;show;Requestlist-&gt;additem;Manufacturer-&gt;show</value> </field> <field index="settings.manufacturerdetailpage"> <value index="vDEF">294</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'selected_categories' => '', 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 2241, 'categories' => 0, 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '0', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'tx_news_related_news' => 0, 'tx_slick_pages' => null, 'tx_mask_icon' => '', 'tx_mask_linkname' => 'Linkname', 'tx_mask_backgroundcolor' => '', 'tx_backgroundimage4ce_active' => 0, 'tx_backgroundimage4ce_image' => 0, 'tx_backgroundimage4ce_repeat' => '', 'tx_backgroundimage4ce_color' => '', 'tx_backgroundimage4ce_position' => '', 'tx_backgroundimage4ce_size' => '', 'tx_backgroundimage4ce_attachment' => '', 'tx_backgroundimage4ce_autoheight' => 0, 'tx_backgroundimage4ce_height' => 0, 'tx_mask_tabs' => 0, 'tx_mask_tab_inhalt_parent' => 0, 'tx_mask_icon_alignment' => '', 'tx_mask_image_alignment' => '', 'tx_mask_button_alignment' => '', 'tx_mask_buttonfarbe' => '', 'tx_mask_buttonicon' => '', 'tx_mask_buttonziel' => null, 'tx_mask_ticketbutton' => 0, 'tx_mask_ticketbutton_parent' => 0, 'tx_mask_ticketvarianten' => 0, 'tx_mask_box_size' => '', 'gridelements_shortcut_page_order_by' => 0, 'tx_backgroundimage4ce_opacity' => 0, 'tx_dpnglossary_disable_parser' => 0, 'tx_generic_gallery_predefined' => null, 'tx_generic_gallery_items' => 0, 'tx_generic_gallery_images' => null, 'tx_generic_gallery_collection' => 0, 'tx_mask_content_parent_uid' => 0, 'tx_mask_content_tablenames' => '', 'tx_mask_content_role' => ''), 'typoscriptObjectPath' => 'tt_content.list.20.mtmfertighauswelt_housedetail', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /pages/51/21/d0012242/home/htdocs/typo3_11/var/cache/code/fluid_template/Standard_action_list_3243c3ee544c50980e07ad1e7c831bd103d6f856.php line 72
'currentValueKey' => NULL,
'table' => 'tt_content',
];
$renderChildrenClosure6 = ($arguments5['data'] !== null) ? function() use ($arguments5) { return $arguments5['data']; } : $renderChildrenClosure6;
$output4 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments5, $renderChildrenClosure6, $renderingContext);

$output4 .= '
    ';
return $output4;
at Standard_action_list_3243c3ee544c50980e07ad1e7c831bd103d6f856->{closure}()
in /pages/51/21/d0012242/home/htdocs/typo3_11/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__then'])) {
                return $arguments['__then']();
            }
            return '';
        }
        if (!empty($arguments['__elseIf'])) {
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__then' => object(Closure)), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /pages/51/21/d0012242/home/htdocs/typo3_11/var/cache/code/fluid_template/Standard_action_list_3243c3ee544c50980e07ad1e7c831bd103d6f856.php line 80
return $output4;
},
];

$output0 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments1, static fn() => '', $renderingContext)
;

$output0 .= '

at Standard_action_list_3243c3ee544c50980e07ad1e7c831bd103d6f856->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /pages/51/21/d0012242/home/htdocs/typo3_11/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 257
                    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 /pages/51/21/d0012242/home/htdocs/typo3_11/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 166
            $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 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, 'arguments' => array(), 'optional' => true, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /pages/51/21/d0012242/home/htdocs/typo3_11/var/cache/code/fluid_template/layout_Default_html_61a98dc6f41528a953fd50c663bfc9c513744921.php line 333
'contentAs' => NULL,
'debug' => true,
];

$output7 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments40, $renderChildrenClosure41, $renderingContext);

$output7 .= '
                ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_61a98dc6f41528a953fd50c663bfc9c513744921->{closure}()
in /pages/51/21/d0012242/home/htdocs/typo3_11/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__then'])) {
                return $arguments['__then']();
            }
            return '';
        }
        if (!empty($arguments['__elseIf'])) {
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__then' => object(Closure), '__else' => object(Closure)), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /pages/51/21/d0012242/home/htdocs/typo3_11/var/cache/code/fluid_template/layout_Default_html_61a98dc6f41528a953fd50c663bfc9c513744921.php line 803
return $output58;
},
];

$output3 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments4, static fn() => '', $renderingContext)
;

$output3 .= '
';
at layout_Default_html_61a98dc6f41528a953fd50c663bfc9c513744921->{closure}()
in /pages/51/21/d0012242/home/htdocs/typo3_11/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 /pages/51/21/d0012242/home/htdocs/typo3_11/var/cache/code/fluid_template/layout_Default_html_61a98dc6f41528a953fd50c663bfc9c513744921.php line 814

$arguments1 = [
];

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

$output0 .= '

';
at layout_Default_html_61a98dc6f41528a953fd50c663bfc9c513744921->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /pages/51/21/d0012242/home/htdocs/typo3_11/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 199
            } 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 /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 340
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 106

        $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('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:base_template/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:base_template/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:base_template/Resources/Private/Layouts/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="jnlightbox" data-title="{file:current:title}" rel="lightbox[lb{file:current:uid_foreign}]" data-lightbox="lightbox-{file:current:uid_foreign}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'newsslider_flexslider' => 'USER', 'newsslider_flexslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'flexslider'), 'newsslider_nivoslider' => 'USER', 'newsslider_nivoslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'nivoslider'), 'newsslider_camera' => 'USER', 'newsslider_camera.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'camera'), 'newsslider_slickslider' => 'USER', 'newsslider_slickslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'slickslider'), 'newsslider_customslider' => 'USER', 'newsslider_customslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'customslider'), 'newsslider_swiperslider' => 'USER', 'newsslider_swiperslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'swiperslider'), 'dpnglossary_glossary' => 'USER', 'dpnglossary_glossary.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossary'), 'dpnglossary_glossarypreview' => 'USER', 'dpnglossary_glossarypreview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossarypreview'), 'genericgallery_pi1' => 'USER', 'genericgallery_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GenericGallery', 'pluginName' => 'Pi1'), 'mtmfertighauswelt_houselist' => 'USER', 'mtmfertighauswelt_houselist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houselist'), 'mtmfertighauswelt_houseslider' => 'USER', 'mtmfertighauswelt_houseslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houseslider'), 'mtmfertighauswelt_housedetail' => 'USER', 'mtmfertighauswelt_housedetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Housedetail'), 'mtmfertighauswelt_manufacturerlist' => 'USER', 'mtmfertighauswelt_manufacturerlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerlist'), 'mtmfertighauswelt_manufacturerslider' => 'USER', 'mtmfertighauswelt_manufacturerslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerslider'), 'mtmfertighauswelt_manufacturerdetail' => 'USER', 'mtmfertighauswelt_manufacturerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerdetail'), 'mtmfertighauswelt_imagemap' => 'USER', 'mtmfertighauswelt_imagemap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Imagemap'), 'mtmfertighauswelt_requestlistdetail' => 'USER', 'mtmfertighauswelt_requestlistdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistdetail'), 'mtmfertighauswelt_requestlistwidget' => 'USER', 'mtmfertighauswelt_requestlistwidget.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistwidget'), 'mtmslider_sliderview' => 'USER', 'mtmslider_sliderview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmslider', 'pluginName' => 'Sliderview'), 'mtmumkreissuche_umkreissuche' => 'USER', 'mtmumkreissuche_umkreissuche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MtmUmkreissuche', 'pluginName' => 'Umkreissuche'), 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'))))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // 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(MASK\Mask\Fluid\FluidTemplateContentObject), array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:base_template/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:base_template/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:base_template/Resources/Private/Layouts/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="jnlightbox" data-title="{file:current:title}" rel="lightbox[lb{file:current:uid_foreign}]" data-lightbox="lightbox-{file:current:uid_foreign}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'newsslider_flexslider' => 'USER', 'newsslider_flexslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'flexslider'), 'newsslider_nivoslider' => 'USER', 'newsslider_nivoslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'nivoslider'), 'newsslider_camera' => 'USER', 'newsslider_camera.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'camera'), 'newsslider_slickslider' => 'USER', 'newsslider_slickslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'slickslider'), 'newsslider_customslider' => 'USER', 'newsslider_customslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'customslider'), 'newsslider_swiperslider' => 'USER', 'newsslider_swiperslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'swiperslider'), 'dpnglossary_glossary' => 'USER', 'dpnglossary_glossary.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossary'), 'dpnglossary_glossarypreview' => 'USER', 'dpnglossary_glossarypreview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossarypreview'), 'genericgallery_pi1' => 'USER', 'genericgallery_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GenericGallery', 'pluginName' => 'Pi1'), 'mtmfertighauswelt_houselist' => 'USER', 'mtmfertighauswelt_houselist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houselist'), 'mtmfertighauswelt_houseslider' => 'USER', 'mtmfertighauswelt_houseslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houseslider'), 'mtmfertighauswelt_housedetail' => 'USER', 'mtmfertighauswelt_housedetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Housedetail'), 'mtmfertighauswelt_manufacturerlist' => 'USER', 'mtmfertighauswelt_manufacturerlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerlist'), 'mtmfertighauswelt_manufacturerslider' => 'USER', 'mtmfertighauswelt_manufacturerslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerslider'), 'mtmfertighauswelt_manufacturerdetail' => 'USER', 'mtmfertighauswelt_manufacturerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerdetail'), 'mtmfertighauswelt_imagemap' => 'USER', 'mtmfertighauswelt_imagemap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Imagemap'), 'mtmfertighauswelt_requestlistdetail' => 'USER', 'mtmfertighauswelt_requestlistdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistdetail'), 'mtmfertighauswelt_requestlistwidget' => 'USER', 'mtmfertighauswelt_requestlistwidget.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistwidget'), 'mtmslider_sliderview' => 'USER', 'mtmslider_sliderview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmslider', 'pluginName' => 'Sliderview'), 'mtmumkreissuche_umkreissuche' => 'USER', 'mtmumkreissuche_umkreissuche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MtmUmkreissuche', 'pluginName' => 'Umkreissuche'), 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'))))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:base_template/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:base_template/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:base_template/Resources/Private/Layouts/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="jnlightbox" data-title="{file:current:title}" rel="lightbox[lb{file:current:uid_foreign}]" data-lightbox="lightbox-{file:current:uid_foreign}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'newsslider_flexslider' => 'USER', 'newsslider_flexslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'flexslider'), 'newsslider_nivoslider' => 'USER', 'newsslider_nivoslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'nivoslider'), 'newsslider_camera' => 'USER', 'newsslider_camera.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'camera'), 'newsslider_slickslider' => 'USER', 'newsslider_slickslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'slickslider'), 'newsslider_customslider' => 'USER', 'newsslider_customslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'customslider'), 'newsslider_swiperslider' => 'USER', 'newsslider_swiperslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'swiperslider'), 'dpnglossary_glossary' => 'USER', 'dpnglossary_glossary.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossary'), 'dpnglossary_glossarypreview' => 'USER', 'dpnglossary_glossarypreview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossarypreview'), 'genericgallery_pi1' => 'USER', 'genericgallery_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GenericGallery', 'pluginName' => 'Pi1'), 'mtmfertighauswelt_houselist' => 'USER', 'mtmfertighauswelt_houselist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houselist'), 'mtmfertighauswelt_houseslider' => 'USER', 'mtmfertighauswelt_houseslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houseslider'), 'mtmfertighauswelt_housedetail' => 'USER', 'mtmfertighauswelt_housedetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Housedetail'), 'mtmfertighauswelt_manufacturerlist' => 'USER', 'mtmfertighauswelt_manufacturerlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerlist'), 'mtmfertighauswelt_manufacturerslider' => 'USER', 'mtmfertighauswelt_manufacturerslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerslider'), 'mtmfertighauswelt_manufacturerdetail' => 'USER', 'mtmfertighauswelt_manufacturerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerdetail'), 'mtmfertighauswelt_imagemap' => 'USER', 'mtmfertighauswelt_imagemap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Imagemap'), 'mtmfertighauswelt_requestlistdetail' => 'USER', 'mtmfertighauswelt_requestlistdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistdetail'), 'mtmfertighauswelt_requestlistwidget' => 'USER', 'mtmfertighauswelt_requestlistwidget.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistwidget'), 'mtmslider_sliderview' => 'USER', 'mtmslider_sliderview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmslider', 'pluginName' => 'Sliderview'), 'mtmumkreissuche_umkreissuche' => 'USER', 'mtmumkreissuche_umkreissuche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MtmUmkreissuche', 'pluginName' => 'Umkreissuche'), 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'))), 'lib.contentElement')
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 746
            [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
            $conf = array_replace_recursive($conf, $confOverride);
            // Getting the cObject
            $timeTracker->incStackPointer();
            $content .= $this->cObjGetSingle($name, $conf, $key);
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:base_template/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:base_template/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:base_template/Resources/Private/Layouts/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="jnlightbox" data-title="{file:current:title}" rel="lightbox[lb{file:current:uid_foreign}]" data-lightbox="lightbox-{file:current:uid_foreign}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'newsslider_flexslider' => 'USER', 'newsslider_flexslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'flexslider'), 'newsslider_nivoslider' => 'USER', 'newsslider_nivoslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'nivoslider'), 'newsslider_camera' => 'USER', 'newsslider_camera.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'camera'), 'newsslider_slickslider' => 'USER', 'newsslider_slickslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'slickslider'), 'newsslider_customslider' => 'USER', 'newsslider_customslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'customslider'), 'newsslider_swiperslider' => 'USER', 'newsslider_swiperslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'swiperslider'), 'dpnglossary_glossary' => 'USER', 'dpnglossary_glossary.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossary'), 'dpnglossary_glossarypreview' => 'USER', 'dpnglossary_glossarypreview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossarypreview'), 'genericgallery_pi1' => 'USER', 'genericgallery_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GenericGallery', 'pluginName' => 'Pi1'), 'mtmfertighauswelt_houselist' => 'USER', 'mtmfertighauswelt_houselist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houselist'), 'mtmfertighauswelt_houseslider' => 'USER', 'mtmfertighauswelt_houseslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houseslider'), 'mtmfertighauswelt_housedetail' => 'USER', 'mtmfertighauswelt_housedetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Housedetail'), 'mtmfertighauswelt_manufacturerlist' => 'USER', 'mtmfertighauswelt_manufacturerlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerlist'), 'mtmfertighauswelt_manufacturerslider' => 'USER', 'mtmfertighauswelt_manufacturerslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerslider'), 'mtmfertighauswelt_manufacturerdetail' => 'USER', 'mtmfertighauswelt_manufacturerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerdetail'), 'mtmfertighauswelt_imagemap' => 'USER', 'mtmfertighauswelt_imagemap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Imagemap'), 'mtmfertighauswelt_requestlistdetail' => 'USER', 'mtmfertighauswelt_requestlistdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistdetail'), 'mtmfertighauswelt_requestlistwidget' => 'USER', 'mtmfertighauswelt_requestlistwidget.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistwidget'), 'mtmslider_sliderview' => 'USER', 'mtmslider_sliderview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmslider', 'pluginName' => 'Sliderview'), 'mtmumkreissuche_umkreissuche' => 'USER', 'mtmumkreissuche_umkreissuche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MtmUmkreissuche', 'pluginName' => 'Umkreissuche'), 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'))), 'list')
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 45
        // 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('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')), 'mask_button' => '< lib.maskContentElement', 'mask_button.' => array('templateName' => 'Button'), 'mask_iconbox' => '< lib.maskContentElement', 'mask_iconbox.' => array('templateName' => 'Iconbox'), 'mask_imagebox' => '< lib.maskContentElement', 'mask_imagebox.' => array('templateName' => 'Imagebox'), 'mask_sidebarlogobox' => '< lib.maskContentElement', 'mask_sidebarlogobox.' => array('templateName' => 'Sidebarlogobox'), 'mask_teaserbox' => '< lib.maskContentElement', 'mask_teaserbox.' => array('templateName' => 'Teaserbox'), 'mask_ticketbox' => '< lib.maskContentElement', 'mask_ticketbox.' => array('templateName' => 'Ticketbox'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'TEXT', '1.' => array('value' => '<div class="csc-default primaryColorBox">|</div>'), 'TEXT', '2.' => array('value' => '<div class="csc-default secondaryColorBox">|</div>'), 'TEXT', '3.' => array('value' => '<div class="csc-default roundImage">|</div>'), 'TEXT', '4.' => array('value' => '<div class="csc-default onNextElement">|</div>')))), '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')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1920', 'maxGalleryWidthInText' => '1920', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image'))), '20.' => array('1.' => array('imageLinkWrap.' => array('JSwindow' => '0', 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="jnlightbox" data-title="{field:title}" rel="lightbox[lb{field:uid}]" data-lightbox="lightbox-{field:uid}"')))))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'newsslider_flexslider' => 'USER', 'newsslider_flexslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'flexslider'), 'newsslider_nivoslider' => 'USER', 'newsslider_nivoslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'nivoslider'), 'newsslider_camera' => 'USER', 'newsslider_camera.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'camera'), 'newsslider_slickslider' => 'USER', 'newsslider_slickslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'slickslider'), 'newsslider_customslider' => 'USER', 'newsslider_customslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'customslider'), 'newsslider_swiperslider' => 'USER', 'newsslider_swiperslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'swiperslider'), 'dpnglossary_glossary' => 'USER', 'dpnglossary_glossary.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossary'), 'dpnglossary_glossarypreview' => 'USER', 'dpnglossary_glossarypreview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossarypreview'), 'genericgallery_pi1' => 'USER', 'genericgallery_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GenericGallery', 'pluginName' => 'Pi1'), 'mtmfertighauswelt_houselist' => 'USER', 'mtmfertighauswelt_houselist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houselist'), 'mtmfertighauswelt_houseslider' => 'USER', 'mtmfertighauswelt_houseslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houseslider'), 'mtmfertighauswelt_housedetail' => 'USER', 'mtmfertighauswelt_housedetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Housedetail'), 'mtmfertighauswelt_manufacturerlist' => 'USER', 'mtmfertighauswelt_manufacturerlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerlist'), 'mtmfertighauswelt_manufacturerslider' => 'USER', 'mtmfertighauswelt_manufacturerslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerslider'), 'mtmfertighauswelt_manufacturerdetail' => 'USER', 'mtmfertighauswelt_manufacturerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerdetail'), 'mtmfertighauswelt_imagemap' => 'USER', 'mtmfertighauswelt_imagemap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Imagemap'), 'mtmfertighauswelt_requestlistdetail' => 'USER', 'mtmfertighauswelt_requestlistdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistdetail'), 'mtmfertighauswelt_requestlistwidget' => 'USER', 'mtmfertighauswelt_requestlistwidget.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistwidget'), 'mtmslider_sliderview' => 'USER', 'mtmslider_sliderview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmslider', 'pluginName' => 'Sliderview'), 'mtmumkreissuche_umkreissuche' => 'USER', 'mtmumkreissuche_umkreissuche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MtmUmkreissuche', 'pluginName' => 'Umkreissuche'), 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news,tx_sfeventmgt_domain_model_event', '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'), 'tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDetail', 'vendorName' => 'GeorgRinger', 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail', 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1')))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news,tx_sfeventmgt_domain_model_event', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDetail', 'vendorName' => 'GeorgRinger', 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail', 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1')))))), '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')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), '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')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), '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'))))), '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')))), '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 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}=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), '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'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), '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')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), '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')))), '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'))))), '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')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), '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'))))))), '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')))), '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'), 'where' => '{#sectionIndex} = 1', 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), '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')))), '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'))))), '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')))), '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'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), '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')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), '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')))), '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'))))), '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')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'news_pi1' => '< lib.contentElement', 'news_pi1.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1')), 'news_newsliststicky' => '< lib.contentElement', 'news_newsliststicky.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsListSticky')), 'news_newsdetail' => '< lib.contentElement', 'news_newsdetail.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDetail')), 'news_newsselectedlist' => '< lib.contentElement', 'news_newsselectedlist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsSelectedList')), 'news_newsdatemenu' => '< lib.contentElement', 'news_newsdatemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDateMenu')), 'news_newssearchform' => '< lib.contentElement', 'news_newssearchform.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsSearchForm')), 'news_newssearchresult' => '< lib.contentElement', 'news_newssearchresult.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsSearchResult')), 'news_categorylist' => '< lib.contentElement', 'news_categorylist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'CategoryList')), 'news_taglist' => '< lib.contentElement', 'news_taglist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'TagList')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'variables.' => array('content' => 'COA', 'content.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '1_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '5_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '6_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_70_30.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_30_70.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), 'tab_element.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'))))), '20.' => array('10.' => array('setup.' => array('1_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '5_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '6_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_70_30.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_30_70.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), 'tab_element.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement')))), 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children'))))))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // 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('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')), 'mask_button' => '< lib.maskContentElement', 'mask_button.' => array('templateName' => 'Button'), 'mask_iconbox' => '< lib.maskContentElement', 'mask_iconbox.' => array('templateName' => 'Iconbox'), 'mask_imagebox' => '< lib.maskContentElement', 'mask_imagebox.' => array('templateName' => 'Imagebox'), 'mask_sidebarlogobox' => '< lib.maskContentElement', 'mask_sidebarlogobox.' => array('templateName' => 'Sidebarlogobox'), 'mask_teaserbox' => '< lib.maskContentElement', 'mask_teaserbox.' => array('templateName' => 'Teaserbox'), 'mask_ticketbox' => '< lib.maskContentElement', 'mask_ticketbox.' => array('templateName' => 'Ticketbox'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'TEXT', '1.' => array('value' => '<div class="csc-default primaryColorBox">|</div>'), 'TEXT', '2.' => array('value' => '<div class="csc-default secondaryColorBox">|</div>'), 'TEXT', '3.' => array('value' => '<div class="csc-default roundImage">|</div>'), 'TEXT', '4.' => array('value' => '<div class="csc-default onNextElement">|</div>')))), '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')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1920', 'maxGalleryWidthInText' => '1920', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image'))), '20.' => array('1.' => array('imageLinkWrap.' => array('JSwindow' => '0', 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="jnlightbox" data-title="{field:title}" rel="lightbox[lb{field:uid}]" data-lightbox="lightbox-{field:uid}"')))))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'newsslider_flexslider' => 'USER', 'newsslider_flexslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'flexslider'), 'newsslider_nivoslider' => 'USER', 'newsslider_nivoslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'nivoslider'), 'newsslider_camera' => 'USER', 'newsslider_camera.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'camera'), 'newsslider_slickslider' => 'USER', 'newsslider_slickslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'slickslider'), 'newsslider_customslider' => 'USER', 'newsslider_customslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'customslider'), 'newsslider_swiperslider' => 'USER', 'newsslider_swiperslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'swiperslider'), 'dpnglossary_glossary' => 'USER', 'dpnglossary_glossary.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossary'), 'dpnglossary_glossarypreview' => 'USER', 'dpnglossary_glossarypreview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossarypreview'), 'genericgallery_pi1' => 'USER', 'genericgallery_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GenericGallery', 'pluginName' => 'Pi1'), 'mtmfertighauswelt_houselist' => 'USER', 'mtmfertighauswelt_houselist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houselist'), 'mtmfertighauswelt_houseslider' => 'USER', 'mtmfertighauswelt_houseslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houseslider'), 'mtmfertighauswelt_housedetail' => 'USER', 'mtmfertighauswelt_housedetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Housedetail'), 'mtmfertighauswelt_manufacturerlist' => 'USER', 'mtmfertighauswelt_manufacturerlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerlist'), 'mtmfertighauswelt_manufacturerslider' => 'USER', 'mtmfertighauswelt_manufacturerslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerslider'), 'mtmfertighauswelt_manufacturerdetail' => 'USER', 'mtmfertighauswelt_manufacturerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerdetail'), 'mtmfertighauswelt_imagemap' => 'USER', 'mtmfertighauswelt_imagemap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Imagemap'), 'mtmfertighauswelt_requestlistdetail' => 'USER', 'mtmfertighauswelt_requestlistdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistdetail'), 'mtmfertighauswelt_requestlistwidget' => 'USER', 'mtmfertighauswelt_requestlistwidget.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistwidget'), 'mtmslider_sliderview' => 'USER', 'mtmslider_sliderview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmslider', 'pluginName' => 'Sliderview'), 'mtmumkreissuche_umkreissuche' => 'USER', 'mtmumkreissuche_umkreissuche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MtmUmkreissuche', 'pluginName' => 'Umkreissuche'), 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news,tx_sfeventmgt_domain_model_event', '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'), 'tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDetail', 'vendorName' => 'GeorgRinger', 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail', 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1')))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news,tx_sfeventmgt_domain_model_event', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDetail', 'vendorName' => 'GeorgRinger', 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail', 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1')))))), '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')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), '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')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), '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'))))), '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')))), '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 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}=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), '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'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), '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')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), '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')))), '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'))))), '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')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), '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'))))))), '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')))), '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'), 'where' => '{#sectionIndex} = 1', 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), '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')))), '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'))))), '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')))), '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'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), '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')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), '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')))), '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'))))), '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')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'news_pi1' => '< lib.contentElement', 'news_pi1.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1')), 'news_newsliststicky' => '< lib.contentElement', 'news_newsliststicky.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsListSticky')), 'news_newsdetail' => '< lib.contentElement', 'news_newsdetail.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDetail')), 'news_newsselectedlist' => '< lib.contentElement', 'news_newsselectedlist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsSelectedList')), 'news_newsdatemenu' => '< lib.contentElement', 'news_newsdatemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDateMenu')), 'news_newssearchform' => '< lib.contentElement', 'news_newssearchform.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsSearchForm')), 'news_newssearchresult' => '< lib.contentElement', 'news_newssearchresult.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsSearchResult')), 'news_categorylist' => '< lib.contentElement', 'news_categorylist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'CategoryList')), 'news_taglist' => '< lib.contentElement', 'news_taglist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'TagList')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'variables.' => array('content' => 'COA', 'content.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '1_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '5_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '6_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_70_30.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_30_70.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), 'tab_element.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'))))), '20.' => array('10.' => array('setup.' => array('1_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '5_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '6_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_70_30.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_30_70.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), 'tab_element.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement')))), 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children'))))))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('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')), 'mask_button' => '< lib.maskContentElement', 'mask_button.' => array('templateName' => 'Button'), 'mask_iconbox' => '< lib.maskContentElement', 'mask_iconbox.' => array('templateName' => 'Iconbox'), 'mask_imagebox' => '< lib.maskContentElement', 'mask_imagebox.' => array('templateName' => 'Imagebox'), 'mask_sidebarlogobox' => '< lib.maskContentElement', 'mask_sidebarlogobox.' => array('templateName' => 'Sidebarlogobox'), 'mask_teaserbox' => '< lib.maskContentElement', 'mask_teaserbox.' => array('templateName' => 'Teaserbox'), 'mask_ticketbox' => '< lib.maskContentElement', 'mask_ticketbox.' => array('templateName' => 'Ticketbox'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'TEXT', '1.' => array('value' => '<div class="csc-default primaryColorBox">|</div>'), 'TEXT', '2.' => array('value' => '<div class="csc-default secondaryColorBox">|</div>'), 'TEXT', '3.' => array('value' => '<div class="csc-default roundImage">|</div>'), 'TEXT', '4.' => array('value' => '<div class="csc-default onNextElement">|</div>')))), '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')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1920', 'maxGalleryWidthInText' => '1920', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image'))), '20.' => array('1.' => array('imageLinkWrap.' => array('JSwindow' => '0', 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="jnlightbox" data-title="{field:title}" rel="lightbox[lb{field:uid}]" data-lightbox="lightbox-{field:uid}"')))))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'newsslider_flexslider' => 'USER', 'newsslider_flexslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'flexslider'), 'newsslider_nivoslider' => 'USER', 'newsslider_nivoslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'nivoslider'), 'newsslider_camera' => 'USER', 'newsslider_camera.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'camera'), 'newsslider_slickslider' => 'USER', 'newsslider_slickslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'slickslider'), 'newsslider_customslider' => 'USER', 'newsslider_customslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'customslider'), 'newsslider_swiperslider' => 'USER', 'newsslider_swiperslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'swiperslider'), 'dpnglossary_glossary' => 'USER', 'dpnglossary_glossary.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossary'), 'dpnglossary_glossarypreview' => 'USER', 'dpnglossary_glossarypreview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossarypreview'), 'genericgallery_pi1' => 'USER', 'genericgallery_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GenericGallery', 'pluginName' => 'Pi1'), 'mtmfertighauswelt_houselist' => 'USER', 'mtmfertighauswelt_houselist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houselist'), 'mtmfertighauswelt_houseslider' => 'USER', 'mtmfertighauswelt_houseslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houseslider'), 'mtmfertighauswelt_housedetail' => 'USER', 'mtmfertighauswelt_housedetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Housedetail'), 'mtmfertighauswelt_manufacturerlist' => 'USER', 'mtmfertighauswelt_manufacturerlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerlist'), 'mtmfertighauswelt_manufacturerslider' => 'USER', 'mtmfertighauswelt_manufacturerslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerslider'), 'mtmfertighauswelt_manufacturerdetail' => 'USER', 'mtmfertighauswelt_manufacturerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerdetail'), 'mtmfertighauswelt_imagemap' => 'USER', 'mtmfertighauswelt_imagemap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Imagemap'), 'mtmfertighauswelt_requestlistdetail' => 'USER', 'mtmfertighauswelt_requestlistdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistdetail'), 'mtmfertighauswelt_requestlistwidget' => 'USER', 'mtmfertighauswelt_requestlistwidget.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistwidget'), 'mtmslider_sliderview' => 'USER', 'mtmslider_sliderview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmslider', 'pluginName' => 'Sliderview'), 'mtmumkreissuche_umkreissuche' => 'USER', 'mtmumkreissuche_umkreissuche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MtmUmkreissuche', 'pluginName' => 'Umkreissuche'), 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news,tx_sfeventmgt_domain_model_event', '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'), 'tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDetail', 'vendorName' => 'GeorgRinger', 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail', 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1')))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news,tx_sfeventmgt_domain_model_event', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDetail', 'vendorName' => 'GeorgRinger', 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail', 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1')))))), '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')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), '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')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), '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'))))), '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')))), '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 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}=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), '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'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), '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')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), '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')))), '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'))))), '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')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), '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'))))))), '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')))), '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'), 'where' => '{#sectionIndex} = 1', 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), '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')))), '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'))))), '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')))), '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'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), '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')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), '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')))), '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'))))), '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')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'news_pi1' => '< lib.contentElement', 'news_pi1.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1')), 'news_newsliststicky' => '< lib.contentElement', 'news_newsliststicky.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsListSticky')), 'news_newsdetail' => '< lib.contentElement', 'news_newsdetail.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDetail')), 'news_newsselectedlist' => '< lib.contentElement', 'news_newsselectedlist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsSelectedList')), 'news_newsdatemenu' => '< lib.contentElement', 'news_newsdatemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDateMenu')), 'news_newssearchform' => '< lib.contentElement', 'news_newssearchform.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsSearchForm')), 'news_newssearchresult' => '< lib.contentElement', 'news_newssearchresult.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsSearchResult')), 'news_categorylist' => '< lib.contentElement', 'news_categorylist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'CategoryList')), 'news_taglist' => '< lib.contentElement', 'news_taglist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'TagList')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'variables.' => array('content' => 'COA', 'content.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '1_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '5_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '6_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_70_30.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_30_70.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), 'tab_element.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'))))), '20.' => array('10.' => array('setup.' => array('1_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '5_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '6_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_70_30.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_30_70.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), 'tab_element.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement')))), 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children'))))), 'tt_content')
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 746
            [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
            $conf = array_replace_recursive($conf, $confOverride);
            // Getting the cObject
            $timeTracker->incStackPointer();
            $content .= $this->cObjGetSingle($name, $conf, $key);
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('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')), 'mask_button' => '< lib.maskContentElement', 'mask_button.' => array('templateName' => 'Button'), 'mask_iconbox' => '< lib.maskContentElement', 'mask_iconbox.' => array('templateName' => 'Iconbox'), 'mask_imagebox' => '< lib.maskContentElement', 'mask_imagebox.' => array('templateName' => 'Imagebox'), 'mask_sidebarlogobox' => '< lib.maskContentElement', 'mask_sidebarlogobox.' => array('templateName' => 'Sidebarlogobox'), 'mask_teaserbox' => '< lib.maskContentElement', 'mask_teaserbox.' => array('templateName' => 'Teaserbox'), 'mask_ticketbox' => '< lib.maskContentElement', 'mask_ticketbox.' => array('templateName' => 'Ticketbox'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'innerWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'TEXT', '1.' => array('value' => '<div class="csc-default primaryColorBox">|</div>'), 'TEXT', '2.' => array('value' => '<div class="csc-default secondaryColorBox">|</div>'), 'TEXT', '3.' => array('value' => '<div class="csc-default roundImage">|</div>'), 'TEXT', '4.' => array('value' => '<div class="csc-default onNextElement">|</div>')))), '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')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1920', 'maxGalleryWidthInText' => '1920', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image'))), '20.' => array('1.' => array('imageLinkWrap.' => array('JSwindow' => '0', 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="jnlightbox" data-title="{field:title}" rel="lightbox[lb{field:uid}]" data-lightbox="lightbox-{field:uid}"')))))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'newsslider_flexslider' => 'USER', 'newsslider_flexslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'flexslider'), 'newsslider_nivoslider' => 'USER', 'newsslider_nivoslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'nivoslider'), 'newsslider_camera' => 'USER', 'newsslider_camera.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'camera'), 'newsslider_slickslider' => 'USER', 'newsslider_slickslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'slickslider'), 'newsslider_customslider' => 'USER', 'newsslider_customslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'customslider'), 'newsslider_swiperslider' => 'USER', 'newsslider_swiperslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Newsslider', 'pluginName' => 'swiperslider'), 'dpnglossary_glossary' => 'USER', 'dpnglossary_glossary.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossary'), 'dpnglossary_glossarypreview' => 'USER', 'dpnglossary_glossarypreview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'DpnGlossary', 'pluginName' => 'Glossarypreview'), 'genericgallery_pi1' => 'USER', 'genericgallery_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GenericGallery', 'pluginName' => 'Pi1'), 'mtmfertighauswelt_houselist' => 'USER', 'mtmfertighauswelt_houselist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houselist'), 'mtmfertighauswelt_houseslider' => 'USER', 'mtmfertighauswelt_houseslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Houseslider'), 'mtmfertighauswelt_housedetail' => 'USER', 'mtmfertighauswelt_housedetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Housedetail'), 'mtmfertighauswelt_manufacturerlist' => 'USER', 'mtmfertighauswelt_manufacturerlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerlist'), 'mtmfertighauswelt_manufacturerslider' => 'USER', 'mtmfertighauswelt_manufacturerslider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerslider'), 'mtmfertighauswelt_manufacturerdetail' => 'USER', 'mtmfertighauswelt_manufacturerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Manufacturerdetail'), 'mtmfertighauswelt_imagemap' => 'USER', 'mtmfertighauswelt_imagemap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Imagemap'), 'mtmfertighauswelt_requestlistdetail' => 'USER', 'mtmfertighauswelt_requestlistdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistdetail'), 'mtmfertighauswelt_requestlistwidget' => 'USER', 'mtmfertighauswelt_requestlistwidget.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistwidget'), 'mtmslider_sliderview' => 'USER', 'mtmslider_sliderview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmslider', 'pluginName' => 'Sliderview'), 'mtmumkreissuche_umkreissuche' => 'USER', 'mtmumkreissuche_umkreissuche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MtmUmkreissuche', 'pluginName' => 'Umkreissuche'), 'sfeventmgt_pieventlist' => 'USER', 'sfeventmgt_pieventlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventlist'), 'sfeventmgt_pieventdetail' => 'USER', 'sfeventmgt_pieventdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail'), 'sfeventmgt_pieventregistration' => 'USER', 'sfeventmgt_pieventregistration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventregistration'), 'sfeventmgt_pieventsearch' => 'USER', 'sfeventmgt_pieventsearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventsearch'), 'sfeventmgt_pieventcalendar' => 'USER', 'sfeventmgt_pieventcalendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventcalendar'), 'sfeventmgt_piuserreg' => 'USER', 'sfeventmgt_piuserreg.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Piuserreg'), 'sfeventmgt_pipayment' => 'USER', 'sfeventmgt_pipayment.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pipayment'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news,tx_sfeventmgt_domain_model_event', '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'), 'tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDetail', 'vendorName' => 'GeorgRinger', 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail', 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1')))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news,tx_sfeventmgt_domain_model_event', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDetail', 'vendorName' => 'GeorgRinger', 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1')), 'tx_sfeventmgt_domain_model_event' => 'USER', 'tx_sfeventmgt_domain_model_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfEventMgt', 'pluginName' => 'Pieventdetail', 'settings' => '< plugin.tx_sfeventmgt.settings', 'settings.' => array('detail.' => array('isShortcut' => '1')))))), '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')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), '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')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), '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'))))), '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')))), '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 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}=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), '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'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), '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')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), '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')))), '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'))))), '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')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), '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'))))))), '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')))), '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'), 'where' => '{#sectionIndex} = 1', 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), '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')))), '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'))))), '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')))), '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'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), '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')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), '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')))), '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'))))), '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')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'news_pi1' => '< lib.contentElement', 'news_pi1.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1')), 'news_newsliststicky' => '< lib.contentElement', 'news_newsliststicky.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsListSticky')), 'news_newsdetail' => '< lib.contentElement', 'news_newsdetail.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDetail')), 'news_newsselectedlist' => '< lib.contentElement', 'news_newsselectedlist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsSelectedList')), 'news_newsdatemenu' => '< lib.contentElement', 'news_newsdatemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsDateMenu')), 'news_newssearchform' => '< lib.contentElement', 'news_newssearchform.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsSearchForm')), 'news_newssearchresult' => '< lib.contentElement', 'news_newssearchresult.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'NewsSearchResult')), 'news_categorylist' => '< lib.contentElement', 'news_categorylist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'CategoryList')), 'news_taglist' => '< lib.contentElement', 'news_taglist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'TagList')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'variables.' => array('content' => 'COA', 'content.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '1_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '5_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '6_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_70_30.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_30_70.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), 'tab_element.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'))))), '20.' => array('10.' => array('setup.' => array('1_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '5_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '6_spaltig.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_70_30.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_30_70.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '2_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '3_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), '4_spaltig_eventinfo.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement'), 'tab_element.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement')))), 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children'))))), '')
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 96
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $registerField;
                        $this->cObj->lastChanged($row['tstamp'] ?? 0);
                        $cObj->start($row, $conf['table'], $this->request);
                        $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'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // 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'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
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'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), '20')
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 713
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && !str_contains($theKey, '.')) {
                $conf = $setup[$theKey . '.'] ?? [];
                $contentObjects[] = $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $contentObjects;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSeparated(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')))), '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'))), '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'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), '')
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 693
    {
        if (!is_array($setup)) {
            return '';
        }
        return implode('', $this->cObjGetSeparated($setup, $addKey));
    }

    /**
     * Rendering of a "numerical array" of cObjects from TypoScript
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')))), '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'))), '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'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php line 43
        if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
            return '';
        }

        $content = $this->cObj->cObjGet($conf);
        $wrap = $this->cObj->stdWrapValue('wrap', $conf ?? []);
        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')))), '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'))), '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'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // 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')))), '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'))), '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'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
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')))), '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'))), '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'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), 'lib.dynamicContent')
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 197
        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('maskContentElement.' => array('templateRootPaths.' => array('typo3conf/ext/base_template/Resources/Private/Templates/ContentElements/Mask'), 'partialRootPaths.' => array('typo3conf/ext/base_template/Resources/Private/Partials/ContentElements/Mask'), 'layoutRootPaths.' => array('typo3conf/ext/base_template/Resources/Private/Layouts/ContentElements/Mask'), 'dataProcessing.' => array('MASK\\Mask\\DataProcessing\\MaskProcessor')), 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('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('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), '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, s, 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="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'parseFunc_RTE.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('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('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), '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, s, 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="ce-sword">|</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;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('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('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), '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, s, 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="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array('fixAttrib.' => array('class.' => array('default' => 'contenttable', 'always' => '1', 'list' => 'contenttable')))), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => '', 'innerStdWrap_all.' => array('ifBlank' => '')))))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => 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'))), 'contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:base_template/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:base_template/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:base_template/Resources/Private/Layouts/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="jnlightbox" data-title="{file:current:title}" rel="lightbox[lb{file:current:uid_foreign}]" data-lightbox="lightbox-{file:current:uid_foreign}"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')))), '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')))), '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'))), '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'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), 'hlogo' => 'IMAGE', 'hlogo.' => array('file' => 'fileadmin/data/sites/deutsches-fertighaus-center.de/Logo/DFC_Logo.png', 'stdWrap.' => array('typolink.' => array('parameter' => '311'))), 'main_nav_search' => 'USER', 'main_nav_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'typo3', 'view' => '< plugin.cms-indexed-search.view', 'settings' => '< plugin.cms-indexed-search.settings'), 'requestListWidget' => 'USER', 'main_nav' => 'HMENU', 'main_nav.' => array('entryLevel' => '0', 'wrap' => '<ul id="mainNav">|</ul>', 'TMENU', '1.' => array('expAll' => '1', 'noBlur' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub.' => array('insertData' => '1'), 'wrapItemAndSub' => '<li class="mainNavLi withoutSubmenu"> | </li>'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub.' => array('insertData' => '1'), 'wrapItemAndSub' => '<li class="mainNavLi withSubmenu "> | </li>', 'allWrap' => '<div class="mainNavLiHead"> | </div>'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub.' => array('insertData' => '1'), 'wrapItemAndSub' => '<li class="mainNavLi withoutSubmenu"> | </li>'), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub.' => array('insertData' => '1'), 'wrapItemAndSub' => '<li class="mainNavLi withSubmenu "> | </li>', 'allWrap' => '<div class="mainNavLiHead"> | </div>'), 'CUR' => '1', 'CUR.' => array('expAll' => '1', 'wrapItemAndSub' => '<li class="mainNavLi withoutSubmenu mainNavLiAct"> | </li>', 'typolink.' => array('parameter.' => array('data' => 'leveluid : 1'))), 'CURIFSUB' => '1', 'CURIFSUB.' => array('expAll' => '1', 'wrapItemAndSub' => '<li class="mainNavLi withSubmenu mainNavLiAct"> | </li>', 'allWrap' => '<div class="mainNavLiSubHead"> | </div>', 'typolink.' => array('parameter.' => array('data' => 'leveluid : 1'))), 'stdWrap.' => array('append' => 'TEXT', 'append.' => array('wrap' => '<li id="mainNavSearch" class="mainNavLi withSubmenu "> | </li>', 'value' => '<i class="la la-search"></i>'))), 'TMENU', '2.' => array('noBlur' => '1', 'expAll' => '1', 'wrap' => '<ul class= "mainNavSubmenuContainer"> | </ul>', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="mainNavSubLi withoutSubmenu"> | </li>'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="mainNavSubLi withSubmenu"> | </li>', 'allWrap' => '<div class="mainNavSubmenuHead"> | <i class="la la-arrow-right"></i></div>'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="mainNavSubLi withoutSubmenu"> | </li>'), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="mainNavSubLi withSubmenu"> | </li>', 'allWrap' => '<div class="mainNavSubmenuHead"> | <i class="la la-arrow-right"></i></div>'), 'CUR' => '1', 'CUR.' => array('expAll' => '1', 'wrapItemAndSub' => '<li class="mainNavSubLi withoutSubmenu mainNavLiAct"> | </li>', 'typolink.' => array('parameter.' => array('data' => 'leveluid : 2'))), 'CURIFSUB' => '1', 'CURIFSUB.' => array('expAll' => '1', 'wrapItemAndSub' => '<li class="mainNavSubLi withSubmenu mainNavLiAct"> | </li>', 'allWrap' => '<div class="mainNavSecondSubmenuHead"> | </div>', 'typolink.' => array('parameter.' => array('data' => 'leveluid : 2')))), 'TMENU', '3.' => array('noBlur' => '1', 'expAll' => '1', 'wrap' => '<ul class= "mainNavSecondSubmenu"> | </ul>', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="mainNavSecondSubLi withoutSubmenu"> | </li>'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="mainNavSecondSubLi withSubmenu"> | </li>', 'allWrap' => '<div class="mainNavSecondSubmenuHead"> | </div>'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="mainNavSecondSubLi withoutSubmenu"> | </li>'), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="mainNavSecondSubLi withSubmenu"> | </li>', 'allWrap' => '<div class="mainNavSecondSubmenuHead"> | </div>'), 'CUR' => '1', 'CUR.' => array('expAll' => '1', 'wrapItemAndSub' => '<li class="mainNavSecondSubLi withoutSubmenu mainNavLiAct"> | </li>', 'typolink.' => array('parameter.' => array('data' => 'leveluid : 3'))), 'CURIFSUB' => '1', 'CURIFSUB.' => array('expAll' => '1', 'wrapItemAndSub' => '<li class="mainNavSecondSubLi withSubmenu mainNavLiAct"> | </li>', 'allWrap' => '<div class="mainNavSecondSubmenuHead"> | </div>', 'typolink.' => array('parameter.' => array('data' => 'leveluid : 3'))))), 'mobile_nav_search' => 'USER', 'mobile_nav_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'controller' => 'Search', 'action' => 'form', 'view' => '< plugin.tx_indexedsearch.view', 'settings' => '< plugin.tx_indexedsearch.settings'), 'mobile_nav' => 'HMENU', 'mobile_nav.' => array('entryLevel' => '0', 'wrap' => '<ul id="mobileNav">|</ul>', 'TMENU', '1.' => array('expAll' => '1', 'noBlur' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub.' => array('insertData' => '1'), 'wrapItemAndSub' => '<li class="mobileNavLi withoutSubmenu"><div class="mobileNavLiHead">| </div></li>'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub.' => array('insertData' => '1'), 'wrapItemAndSub' => '<li class="mobileNavLi withSubmenu "> | </li>', 'allWrap' => '<div class="mobileNavLiHead"> | <i class="la la-arrow-right"></i></div>'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub.' => array('insertData' => '1'), 'wrapItemAndSub' => '<li class="mobileNavLi withoutSubmenu"><div class="mobileNavLiHead">| </div></li>'), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub.' => array('insertData' => '1'), 'wrapItemAndSub' => '<li class="mobileNavLi withSubmenu "> | </li>', 'allWrap' => '<div class="mobileNavLiHead"> | <i class="la la-arrow-right"></i></div>'), 'CUR' => '1', 'CUR.' => array('expAll' => '1', 'wrapItemAndSub' => '<li class="mobileNavLi withoutSubmenu mobileNavLiAct"> | </li>', 'allWrap' => '<div class="mobileNavLiHead"> | </div>', 'typolink.' => array('parameter.' => array('data' => 'leveluid : 1'))), 'CURIFSUB' => '1', 'CURIFSUB.' => array('expAll' => '1', 'wrapItemAndSub' => '<li class="mobileNavLi withSubmenu mobileNavLiAct"> | </li>', 'allWrap' => '<div class="mobileNavLiSubHead"> | </div>', 'typolink.' => array('parameter.' => array('data' => 'leveluid : 1')))), 'TMENU', '2.' => array('noBlur' => '1', 'expAll' => '1', 'wrap' => '<ul class= "mobileNavSubmenuContainer"> | </ul>', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="mobileNavSubLi withoutSubmenu"><div class="mobileNavSubmenuHead"> | </div></li>'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="mobileNavSubLi withSubmenu"> | </li>', 'allWrap' => '<div class="mobileNavSubmenuHead"> | <i class="la la-arrow-right"></i></div>'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="mobileNavSubLi withoutSubmenu"><div class="mobileNavSubmenuHead"> | </div></li>'), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="mobileNavSubLi withSubmenu"> | </li>', 'allWrap' => '<div class="mobileNavSubmenuHead"> | <i class="la la-arrow-right"></i></div>'), 'CUR' => '1', 'CUR.' => array('expAll' => '1', 'wrapItemAndSub' => '<li class="mobileNavSubLi withoutSubmenu mobileNavLiAct"> | </li>', 'allWrap' => '<div class="mobileNavSubmenuHead"> | </div>', 'typolink.' => array('parameter.' => array('data' => 'leveluid : 2'))), 'CURIFSUB' => '1', 'CURIFSUB.' => array('expAll' => '1', 'wrapItemAndSub' => '<li class="mobileNavSubLi withSubmenu mobileNavLiAct"> | </li>', 'allWrap' => '<div class="mobileNavSecondSubmenuHead"> | </div>', 'typolink.' => array('parameter.' => array('data' => 'leveluid : 2'))), 'stdWrap.' => array('prepend' => 'TEXT', 'prepend.' => array('wrap' => '<li class="backToHigherLevel backbutton"> | </li>', 'value' => '<i class="la la-arrow-left"></i><span>Zurück</span>'))), 'TMENU', '3.' => array('noBlur' => '1', 'expAll' => '1', 'wrap' => '<ul class= "mobileNavSecondSubmenuContainer"> | </ul>', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="mobileNavSecondSubLi withoutSubmenu"><div class="mobileNavSecondSubmenuHead"> | </div></li>'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="mobileNavSecondSubLi withSubmenu"> | </li>', 'allWrap' => '<div class="mobileNavSecondSubmenuHead"> | </div>'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="mobileNavSecondSubLi withoutSubmenu"><div class="mobileNavSecondSubmenuHead"> | </div></li>'), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="mobileNavSecondSubLi withSubmenu"> | </li>', 'allWrap' => '<div class="mobileNavSecondSubmenuHead"> | </div>'), 'CUR' => '1', 'CUR.' => array('expAll' => '1', 'wrapItemAndSub' => '<li class="mobileNavSecondSubLi withoutSubmenu mobileNavLiAct"> | </li>', 'typolink.' => array('parameter.' => array('data' => 'leveluid : 3'))), 'CURIFSUB' => '1', 'CURIFSUB.' => array('expAll' => '1', 'wrapItemAndSub' => '<li class="mobileNavSecondSubLi withSubmenu mobileNavLiAct"> | </li>', 'allWrap' => '<div class="mobileNavSecondSubmenuHead"> | </div>', 'typolink.' => array('parameter.' => array('data' => 'leveluid : 3'))), 'stdWrap.' => array('prepend' => 'TEXT', 'prepend.' => array('wrap' => '<li class="backToHigherLevel backbutton"> | </li>', 'value' => '<i class="la la-arrow-left"></i><span>Zurück</span>')))), 'BannerInhalt' => 'CONTENT', 'BannerInhalt.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '311', 'where.' => array('wrap' => 'colPos = 0'))), 'breadcrumb' => 'HMENU', 'breadcrumb.' => array('special' => 'rootline', 'special.' => array('range' => '1 | -1'), 'includeNotInMenu' => '1', 'TMENU', '1.' => array('noBlur' => '1', 'target' => '_self', 'wrap' => '<ul class="breadcrumbList"> | </ul>', 'stdWrap.' => array('prepend' => 'TEXT', 'prepend.' => array('value' => '<li class="rootBreadcrumb"><a href="https://deutsches-fertighaus-center.de/home">Home</a></li> <li class="separator"> / </li>')), 'NO.' => array('stdWrap.' => array('field' => 'nav_title // title', 'typolink' => 'title'), 'linkWrap' => '<li class="prevBreadcrumb">|</li> |*| <li class="separator"> / </li> |*|'), 'CUR' => '1', 'CUR.' => array('stdWrap.' => array('field' => 'nav_title // title', 'wrap' => '<li class="currentBreadcrumb"> | </li>'), 'linkWrap' => '<li class="prevBreadcrumb">|</li> |*| <li class="separator"> / </li> |*|', 'doNotLinkIt' => '1'))), 'pageTitle' => 'TEXT', 'pageTitle.' => array('wrap' => '<h1 class="pagetitle">|</h1>', 'data' => 'field:title // field:nav_title'), 'gridelements.' => array('defaultGridSetup.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => '< lib.contentElement')), 'preFooter' => 'CONTENT', 'preFooter.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '277', 'uidInList' => '1817')), 'footerSpalte1' => 'CONTENT', 'footerSpalte1.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '277', 'uidInList' => '1815')), 'footerSpalte2' => 'CONTENT', 'footerSpalte2.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '277', 'uidInList' => '1814')), 'footerSpalte3' => 'CONTENT', 'footerSpalte3.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '277', 'uidInList' => '1813')), 'footerSpalte4' => 'CONTENT', 'footerSpalte4.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '277', 'uidInList' => '1812')), 'subFooter' => 'COA', 'subFooter.' => array('CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '277', 'uidInList' => '1816')), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '277', 'uidInList' => '{$footerContent.SubFooterAdditional}'))), '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'))), 'tx_news.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'tx_form.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'math' => 'TEXT', 'math.' => array('current' => '1', 'prioriCalc' => 'intval'), 'tx_mask.' => array('content' => 'RECORDS', 'content.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'maskContentElement' => 'FLUIDTEMPLATE', 'requestListWidget.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Mtmfertighauswelt', 'pluginName' => 'Requestlistwidget', 'vendorName' => 'Matoma', 'view.' => array('templateRootPaths.' => array('EXT:mtmfertighauswelt/Resources/Private/Templates/', 'EXT:mtmfertighauswelt/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:mtmfertighauswelt/Resources/Private/Partials/', 'EXT:mtmfertighauswelt/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:mtmfertighauswelt/Resources/Private/Layouts/', 'EXT:mtmfertighauswelt/Resources/Private/Layouts/')), 'settings.' => array('MerklistPid' => '290'))), 'lib.dynamicContent', 'dynamicContent')
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 174
                '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('colPos' => 2), 'typoscriptObjectPath' => 'lib.dynamicContent', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /pages/51/21/d0012242/home/htdocs/typo3_11/var/cache/code/fluid_template/Standard_action_default_975a553689db3f57abe497a529208260ab2a4401.php line 52
'currentValueKey' => NULL,
'table' => '',
];
$renderChildrenClosure2 = ($arguments1['data'] !== null) ? function() use ($arguments1) { return $arguments1['data']; } : $renderChildrenClosure2;
$output0 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '
        </div>
    </section>
at Standard_action_default_975a553689db3f57abe497a529208260ab2a4401->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /pages/51/21/d0012242/home/htdocs/typo3_11/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 257
                    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 /pages/51/21/d0012242/home/htdocs/typo3_11/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 166
            $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 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, 'arguments' => array(), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /pages/51/21/d0012242/home/htdocs/typo3_11/var/cache/code/fluid_template/layout_Default_html_a37d980fd62d2741b9f3492bb038b2848a76eab3.php line 155
'contentAs' => NULL,
'debug' => true,
];

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

$output0 .= '
        <!--TYPO3SEARCH_end-->
        ';
at layout_Default_html_a37d980fd62d2741b9f3492bb038b2848a76eab3->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /pages/51/21/d0012242/home/htdocs/typo3_11/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 199
            } 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 /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 340
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 106

        $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('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:base_template/Resources/Private/Templates/Page/', 'EXT:base_template/Resources/Private/Templates/Page/', '{$page.gridelements.templateRootPath}'), 'partialRootPaths.' => array('EXT:base_template/Resources/Private/Partials/Page/', 'EXT:base_template/Resources/Private/Partials/Page/', '{$page.gridelements.partialRootPath}'), 'layoutRootPaths.' => array('EXT:base_template/Resources/Private/Layouts/Page/', 'EXT:base_template/Resources/Private/Layouts/Page/', '{$page.gridelements.layoutRootPath}'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation'))))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // 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(MASK\Mask\Fluid\FluidTemplateContentObject), 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:base_template/Resources/Private/Templates/Page/', 'EXT:base_template/Resources/Private/Templates/Page/', '{$page.gridelements.templateRootPath}'), 'partialRootPaths.' => array('EXT:base_template/Resources/Private/Partials/Page/', 'EXT:base_template/Resources/Private/Partials/Page/', '{$page.gridelements.partialRootPath}'), 'layoutRootPaths.' => array('EXT:base_template/Resources/Private/Layouts/Page/', 'EXT:base_template/Resources/Private/Layouts/Page/', '{$page.gridelements.layoutRootPath}'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation'))))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', 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:base_template/Resources/Private/Templates/Page/', 'EXT:base_template/Resources/Private/Templates/Page/', '{$page.gridelements.templateRootPath}'), 'partialRootPaths.' => array('EXT:base_template/Resources/Private/Partials/Page/', 'EXT:base_template/Resources/Private/Partials/Page/', '{$page.gridelements.partialRootPath}'), 'layoutRootPaths.' => array('EXT:base_template/Resources/Private/Layouts/Page/', 'EXT:base_template/Resources/Private/Layouts/Page/', '{$page.gridelements.layoutRootPath}'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation'))), '10')
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 713
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && !str_contains($theKey, '.')) {
                $conf = $setup[$theKey . '.'] ?? [];
                $contentObjects[] = $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $contentObjects;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSeparated(array('typeNum' => '0', 'shortcutIcon' => 'EXT:base_template/Resources/Public/Icons/favicon.ico', 'footerData.' => array(), 'FLUIDTEMPLATE', '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:base_template/Resources/Private/Templates/Page/', 'EXT:base_template/Resources/Private/Templates/Page/', '{$page.gridelements.templateRootPath}'), 'partialRootPaths.' => array('EXT:base_template/Resources/Private/Partials/Page/', 'EXT:base_template/Resources/Private/Partials/Page/', '{$page.gridelements.partialRootPath}'), 'layoutRootPaths.' => array('EXT:base_template/Resources/Private/Layouts/Page/', 'EXT:base_template/Resources/Private/Layouts/Page/', '{$page.gridelements.layoutRootPath}'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation'))), 'meta.' => array('viewport' => 'width=device-width, initial-scale=1.0', 'robots' => 'index, follow', 'apple-mobile-web-app-capable' => '{$page.meta.apple-mobile-web-app-capable}', 'description' => 'Webseite des Deutschen Fertighaus Center Mannheim', 'description.' => array('override.' => array('field' => 'description')), 'author' => 'Mannheimmer Ausstellungs GmbH', 'author.' => array('override.' => array('field' => 'author')), 'keywords' => 'Aussteller, mannheim, Musterhaus', 'keywords.' => array('override.' => array('field' => 'keywords')), 'X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'og:title.' => array('attribute' => 'property', 'field' => 'title'), 'og:site_name.' => array('attribute' => 'property', 'data' => 'TSFE:tmpl|setup|sitetitle'), 'og:description' => 'Webseite des Deutschen Fertighaus Center Mannheim', 'og:description.' => array('attribute' => 'property', 'field' => 'description'), 'og:image.' => array('attribute' => 'property', 'stdWrap.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array('data' => 'levelfield:-1, media, slide'), 'maxItems' => '1', 'renderObj' => 'COA', 'renderObj.' => array('IMG_RESOURCE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:uid'), 'treatIdAsReference' => '1', 'width' => '1280c', 'height' => '720c'), 'stdWrap.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:lastImgResourceInfo|3'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1')))))))), 'includeCSSLibs.' => array('FlexGrid' => 'EXT:base_template/Resources/Public/Css/FlexboxGrid.min.css', 'LineAwesome' => 'EXT:base_template/Resources/Public/Fonts/lineAwesome/css/line-awesome.min.css', 'MAGIcons' => 'EXT:base_template/Resources/Public/Fonts/mag-icons/css/mag-icons.css', 'GoogleFontRoboto' => 'EXT:base_template/Resources/Public/Css/GoogleFontRoboto.css', 'SlickTheme' => 'EXT:base_template/Resources/Public/Css/Slickslider/slick-theme.css', 'SlickCSS' => 'EXT:base_template/Resources/Public/Css/Slickslider/slick.css', 'responsiveTabs' => 'EXT:base_template/Resources/Public/Css/responsive-tabs.css'), 'includeCSS.' => array('SiteCustomCSS' => '/fileadmin/templates/deutsches-fertighaus-center.de/Configuration/Stylesheets/primary_colours.css', 'ckefontawesome' => 'https://use.fontawesome.com/releases/v6.0.0/css/all.css', 'ckefontawesome.' => array('external' => '1', 'if.' => array('isTrue' => '1')), 'jnlighterbox' => 'EXT:jn_lighterbox/Resources/Public/style/lightbox.min.css', 'jnlighterbox.' => array('media' => 'screen'), 'mtmslider' => 'EXT:mtmslider/Resources/Public/css/mtmslider.css', 'dpnglossary' => 'EXT:dpn_glossary/Resources/Public/css/styles.css', 'tx_mtmfertighauswelt' => 'EXT:mtmfertighauswelt/Resources/Public/Stylesheet/fertighaus.css'), 'includeJSLibs.' => array('jQuery' => 'EXT:base_template/Resources/Public/JavaScript/Src/jquery-3.4.1.min.js', 'responsiveTabs' => 'EXT:base_template/Resources/Public/JavaScript/Src/jquery.responsiveTabs.min.js', 'slickJS' => 'EXT:base_template/Resources/Public/JavaScript/Src/slick.min.js', 'ImageMapResizerJS' => 'EXT:base_template/Resources/Public/JavaScript/Src/imageMapResizer.min.js'), 'includeJSFooter.' => array('baseTemplateScripts' => 'EXT:base_template/Resources/Public/JavaScript/Dist/scripts.js', 'SiteCustomJS' => '{$JavaScript.Site}', 'jnlighterbox' => 'EXT:jn_lighterbox/Resources/Public/javascript/lightbox.min.js'), 'jsFooterInline.' => array('COA', '957.' => array('wrap' => ' lightbox.option({ | });', 'TEXT', '10.' => array('value' => 'Image %1 of %2', 'required' => '1', 'wrap' => 'albumLabel: "|",'), 'TEXT', '40.' => array('value' => '600', 'wrap' => 'fadeDuration: |,', 'if.' => array('value' => '600', 'equals' => '600', 'negate' => '1')), 'TEXT', '50.' => array('value' => 'false', 'wrap' => 'fitImagesInViewport: |,', 'if.' => array('value' => '0', 'equals' => '1')), 'TEXT', '60.' => array('value' => '600', 'wrap' => 'imageFadeDuration: |,', 'if.' => array('value' => '600', 'equals' => '600', 'negate' => '1')), 'TEXT', '70.' => array('value' => '6000', 'wrap' => 'maxWidth: |,', 'if.' => array('value' => '6000', 'equals' => '6000', 'negate' => '1')), 'TEXT', '80.' => array('value' => '800', 'wrap' => 'maxHeight: |,', 'if.' => array('value' => '6000', 'equals' => '800', 'negate' => '1')), 'TEXT', '90.' => array('value' => '50', 'wrap' => 'positionFromTop: |,', 'if.' => array('value' => '50', 'equals' => '50', 'negate' => '1')), 'TEXT', '100.' => array('value' => '700', 'wrap' => 'resizeDuration: |,', 'if.' => array('value' => '700', 'equals' => '700', 'negate' => '1')), 'TEXT', '110.' => array('value' => 'false', 'wrap' => 'showImageNumberLabel: |,', 'if.' => array('value' => '0', 'equals' => '1')), 'TEXT', '120.' => array('value' => 'wrapAround: true,'))), 'includeJS.' => array('mtmslider' => 'EXT:mtmslider/Resources/Public/js/template1.js', 'cycle2' => 'EXT:mtmslider/Resources/Public/js/jquery.cycle2.min.js', 'cycle2_carousel' => 'EXT:mtmslider/Resources/Public/js/jquery.cycle2.carousel.min.js', 'cycle2_swipe' => 'EXT:mtmslider/Resources/Public/js/jquery.cycle2.swipe.min.js'), 'headerData.' => array('TEXT', '1.' => array('value' => '<!-- Google Tag Manager --><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':new Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\'https://www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);})(window,document,\'script\',\'dataLayer\',\'GTM-WJPCT3PB\');</script><!-- End Google Tag Manager -->'), 'TEXT', '2.' => array('value' => '<script id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="719d5a80-8432-4cb8-acf5-66227c3463fc" data-blockingmode="auto" type="text/javascript"></script>'))), '')
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 693
    {
        if (!is_array($setup)) {
            return '';
        }
        return implode('', $this->cObjGetSeparated($setup, $addKey));
    }

    /**
     * Rendering of a "numerical array" of cObjects from TypoScript
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('typeNum' => '0', 'shortcutIcon' => 'EXT:base_template/Resources/Public/Icons/favicon.ico', 'footerData.' => array(), 'FLUIDTEMPLATE', '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:base_template/Resources/Private/Templates/Page/', 'EXT:base_template/Resources/Private/Templates/Page/', '{$page.gridelements.templateRootPath}'), 'partialRootPaths.' => array('EXT:base_template/Resources/Private/Partials/Page/', 'EXT:base_template/Resources/Private/Partials/Page/', '{$page.gridelements.partialRootPath}'), 'layoutRootPaths.' => array('EXT:base_template/Resources/Private/Layouts/Page/', 'EXT:base_template/Resources/Private/Layouts/Page/', '{$page.gridelements.layoutRootPath}'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation'))), 'meta.' => array('viewport' => 'width=device-width, initial-scale=1.0', 'robots' => 'index, follow', 'apple-mobile-web-app-capable' => '{$page.meta.apple-mobile-web-app-capable}', 'description' => 'Webseite des Deutschen Fertighaus Center Mannheim', 'description.' => array('override.' => array('field' => 'description')), 'author' => 'Mannheimmer Ausstellungs GmbH', 'author.' => array('override.' => array('field' => 'author')), 'keywords' => 'Aussteller, mannheim, Musterhaus', 'keywords.' => array('override.' => array('field' => 'keywords')), 'X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'og:title.' => array('attribute' => 'property', 'field' => 'title'), 'og:site_name.' => array('attribute' => 'property', 'data' => 'TSFE:tmpl|setup|sitetitle'), 'og:description' => 'Webseite des Deutschen Fertighaus Center Mannheim', 'og:description.' => array('attribute' => 'property', 'field' => 'description'), 'og:image.' => array('attribute' => 'property', 'stdWrap.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array('data' => 'levelfield:-1, media, slide'), 'maxItems' => '1', 'renderObj' => 'COA', 'renderObj.' => array('IMG_RESOURCE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:uid'), 'treatIdAsReference' => '1', 'width' => '1280c', 'height' => '720c'), 'stdWrap.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:lastImgResourceInfo|3'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1')))))))), 'includeCSSLibs.' => array('FlexGrid' => 'EXT:base_template/Resources/Public/Css/FlexboxGrid.min.css', 'LineAwesome' => 'EXT:base_template/Resources/Public/Fonts/lineAwesome/css/line-awesome.min.css', 'MAGIcons' => 'EXT:base_template/Resources/Public/Fonts/mag-icons/css/mag-icons.css', 'GoogleFontRoboto' => 'EXT:base_template/Resources/Public/Css/GoogleFontRoboto.css', 'SlickTheme' => 'EXT:base_template/Resources/Public/Css/Slickslider/slick-theme.css', 'SlickCSS' => 'EXT:base_template/Resources/Public/Css/Slickslider/slick.css', 'responsiveTabs' => 'EXT:base_template/Resources/Public/Css/responsive-tabs.css'), 'includeCSS.' => array('SiteCustomCSS' => '/fileadmin/templates/deutsches-fertighaus-center.de/Configuration/Stylesheets/primary_colours.css', 'ckefontawesome' => 'https://use.fontawesome.com/releases/v6.0.0/css/all.css', 'ckefontawesome.' => array('external' => '1', 'if.' => array('isTrue' => '1')), 'jnlighterbox' => 'EXT:jn_lighterbox/Resources/Public/style/lightbox.min.css', 'jnlighterbox.' => array('media' => 'screen'), 'mtmslider' => 'EXT:mtmslider/Resources/Public/css/mtmslider.css', 'dpnglossary' => 'EXT:dpn_glossary/Resources/Public/css/styles.css', 'tx_mtmfertighauswelt' => 'EXT:mtmfertighauswelt/Resources/Public/Stylesheet/fertighaus.css'), 'includeJSLibs.' => array('jQuery' => 'EXT:base_template/Resources/Public/JavaScript/Src/jquery-3.4.1.min.js', 'responsiveTabs' => 'EXT:base_template/Resources/Public/JavaScript/Src/jquery.responsiveTabs.min.js', 'slickJS' => 'EXT:base_template/Resources/Public/JavaScript/Src/slick.min.js', 'ImageMapResizerJS' => 'EXT:base_template/Resources/Public/JavaScript/Src/imageMapResizer.min.js'), 'includeJSFooter.' => array('baseTemplateScripts' => 'EXT:base_template/Resources/Public/JavaScript/Dist/scripts.js', 'SiteCustomJS' => '{$JavaScript.Site}', 'jnlighterbox' => 'EXT:jn_lighterbox/Resources/Public/javascript/lightbox.min.js'), 'jsFooterInline.' => array('COA', '957.' => array('wrap' => ' lightbox.option({ | });', 'TEXT', '10.' => array('value' => 'Image %1 of %2', 'required' => '1', 'wrap' => 'albumLabel: "|",'), 'TEXT', '40.' => array('value' => '600', 'wrap' => 'fadeDuration: |,', 'if.' => array('value' => '600', 'equals' => '600', 'negate' => '1')), 'TEXT', '50.' => array('value' => 'false', 'wrap' => 'fitImagesInViewport: |,', 'if.' => array('value' => '0', 'equals' => '1')), 'TEXT', '60.' => array('value' => '600', 'wrap' => 'imageFadeDuration: |,', 'if.' => array('value' => '600', 'equals' => '600', 'negate' => '1')), 'TEXT', '70.' => array('value' => '6000', 'wrap' => 'maxWidth: |,', 'if.' => array('value' => '6000', 'equals' => '6000', 'negate' => '1')), 'TEXT', '80.' => array('value' => '800', 'wrap' => 'maxHeight: |,', 'if.' => array('value' => '6000', 'equals' => '800', 'negate' => '1')), 'TEXT', '90.' => array('value' => '50', 'wrap' => 'positionFromTop: |,', 'if.' => array('value' => '50', 'equals' => '50', 'negate' => '1')), 'TEXT', '100.' => array('value' => '700', 'wrap' => 'resizeDuration: |,', 'if.' => array('value' => '700', 'equals' => '700', 'negate' => '1')), 'TEXT', '110.' => array('value' => 'false', 'wrap' => 'showImageNumberLabel: |,', 'if.' => array('value' => '0', 'equals' => '1')), 'TEXT', '120.' => array('value' => 'wrapAround: true,'))), 'includeJS.' => array('mtmslider' => 'EXT:mtmslider/Resources/Public/js/template1.js', 'cycle2' => 'EXT:mtmslider/Resources/Public/js/jquery.cycle2.min.js', 'cycle2_carousel' => 'EXT:mtmslider/Resources/Public/js/jquery.cycle2.carousel.min.js', 'cycle2_swipe' => 'EXT:mtmslider/Resources/Public/js/jquery.cycle2.swipe.min.js'), 'headerData.' => array('TEXT', '1.' => array('value' => '<!-- Google Tag Manager --><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':new Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\'https://www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);})(window,document,\'script\',\'dataLayer\',\'GTM-WJPCT3PB\');</script><!-- End Google Tag Manager -->'), 'TEXT', '2.' => array('value' => '<script id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="719d5a80-8432-4cb8-acf5-66227c3463fc" data-blockingmode="auto" type="text/javascript"></script>'))))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 223
     * @return string
     */
    protected function generatePageBodyContent(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->generatePageBodyContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 189
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 141
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push($controller->sPre, 'PAGE');

            $controller->content = $this->generatePageContent($controller, $request);

            $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 /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Middleware/ResponsePropagation.php line 34
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        try {
            $response = $handler->handle($request);
        } catch (PropagateResponseException $e) {
            $response = $e->getResponse();
        }

at TYPO3\CMS\Core\Middleware\ResponsePropagation->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 48
        // 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(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/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 ($GLOBALS['TSFE'] instanceof TypoScriptFrontendController) {
            if (
                (!isset($GLOBALS['TSFE']->config['config']['enableContentLengthHeader']) || $GLOBALS['TSFE']->config['config']['enableContentLengthHeader'])
                && !$GLOBALS['TSFE']->isBackendUserLoggedIn() && !($GLOBALS['TYPO3_CONF_VARS']['FE']['debug'] ?? false)
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 79
                );
            }
        }

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

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 78
                $this->convertCharsetRecursivelyToUtf8($parsedBody, $controller->metaCharset);
                $request = $request->withParsedBody($parsedBody);
            }
        }
        $response = $handler->handle($request);

        /**
         * Release TSFE locks. They have been acquired in the above call to controller->getFromCache().
         * TSFE locks are usually released by the RequestHandler 'final' middleware.
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 104
        // Make TSFE globally available
        // @todo deprecate $GLOBALS['TSFE'] once TSFE is retrieved from the
        //       PSR-7 request attribute frontend.controller throughout TYPO3 core
        $GLOBALS['TSFE'] = $controller;
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 132
            }
        }

        $request = $request->withAttribute('noCache', $this->disableCache);
        return $handler->handle($request);
    }

    /**
     * Filters out the arguments that are necessary for calculating cHash
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Middleware/PreviewSimulator.php line 66
            $previewAspect = GeneralUtility::makeInstance(PreviewAspect::class, $isPreview);
            $this->context->setAspect('frontend.preview', $previewAspect);
        }

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

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 106
        // merge the PageArguments with the request query parameters
        $queryParams = array_replace_recursive($request->getQueryParams(), $pageArguments->getArguments());
        $request = $request->withQueryParams($queryParams);

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 80

                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(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 94
                $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(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 97
        if ($this->context->getAspect('frontend.user')->isLoggedIn() && $rateLimiter) {
            $rateLimiter->reset();
        }

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

        // Store session data for fe_users if it still exists
        if ($frontendUser instanceof FrontendUserAuthentication) {
            $frontendUser->storeSessionData();
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 78
            Bootstrap::loadExtTables();
            $this->setBackendUserAspect($GLOBALS['BE_USER']);
        }

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

        // If, when building the response, the user is still available, then ensure that the headers are sent properly
        if ($this->context->getAspect('backend.user')->isLoggedIn()) {
            return $this->applyHeadersToResponse($response);
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 55
        ) {
            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(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 65
        $request = $request->withAttribute('routing', $routeResult);
        if ($routeResult->getLanguage() instanceof SiteLanguage) {
            Locales::setSystemLocaleFromSiteLanguage($routeResult->getLanguage());
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 64
    {
        $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(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 45
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $request = $request->withAttribute('normalizedParams', NormalizedParams::createFromRequest($request));
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Middleware/VerifyHostHeader.php line 55
                1396795884
            );
        }

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

    /**
     * Checks if the provided host header value matches the trusted hosts pattern.
at TYPO3\CMS\Core\Middleware\VerifyHostHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 58
        $this->timeTracker->setEnabled($timeTrackingEnabled);
        $this->timeTracker->start(microtime(true));
        $this->timeTracker->push('');

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

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$54->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 78
     * @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 /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/AbstractApplication.php line 86
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        try {
            $response = $this->requestHandler->handle($request);
        } catch (ImmediateResponseException $exception) {
            $response = $exception->getResponse();
        }
        return $response;
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/frontend/Classes/Http/Application.php line 69
        // Create new request object having applicationType "I am a frontend request" attribute.
        $request = $request->withAttribute('applicationType', SystemEnvironmentBuilder::REQUESTTYPE_FE);

        $this->initializeContext();
        return parent::handle($request);
    }

    /**
     * Create a PSR-7 Response that redirects to the install tool
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/typo3/sysext/core/Classes/Http/AbstractApplication.php line 100
     * @param callable $execute Deprecated, will be removed in TYPO3 v12.0
     */
    final public function run(callable $execute = null)
    {
        $response = $this->handle(ServerRequestFactory::fromGlobals());
        if ($execute !== null) {
            trigger_error('Custom execution of Application code will be removed in TYPO3 v12.0, use PSR-15 Middlewares instead.', E_USER_DEPRECATED);
            $execute();
        }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /pages/51/21/d0012242/home/htdocs/typo3_11/public/index.php line 20
// Set up the application for the frontend
call_user_func(static 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 /pages/51/21/d0012242/home/htdocs/typo3_11/public/index.php line 21
call_user_func(static 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();
});