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 "reise" does not exist for this request.

in /html/typo3/typo3_src-12.4.14/typo3/sysext/extbase/Classes/Mvc/ExtbaseRequestParameters.php line 258
     */
    public function getArgument(string $argumentName): mixed
    {
        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('reise')
in /html/typo3/typo3_src-12.4.14/typo3/sysext/extbase/Classes/Mvc/Request.php line 173
    }

    public function getArgument(string $argumentName): mixed
    {
        return $this->getExtbaseAttribute()->getArgument($argumentName);
    }

    public function hasArgument(string $argumentName): bool
    {
at TYPO3\CMS\Extbase\Mvc\Request->getArgument('reise')
in /html/typo3/typo3conf/ext/travel/Classes/Controller/ReiseController.php line 87
  * @param \Aktivweb\Travel\Domain\Model\Reise $reise
  * @return void
  */
 public function showAction() : ResponseInterface {
        $reise = $this->reiseRepository->findByUid($this->request->getArgument("reise"));

        $this->view->assign('reise', $reise);
        $this->titleProvider->setTitle($reise->getPagetitle() ? $reise->getPagetitle() : $reise->getTitle());
        return $this->htmlResponse();
at Aktivweb\Travel\Controller\ReiseController->showAction()
in /html/typo3/typo3_src-12.4.14/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 479
        }
        $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 /html/typo3/typo3_src-12.4.14/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 396
        $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 /html/typo3/typo3_src-12.4.14/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 68
                    1217839467
                );
            }
            $controller = $this->resolveController($request);
            $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 /html/typo3/typo3_src-12.4.14/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 168
            }
        }

        // Dispatch the extbase request
        $response = $this->dispatcher->dispatch($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 /html/typo3/typo3_src-12.4.14/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 147
     */
    public function run(string $content, array $configuration, ServerRequestInterface $request): string
    {
        $request = $this->initialize($configuration, $request);
        return $this->handleFrontendRequest($request);
    }

    /**
     * Used for any Extbase Plugin in the Frontend, be sure to run $this->initialize() before.
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi3'), object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 4762
                if (is_object($classObj) && method_exists($classObj, $parts[1]) && is_callable($callable)) {
                    if (method_exists($classObj, 'setContentObjectRenderer') && is_callable([$classObj, 'setContentObjectRenderer'])) {
                        $classObj->setContentObjectRenderer($this);
                    }
                    $content = $callable($content, $conf, $this->getRequest()->withAttribute('currentContentObject', $this));
                } 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' => 'Travel', 'pluginName' => 'TravelPi3'), '')
in /html/typo3/typo3_src-12.4.14/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' => 'Travel', 'pluginName' => 'TravelPi3'))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 709
        }

        // 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' => 'Travel', 'pluginName' => 'TravelPi3'))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 656
        $fullConfigArray = $this->mergeTSRef($fullConfigArray, 'tempKey');
        $contentObject = $this->getContentObject($fullConfigArray['tempKey']);
        $content = '';
        if ($contentObject) {
            $content = $this->render($contentObject, $fullConfigArray['tempKey.']);
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi3'), 'tt_content.list.20.travel_pi3')
in /html/typo3/typo3_src-12.4.14/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 184
        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('bootstrapcontentitems_modalshow' => 'USER', 'bootstrapcontentitems_modalshow.' => array('extensionName' => 'BootstrapContentItems', 'pluginName' => 'ModalShow', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run'), 'powermailcond_pi1' => 'EXTBASEPLUGIN', 'powermailcond_pi1.' => array('extensionName' => 'PowermailCond', 'pluginName' => 'Pi1'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'travel_travelpi1' => 'EXTBASEPLUGIN', 'travel_travelpi1.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi1'), 'travel_travelpi2' => 'EXTBASEPLUGIN', 'travel_travelpi2.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi2'), 'travel_travelpi3' => 'EXTBASEPLUGIN', 'travel_travelpi3.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi3'), 'travel_pi1' => 'USER', 'travel_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi1'), 'travel_pi2' => 'USER', 'travel_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi2'), 'travel_pi3' => 'USER', 'travel_pi3.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi3')), 'tt_content.list.20.travel_pi3', 'travel_pi3')
in /html/typo3/typo3_src-12.4.14/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 167
                '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)) {
            self::resetFrontendEnvironment($tsfeBackup);
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('uid' => 1774, 'pid' => 278, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 650, 'tstamp' => 1713433231, 'crdate' => 1470817009, 'cruser_id' => 3, 'hidden' => 0, 'sorting' => 256, 'CType' => 'list', 'header' => '', 'header_position' => '', 'bodytext' => null, 'assets' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '1', 'list_type' => 'travel_pi3', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="main"> <language index="lDEF"> <field index="settings.kategorie"> <value index="vDEF"></value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.filter"> <value index="vDEF"></value> </field> <field index="settings.orderBy"> <value index="vDEF"></value> </field> <field index="settings.land"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">Reise-&gt;show;Reise-&gt;booking</value> </field> </language> </sheet> <sheet index="tempalte"> <language index="lDEF"> <field index="settings.pages.list"> <value index="vDEF"></value> </field> <field index="settings.pages.show"> <value index="vDEF"></value> </field> <field index="settings.pages.request"> <value index="vDEF">pages_279</value> </field> <field index="settings.templateLayout"> <value index="vDEF">0</value> </field> <field index="settings.templateToolbar"> <value index="vDEF">0</value> </field> <field index="settings.templateSelectNav"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="sorting"> <language index="lDEF"> <field index="settings.order"> <value index="vDEF"></value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":"","colPos":"","tx_container_parent":"","header":"","header_layout":"","header_style":"","header_position":"","header_link":"","subheader":"","list_type":"","pi_flexform":"","pages":"","recursive":"","layout":"","border":"","container_layout":"","frame_strech":"","align_center":"","reverse_direction":"","container_asset":"","icon":"","linkToTop":"","hidden":"","starttime":"","endtime":"","editlock":""}', 'selected_categories' => '', 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'image' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'carousel_nav' => 0, 'carousel_dots' => 0, 'carousel_autoplay' => 0, 'carousel_items' => 0, 'filelink_sorting_direction' => '', 'carousel_thumbnail' => 1, 'carousel_item_content' => 0, 'tx_container_parent' => 0, 'icon' => '', 'breakpoint' => 0, 'swiper_nav' => 0, 'swiper_dots' => 0, 'swiper_scrollbar' => 0, 'swiper_autoplay' => 0, 'swiper_loop' => 0, 'swiper_effect' => 1, 'swiper_thumbnail' => 1, 'swiper_slides' => 1, 'swiper_children' => 0, 'swiper_container' => 0, 'swiper_auto_size' => '', 'swiper_layout' => '', 'swiper_width' => 0, 'swiper_width_unit' => '', 'swiper_height' => 0, 'swiper_height_unit' => '', 'swiper_lightbox' => 0, 'swiper_thumbs' => 0, 'swiper_caption_enable' => 0, 'swiper_caption_layout' => '', 'swiper_caption_position' => '', 'space_between' => 0, 'swiper_caption_description' => null, 'header_style' => '', 'border' => 0, 'frame_strech' => 0, 'bootstrap_content' => 0, 'reverse_direction' => 0, 'align_center' => 0, 'container_layout' => '', 'container_asset' => 0, 'card_fullheight' => 0, 'card_layout' => '', 'card_price' => 0.0, 'card_price_enable' => 0, 'card_price_type' => 0, 'button_enable' => 0, 'button_layout' => '', 'button_text' => '', 'button_link' => '', 'contact_phone' => '', 'contact_email' => '', 'tab_orientation' => '', 'additional_enable' => 0, 'additional_text' => ''), 'typoscriptObjectPath' => 'tt_content.list.20.travel_pi3', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/Default_action_List_e25474a5dfa0a9b4c645c9a860838375a1a2eed0.php line 67
'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 Default_action_List_e25474a5dfa0a9b4c645c9a860838375a1a2eed0->{closure}()
in /html/typo3/typo3_src-12.4.14/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 /html/typo3/typo3temp/var/cache/code/fluid_template/Default_action_List_e25474a5dfa0a9b4c645c9a860838375a1a2eed0.php line 75
return $output4;
},
];

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

$output0 .= '
';
at Default_action_List_e25474a5dfa0a9b4c645c9a860838375a1a2eed0->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3_src-12.4.14/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 /html/typo3/typo3_src-12.4.14/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 /html/typo3/typo3temp/var/cache/code/fluid_template/layout_Default_html_bac036635c42595f4b1abf887517ee76039d8455.php line 413
'contentAs' => NULL,
'debug' => true,
];

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

$output0 .= '

        ';
at layout_Default_html_bac036635c42595f4b1abf887517ee76039d8455->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3_src-12.4.14/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 /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 330
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 87

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

        $this->renderFluidTemplateAssetsIntoPageRenderer($variables);
        $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:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:font_awesome/Resources/Private/Templates/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:font_awesome/Resources/Private/Partials/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:font_awesome/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), '20.' => array('bootstrapcontentitems_modalshow' => 'USER', 'bootstrapcontentitems_modalshow.' => array('extensionName' => 'BootstrapContentItems', 'pluginName' => 'ModalShow', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run'), 'powermailcond_pi1' => 'EXTBASEPLUGIN', 'powermailcond_pi1.' => array('extensionName' => 'PowermailCond', 'pluginName' => 'Pi1'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'travel_travelpi1' => 'EXTBASEPLUGIN', 'travel_travelpi1.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi1'), 'travel_travelpi2' => 'EXTBASEPLUGIN', 'travel_travelpi2.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi2'), 'travel_travelpi3' => 'EXTBASEPLUGIN', 'travel_travelpi3.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi3'), 'travel_pi1' => 'USER', 'travel_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi1'), 'travel_pi2' => 'USER', 'travel_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi2'), 'travel_pi3' => 'USER', 'travel_pi3.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi3'))))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 709
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:font_awesome/Resources/Private/Templates/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:font_awesome/Resources/Private/Partials/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:font_awesome/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), '20.' => array('bootstrapcontentitems_modalshow' => 'USER', 'bootstrapcontentitems_modalshow.' => array('extensionName' => 'BootstrapContentItems', 'pluginName' => 'ModalShow', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run'), 'powermailcond_pi1' => 'EXTBASEPLUGIN', 'powermailcond_pi1.' => array('extensionName' => 'PowermailCond', 'pluginName' => 'Pi1'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'travel_travelpi1' => 'EXTBASEPLUGIN', 'travel_travelpi1.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi1'), 'travel_travelpi2' => 'EXTBASEPLUGIN', 'travel_travelpi2.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi2'), 'travel_travelpi3' => 'EXTBASEPLUGIN', 'travel_travelpi3.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi3'), 'travel_pi1' => 'USER', 'travel_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi1'), 'travel_pi2' => 'USER', 'travel_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi2'), 'travel_pi3' => 'USER', 'travel_pi3.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi3'))))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 656
        $fullConfigArray = $this->mergeTSRef($fullConfigArray, 'tempKey');
        $contentObject = $this->getContentObject($fullConfigArray['tempKey']);
        $content = '';
        if ($contentObject) {
            $content = $this->render($contentObject, $fullConfigArray['tempKey.']);
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('< lib.contentElement', array('templateName' => 'List', '20.' => array('bootstrapcontentitems_modalshow' => 'USER', 'bootstrapcontentitems_modalshow.' => array('extensionName' => 'BootstrapContentItems', 'pluginName' => 'ModalShow', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run'), 'powermailcond_pi1' => 'EXTBASEPLUGIN', 'powermailcond_pi1.' => array('extensionName' => 'PowermailCond', 'pluginName' => 'Pi1'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'travel_travelpi1' => 'EXTBASEPLUGIN', 'travel_travelpi1.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi1'), 'travel_travelpi2' => 'EXTBASEPLUGIN', 'travel_travelpi2.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi2'), 'travel_travelpi3' => 'EXTBASEPLUGIN', 'travel_travelpi3.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi3'), 'travel_pi1' => 'USER', 'travel_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi1'), 'travel_pi2' => 'USER', 'travel_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi2'), 'travel_pi3' => 'USER', 'travel_pi3.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi3'))), 'list')
in /html/typo3/typo3_src-12.4.14/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')), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('split', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'comma-separated-value', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets'))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header'), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html'), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'image')), 'gallery', '20.' => array('maxGalleryWidth' => '1199', 'maxGalleryWidthInText' => '600', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('bootstrapcontentitems_modalshow' => 'USER', 'bootstrapcontentitems_modalshow.' => array('extensionName' => 'BootstrapContentItems', 'pluginName' => 'ModalShow', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run'), 'powermailcond_pi1' => 'EXTBASEPLUGIN', 'powermailcond_pi1.' => array('extensionName' => 'PowermailCond', 'pluginName' => 'Pi1'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'travel_travelpi1' => 'EXTBASEPLUGIN', 'travel_travelpi1.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi1'), 'travel_travelpi2' => 'EXTBASEPLUGIN', 'travel_travelpi2.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi2'), 'travel_travelpi3' => 'EXTBASEPLUGIN', 'travel_travelpi3.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi3'), 'travel_pi1' => 'USER', 'travel_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi1'), 'travel_pi2' => 'USER', 'travel_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi2'), 'travel_pi3' => 'USER', 'travel_pi3.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi3'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content'))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('comma-separated-value', '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'))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text'), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'assets')), 'gallery', '20.' => array('maxGalleryWidth' => '1199', 'maxGalleryWidthInText' => '600', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'), 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor')), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'image')), 'gallery', '20.' => array('maxGalleryWidth' => '1199', 'maxGalleryWidthInText' => '600', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction'))))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('menu', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')))))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('database-query', '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('files', '10.' => array('references.' => array('fieldName' => 'image')))))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('menu', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')))))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('menu', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')), 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor'))), 'settings.' => array('card.' => array('dummyImage' => ''))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('menu', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')), 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor'))), 'settings.' => array('card.' => array('dummyImage' => ''))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('menu', '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('files', '10.' => array('references.' => array('fieldName' => 'media')), 'database-query', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => '{#sectionIndex} = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'image')))))))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('menu', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')), 'database-query', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'where' => '{#sectionIndex} = 1', 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'image')))))))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('menu', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')))))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('menu', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')))))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('menu', '10.' => array('levels' => '7', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')))))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('menu', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')))))), 'powermail_pi1' => '< lib.contentElement', 'powermail_pi1.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'Powermail', 'pluginName' => 'Pi1')), 'powermail_pi2' => '< lib.contentElement', 'powermail_pi2.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'Powermail', 'pluginName' => 'Pi2')), 'powermail_pi3' => '< lib.contentElement', 'powermail_pi3.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'Powermail', 'pluginName' => 'Pi3')), 'powermail_pi4' => '< lib.contentElement', 'powermail_pi4.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'Powermail', 'pluginName' => 'Pi4')), 'swiper_menu_pages' => 'FLUIDTEMPLATE', 'swiper_menu_pages.' => array('templateName' => 'SwiperMenuPages', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), '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')), 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor')), 'Aktivweb\\Swiper\\DataProcessing\\CarouselProcessor')), 'swiper_carousel' => 'FLUIDTEMPLATE', 'swiper_carousel.' => array('templateName' => 'SwiperCarousel.html', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/'), 'settings.' => array('caption.' => array('colClass' => 'col-12 col-md-4')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'assets')), 'Aktivweb\\Swiper\\DataProcessing\\CarouselProcessor')), 'swiper_gallery' => 'FLUIDTEMPLATE', 'swiper_gallery.' => array('templateName' => 'SwiperGallery.html', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/'), 'settings.' => array('caption.' => array('colClass' => 'col-12 col-md-4')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'assets')), 'Aktivweb\\Swiper\\DataProcessing\\CarouselProcessor')), 'swiper_content' => 'FLUIDTEMPLATE', 'swiper_content.' => array('templateName' => 'SwiperContent.html', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/'), 'settings.' => array('breakpoints.' => array('0.' => array('slidesPerView' => '1', 'spaceBetween' => '0'), '576.' => array('slidesPerView' => '2', 'spaceBetween' => '24'), '991.' => array('slidesPerView' => '3', 'spaceBetween' => '24'))), 'dataProcessing.' => array('Aktivweb\\Swiper\\DataProcessing\\ContentProcessor', '10.' => array('table' => 'tt_content', 'where' => 'swiper_container = 3', 'as' => 'myHaikus'), 'Aktivweb\\Swiper\\DataProcessing\\CarouselProcessor')), 'tabs' => 'FLUIDTEMPLATE', 'tabs.' => array('templateName' => 'Tabs', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('Aktivweb\\BootstrapContentItems\\DataProcessing\\TabsProcessor', 'Aktivweb\\BootstrapContentItems\\DataProcessing\\ContentProcessor', 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor')), 'accordion' => 'FLUIDTEMPLATE', 'accordion.' => array('templateName' => 'Accordion', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('Aktivweb\\BootstrapContentItems\\DataProcessing\\AccordionProcessor', 'Aktivweb\\BootstrapContentItems\\DataProcessing\\ContentProcessor', 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor')), 'card' => 'FLUIDTEMPLATE', 'card.' => array('templateName' => 'Card', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'card.' => array('dummyImage' => '', 'buttonLayout' => 'btn-outline-warning')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'assets')), 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor')), 'media_object' => 'FLUIDTEMPLATE', 'media_object.' => array('templateName' => 'MediaObject', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'assets')), 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor')), 'contact' => 'FLUIDTEMPLATE', 'contact.' => array('templateName' => 'Contact', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'address.' => array('name' => '{$theme.address.name}', 'fax' => '{$theme.address.fax}', 'email' => '{$theme.address.email}', 'www' => '{$theme.address.www}', 'street' => '{$theme.address.street}', 'zip' => '{$theme.address.zip}', 'city' => '{$theme.address.city}', 'phone' => '{$theme.address.phone}'))), 'contactPerson' => 'FLUIDTEMPLATE', 'contactPerson.' => array('templateName' => 'contactPerson', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'address.' => array('name' => '{$theme.address.name}', 'fax' => '{$theme.address.fax}', 'email' => '{$theme.address.email}', 'www' => '{$theme.address.www}', 'street' => '{$theme.address.street}', 'zip' => '{$theme.address.zip}', 'city' => '{$theme.address.city}', 'phone' => '{$theme.address.phone}')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'assets')))), 'text_counter' => 'FLUIDTEMPLATE', 'text_counter.' => array('templateName' => 'textCounter', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')))), '1Column' => 'FLUIDTEMPLATE', '1Column.' => array('templateName' => '1Column', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'container.' => array('colClass' => 'col-12')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'container_asset')), 'B13\\Container\\DataProcessing\\ContainerProcessor')), '1ColumnCenter' => 'FLUIDTEMPLATE', '1ColumnCenter.' => array('templateName' => '1ColumnCenter', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'container.' => array('colClass' => 'col-12 col-md-8')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'container_asset')), 'B13\\Container\\DataProcessing\\ContainerProcessor')), '2Columns' => 'FLUIDTEMPLATE', '2Columns.' => array('templateName' => '2Columns', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'container.' => array('colClass' => 'col-12 col-md-6')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'container_asset')), 'B13\\Container\\DataProcessing\\ContainerProcessor')), '3Columns' => 'FLUIDTEMPLATE', '3Columns.' => array('templateName' => '3Columns', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'container.' => array('colClass' => 'col-12 col-md-4')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'container_asset')), 'B13\\Container\\DataProcessing\\ContainerProcessor')), '4Columns' => 'FLUIDTEMPLATE', '4Columns.' => array('templateName' => '4Columns', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'container.' => array('colClass' => 'col-12 col-md-3')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'container_asset')), 'B13\\Container\\DataProcessing\\ContainerProcessor')), 'sidebarRight' => 'FLUIDTEMPLATE', 'sidebarRight.' => array('templateName' => 'sidebarRight', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor')), 'sidebarLeft' => 'FLUIDTEMPLATE', 'sidebarLeft.' => array('templateName' => 'sidebarLeft', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor')), 'fullscreen' => 'FLUIDTEMPLATE', 'fullscreen.' => array('templateName' => 'fullscreen', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'container_asset')))), 'gallery' => 'FLUIDTEMPLATE', 'gallery.' => array('templateName' => 'Gallery.html', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:font_awesome/Resources/Private/Templates/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:font_awesome/Resources/Private/Partials/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:font_awesome/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'assets')))), 'gallery_headline' => 'FLUIDTEMPLATE', 'gallery_headline.' => array('templateName' => 'GalleryHeadline.html', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:font_awesome/Resources/Private/Templates/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:font_awesome/Resources/Private/Partials/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:font_awesome/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')))), 'panel' => 'FLUIDTEMPLATE', 'panel.' => array('templateName' => 'Panel.html', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:font_awesome/Resources/Private/Templates/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:font_awesome/Resources/Private/Partials/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:font_awesome/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'assets'))))))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 709
        }

        // 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')), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('split', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'comma-separated-value', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets'))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header'), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html'), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'image')), 'gallery', '20.' => array('maxGalleryWidth' => '1199', 'maxGalleryWidthInText' => '600', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('bootstrapcontentitems_modalshow' => 'USER', 'bootstrapcontentitems_modalshow.' => array('extensionName' => 'BootstrapContentItems', 'pluginName' => 'ModalShow', 'userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run'), 'powermailcond_pi1' => 'EXTBASEPLUGIN', 'powermailcond_pi1.' => array('extensionName' => 'PowermailCond', 'pluginName' => 'Pi1'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'travel_travelpi1' => 'EXTBASEPLUGIN', 'travel_travelpi1.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi1'), 'travel_travelpi2' => 'EXTBASEPLUGIN', 'travel_travelpi2.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi2'), 'travel_travelpi3' => 'EXTBASEPLUGIN', 'travel_travelpi3.' => array('extensionName' => 'Travel', 'pluginName' => 'TravelPi3'), 'travel_pi1' => 'USER', 'travel_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi1'), 'travel_pi2' => 'USER', 'travel_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi2'), 'travel_pi3' => 'USER', 'travel_pi3.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Travel', 'pluginName' => 'TravelPi3'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content'))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('comma-separated-value', '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'))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text'), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'assets')), 'gallery', '20.' => array('maxGalleryWidth' => '1199', 'maxGalleryWidthInText' => '600', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'), 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor')), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'image')), 'gallery', '20.' => array('maxGalleryWidth' => '1199', 'maxGalleryWidthInText' => '600', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction'))))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('menu', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')))))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('database-query', '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('files', '10.' => array('references.' => array('fieldName' => 'image')))))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('menu', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')))))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('menu', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')), 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor'))), 'settings.' => array('card.' => array('dummyImage' => ''))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('menu', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')), 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor'))), 'settings.' => array('card.' => array('dummyImage' => ''))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('menu', '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('files', '10.' => array('references.' => array('fieldName' => 'media')), 'database-query', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => '{#sectionIndex} = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'image')))))))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('menu', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')), 'database-query', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'where' => '{#sectionIndex} = 1', 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'image')))))))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('menu', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')))))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('menu', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')))))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('menu', '10.' => array('levels' => '7', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')))))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('menu', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'media')))))), 'powermail_pi1' => '< lib.contentElement', 'powermail_pi1.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'Powermail', 'pluginName' => 'Pi1')), 'powermail_pi2' => '< lib.contentElement', 'powermail_pi2.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'Powermail', 'pluginName' => 'Pi2')), 'powermail_pi3' => '< lib.contentElement', 'powermail_pi3.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'Powermail', 'pluginName' => 'Pi3')), 'powermail_pi4' => '< lib.contentElement', 'powermail_pi4.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'Powermail', 'pluginName' => 'Pi4')), 'swiper_menu_pages' => 'FLUIDTEMPLATE', 'swiper_menu_pages.' => array('templateName' => 'SwiperMenuPages', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), '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')), 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor')), 'Aktivweb\\Swiper\\DataProcessing\\CarouselProcessor')), 'swiper_carousel' => 'FLUIDTEMPLATE', 'swiper_carousel.' => array('templateName' => 'SwiperCarousel.html', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/'), 'settings.' => array('caption.' => array('colClass' => 'col-12 col-md-4')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'assets')), 'Aktivweb\\Swiper\\DataProcessing\\CarouselProcessor')), 'swiper_gallery' => 'FLUIDTEMPLATE', 'swiper_gallery.' => array('templateName' => 'SwiperGallery.html', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/'), 'settings.' => array('caption.' => array('colClass' => 'col-12 col-md-4')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'assets')), 'Aktivweb\\Swiper\\DataProcessing\\CarouselProcessor')), 'swiper_content' => 'FLUIDTEMPLATE', 'swiper_content.' => array('templateName' => 'SwiperContent.html', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/'), 'settings.' => array('breakpoints.' => array('0.' => array('slidesPerView' => '1', 'spaceBetween' => '0'), '576.' => array('slidesPerView' => '2', 'spaceBetween' => '24'), '991.' => array('slidesPerView' => '3', 'spaceBetween' => '24'))), 'dataProcessing.' => array('Aktivweb\\Swiper\\DataProcessing\\ContentProcessor', '10.' => array('table' => 'tt_content', 'where' => 'swiper_container = 3', 'as' => 'myHaikus'), 'Aktivweb\\Swiper\\DataProcessing\\CarouselProcessor')), 'tabs' => 'FLUIDTEMPLATE', 'tabs.' => array('templateName' => 'Tabs', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('Aktivweb\\BootstrapContentItems\\DataProcessing\\TabsProcessor', 'Aktivweb\\BootstrapContentItems\\DataProcessing\\ContentProcessor', 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor')), 'accordion' => 'FLUIDTEMPLATE', 'accordion.' => array('templateName' => 'Accordion', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('Aktivweb\\BootstrapContentItems\\DataProcessing\\AccordionProcessor', 'Aktivweb\\BootstrapContentItems\\DataProcessing\\ContentProcessor', 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor')), 'card' => 'FLUIDTEMPLATE', 'card.' => array('templateName' => 'Card', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'card.' => array('dummyImage' => '', 'buttonLayout' => 'btn-outline-warning')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'assets')), 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor')), 'media_object' => 'FLUIDTEMPLATE', 'media_object.' => array('templateName' => 'MediaObject', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'assets')), 'Aktivweb\\FontAwesome\\DataProcessing\\IconProcessor')), 'contact' => 'FLUIDTEMPLATE', 'contact.' => array('templateName' => 'Contact', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'address.' => array('name' => '{$theme.address.name}', 'fax' => '{$theme.address.fax}', 'email' => '{$theme.address.email}', 'www' => '{$theme.address.www}', 'street' => '{$theme.address.street}', 'zip' => '{$theme.address.zip}', 'city' => '{$theme.address.city}', 'phone' => '{$theme.address.phone}'))), 'contactPerson' => 'FLUIDTEMPLATE', 'contactPerson.' => array('templateName' => 'contactPerson', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'address.' => array('name' => '{$theme.address.name}', 'fax' => '{$theme.address.fax}', 'email' => '{$theme.address.email}', 'www' => '{$theme.address.www}', 'street' => '{$theme.address.street}', 'zip' => '{$theme.address.zip}', 'city' => '{$theme.address.city}', 'phone' => '{$theme.address.phone}')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'assets')))), 'text_counter' => 'FLUIDTEMPLATE', 'text_counter.' => array('templateName' => 'textCounter', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')))), '1Column' => 'FLUIDTEMPLATE', '1Column.' => array('templateName' => '1Column', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'container.' => array('colClass' => 'col-12')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'container_asset')), 'B13\\Container\\DataProcessing\\ContainerProcessor')), '1ColumnCenter' => 'FLUIDTEMPLATE', '1ColumnCenter.' => array('templateName' => '1ColumnCenter', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'container.' => array('colClass' => 'col-12 col-md-8')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'container_asset')), 'B13\\Container\\DataProcessing\\ContainerProcessor')), '2Columns' => 'FLUIDTEMPLATE', '2Columns.' => array('templateName' => '2Columns', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'container.' => array('colClass' => 'col-12 col-md-6')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'container_asset')), 'B13\\Container\\DataProcessing\\ContainerProcessor')), '3Columns' => 'FLUIDTEMPLATE', '3Columns.' => array('templateName' => '3Columns', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'container.' => array('colClass' => 'col-12 col-md-4')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'container_asset')), 'B13\\Container\\DataProcessing\\ContainerProcessor')), '4Columns' => 'FLUIDTEMPLATE', '4Columns.' => array('templateName' => '4Columns', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')), 'container.' => array('colClass' => 'col-12 col-md-3')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'container_asset')), 'B13\\Container\\DataProcessing\\ContainerProcessor')), 'sidebarRight' => 'FLUIDTEMPLATE', 'sidebarRight.' => array('templateName' => 'sidebarRight', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor')), 'sidebarLeft' => 'FLUIDTEMPLATE', 'sidebarLeft.' => array('templateName' => 'sidebarLeft', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor')), 'fullscreen' => 'FLUIDTEMPLATE', 'fullscreen.' => array('templateName' => 'fullscreen', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:fs_lightbox/Resources/Private/Templates/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Container/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:fs_lightbox/Resources/Private/Partials/', 'EXT:bootstrap_content_items/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:fs_lightbox/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'container_asset')))), 'gallery' => 'FLUIDTEMPLATE', 'gallery.' => array('templateName' => 'Gallery.html', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:font_awesome/Resources/Private/Templates/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:font_awesome/Resources/Private/Partials/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:font_awesome/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'assets')))), 'gallery_headline' => 'FLUIDTEMPLATE', 'gallery_headline.' => array('templateName' => 'GalleryHeadline.html', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:font_awesome/Resources/Private/Templates/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:font_awesome/Resources/Private/Partials/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:font_awesome/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')))), 'panel' => 'FLUIDTEMPLATE', 'panel.' => array('templateName' => 'Panel.html', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:font_awesome/Resources/Private/Templates/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:font_awesome/Resources/Private/Partials/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:font_awesome/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'assets'))))))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 656
        $fullConfigArray = $this->mergeTSRef($fullConfigArray, 'tempKey');
        $contentObject = $this->getContentObject($fullConfigArray['tempKey']);
        $content = '';
        if ($contentObject) {
            $content = $this->render($contentObject, $fullConfigArray['tempKey.']);
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('<tt_content', array(), '')
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 95
                        $frontendController->currentRecord = $registerField;
                        $this->cObj->lastChanged($row['tstamp'] ?? 0);
                        $cObj->setRequest($this->request);
                        $cObj->start($row, $conf['table']);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0')))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 709
        }

        // 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('orderBy' => 'sorting', 'where' => '{#colPos}=0')))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 656
        $fullConfigArray = $this->mergeTSRef($fullConfigArray, 'tempKey');
        $contentObject = $this->getContentObject($fullConfigArray['tempKey']);
        $content = '';
        if ($contentObject) {
            $content = $this->render($contentObject, $fullConfigArray['tempKey.']);
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0')), 'lib.content')
in /html/typo3/typo3_src-12.4.14/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 184
        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('contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/', 'EXT:swiper/Resources/Private/Templates/', 'EXT:font_awesome/Resources/Private/Templates/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Templates/Fluid/', 'EXT:theme_sommerfern/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/', 'EXT:swiper/Resources/Private/Partials/', 'EXT:font_awesome/Resources/Private/Partials/Fluid/', 'EXT:bootstrap_content_items/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/Fluid/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/', 'EXT:swiper/Resources/Private/Layouts/', 'EXT:font_awesome/Resources/Private/Layouts/', 'EXT:bootstrap_content_items/Resources/Private/Layouts/', 'EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/'), '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', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'), 'lightbox.' => array('maxWidth' => '960')))), '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, figcaption, figure, 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,s', 'denyTags' => '*', '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, figcaption, figure, 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,s', 'denyTags' => '*', '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, figcaption', '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, figcaption, figure, 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,s', 'denyTags' => '*', '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'), 'figcaption.' => array('stripNL' => '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'))), 'parseFunc_powermail.' => 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')), 'forceAbsoluteUrl' => '1')), 'link.' => array('typolink.' => array('forceAbsoluteUrl' => '1'))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, figcaption, figure, 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,s', 'denyTags' => '*', '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, figcaption', '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, figcaption, figure, 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,s', 'denyTags' => '*', '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'), 'figcaption.' => array('stripNL' => '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'))), 'fluidContent.' => array('templateRootPaths.' => array('EXT:theme_sommerfern/Resources/Private/Templates/Fluid/'), 'partialRootPaths.' => array('EXT:theme_sommerfern/Resources/Private/Partials/Fluid/'), 'layoutRootPaths.' => array('EXT:theme_sommerfern/Resources/Private/Layouts/Fluid/')), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'levelfield:0, uid'), 'layoutLogo' => 'COA', 'layoutLogo.' => array('TEXT', '10.' => array('value' => 'Ecuador Discover', 'stdWrap.' => array('typolink' => '1', 'typolink.' => array('ATagParams' => 'class="sprite sprite-logo csc-logo hidden-xs hidden-xs"', 'parameter.' => array('data' => 'levelfield:0, uid'), 'title' => 'Ecuador Discover'))), 'TEXT', '20.' => array('value' => 'Ecuador Discover', 'stdWrap.' => array('typolink' => '1', 'typolink.' => array('ATagParams' => 'class="sprite sprite-logo-small fixed-logo hide"', 'parameter.' => array('data' => 'levelfield:0, uid'), 'title' => 'Ecuador Discover'))), 'TEXT', '30.' => array('value' => 'Ecuador Discover', 'stdWrap.' => array('typolink' => '1', 'typolink.' => array('ATagParams' => 'class="sprite sprite-logo-smart visible-xs"', 'parameter.' => array('data' => 'levelfield:0, uid'), 'title' => 'Ecuador Discover')))), 'slider' => 'CONTENT', 'slider.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 11', 'max' => '1')), 'content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0')), 'contentBelow' => 'CONTENT', 'contentBelow.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1'), 'stdWrap.' => array('wrap' => '<div class="col col-md-12">|</div>', 'innerWrap' => '<div class="row">|</div>', 'required' => '1')), 'fixContentReisen' => 'CONTENT', 'fixContentReisen.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0', 'pidInList' => '6')), 'partner' => 'COA', 'partner.' => array('stdWrap.' => array('wrap' => '<div class="col col-sm-12 hidden-xs">|</div>'), 'TEXT', '10.' => array('value' => 'SFR Reisen unterstützt folgende Organisationen:', 'wrap' => '<h4>|</h4>'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 12'), 'stdWrap.' => array('wrap' => '<div class="partner-list">|</div>'), 'slide' => '-1', 'slide.' => array('collect' => '0', 'collectReverse' => '1'), 'renderObj' => 'FILES', 'renderObj.' => array('references.' => array('table' => 'tt_content', 'uid.' => array('data' => 'field:uid'), 'fieldName' => 'assets'), 'renderObj' => 'IMAGE', 'renderObj.' => array('stdWrap.' => array('wrap' => '<div class="item-partner">|</div>'), 'file.' => array('treatIdAsReference' => '1', 'maxH' => '60', 'import.' => array('data' => 'file:current:publicUrl')), 'altText.' => array('data' => 'file:current:alternative'), 'titleText.' => array('data' => 'file:current:title'), 'params' => 'class="img-responsive"')))), 'searchbox' => 'USER_INT', 'searchbox.' => array('userFunc' => 'Tpwd\\KeSearch\\Plugins\\SearchboxPlugin->main', 'view.' => array('templateRootPaths.' => array('EXT:ke_search/Resources/Private/Templates/', 'EXT:ke_search/Resources/Private/Templates/', 'EXT:theme_sommerfern/Resources/Private/Templates/KeSearch/Mini/'), 'partialRootPaths.' => array('EXT:ke_search/Resources/Private/Partials/', 'EXT:ke_search/Resources/Private/Partials/', 'EXT:theme_sommerfern/Resources/Private/Partials/KeSearch/'), 'layoutRootPaths.' => array('EXT:ke_search/Resources/Private/Layouts/', 'EXT:ke_search/Resources/Private/Layouts/')), 'additionalAllowedPiVars' => '', 'searchWordParameter' => 'tx_kesearch_pi1[sword]', '_LOCAL_LANG.' => array('default.' => array('searchbox_default_value' => 'Suchbegriff ...', 'pagebrowser_prev' => 'zurück', 'pagebrowser_next' => 'weiter', 'results' => 'Gefundene Elemente', 'until' => 'von')), 'resultPage' => '248', 'cssFile' => '', 'loadFlexformsFromOtherCE' => '1750'), 'Sidebar' => 'COA', 'Sidebar.' => array('stdWrap.' => array('wrap' => '<nav role="navigation" class="sidebar-nav">|</nav>'), 'RECORDS', '10.' => array('stdWrap.' => array('innerWrap' => '<span class="fa fa-arrow-left"></span> Zur&uuml;ck zu&nbsp;|', 'typolink.' => array('parameter.' => array('data' => 'leveluid : -2'), 'ATagParams' => 'class="level-up"', 'title.' => array('data' => 'leveltitle : -2'))), 'source.' => array('data' => 'leveluid : -2'), 'tables' => 'pages', 'conf.' => array('pages' => 'TEXT', 'pages.' => array('field' => 'nav_title // title'))), 'HMENU', '20.' => array('entryLevel.' => array('data' => 'level'), 'TMENU', '1.' => array('expAll' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li role="menuitem" class="secound-level-li">|</li>', 'ATagTitle.' => array('field' => 'nav_title // title'), 'ATagParams' => 'role="link" class="secound-level-a"'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="secound-level-li secound-level-ifsub">|</li>', 'ATagTitle.' => array('field' => 'nav_title // title'), 'ATagParams' => 'class="secound-level-a secound-level-a-sub"')), 'TMENU', '2.' => array('expAll' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li role="menuitem" class="third-level-li">|</li>', 'ATagTitle.' => array('field' => 'nav_title // title'), 'ATagParams' => 'role="link" class="third-level-a"'), 'stdWrap.' => array('outerWrap' => '<div class="third-level-outer">|</div>', 'wrap' => '<button class="third-level-li-up" data-action="nav_up"><i class="fa fa-chevron-up" aria-hidden="true"></i><span class="third-level-li-button">weitere</span></button>|<button class="third-level-li-down" data-action="nav_down"><span class="third-level-li-button">weitere</span><i class="fa fa-chevron-down" aria-hidden="true"></i></button>', 'innerWrap' => '<ul class="third-level">|</ul>'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li role="menuitem" class="third-level-li">|</li>', 'ATagTitle.' => array('field' => 'nav_title // title'), 'ATagParams' => 'role="link" class="third-level-a"')), 'stdWrap.' => array('wrap' => '<ul class="secound-level">|</ul>', 'required' => '1', 'ifEmpty.' => array('cObject' => 'HMENU', 'cObject.' => array('special' => 'directory', 'special.' => array('value.' => array('data' => 'leveluid:-2')), 'TMENU', '1.' => array('NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li role="menuitem" class="secound-level-li">|</li>', 'ATagTitle.' => array('field' => 'nav_title // title'), 'ATagParams' => 'role="link" class="secound-level-a"'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="secound-level-li secound-level-ifsub">|</li>', 'ATagTitle.' => array('field' => 'nav_title // title'), 'ATagParams' => 'class="secound-level-a secound-level-a-sub"')), 'TMENU', '2.' => array('NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li role="menuitem" class="third-level-li">|</li>', 'ATagTitle.' => array('field' => 'nav_title // title'), 'ATagParams' => 'role="link" class="third-level-a"'), 'stdWrap.' => array('outerWrap' => '<div class="third-level-outer">|</div>', 'wrap' => '<button class="third-level-li-up" data-action="nav_up"><i class="fa fa-chevron-up" aria-hidden="true"></i><span class="third-level-li-button">weitere</span></button>|<button class="third-level-li-down" data-action="nav_down"><span class="third-level-li-button">weitere</span><i class="fa fa-chevron-down" aria-hidden="true"></i></button>', 'innerWrap' => '<ul class="third-level">|</ul>'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li role="menuitem" class="third-level-li">|</li>', 'ATagTitle.' => array('field' => 'nav_title // title'), 'ATagParams' => 'role="link" class="third-level-a"'))))))), 'formrequest' => 'CONTENT', 'formrequest.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0 AND CType = \'powermail_pi1\'', 'pidInList' => '277')), 'formbooking' => 'CONTENT', 'formbooking.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0', 'pidInList' => '1342')), 'formDefaultReise' => 'CONTENT', 'formDefaultReise.' => array('if.' => array('isTrue.' => array('data' => 'GP:tx_travel_pi1|reise')), 'table' => 'tx_travel_domain_model_reise', 'select.' => array('pidInList' => '6', 'selectFields' => 'uid, title', 'where' => 'uid={GP:tx_travel_pi1|reise} AND hidden=0 AND deleted=0', 'where.' => array('insertData' => '1')), 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'title')))), 'lib.content', 'content')
in /html/typo3/typo3_src-12.4.14/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 167
                '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)) {
            self::resetFrontendEnvironment($tsfeBackup);
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => null, 'typoscriptObjectPath' => 'lib.content', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/Default_action_Default_276393c83c622806915c2570b5a8d461f867a792.php line 84
'currentValueKey' => NULL,
'table' => '',
];
$renderChildrenClosure6 = ($arguments5['data'] !== null) ? function() use ($arguments5) { return $arguments5['data']; } : $renderChildrenClosure6;
$output0 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments5, $renderChildrenClosure6, $renderingContext);

$output0 .= '
            </div>
        </div>
at Default_action_Default_276393c83c622806915c2570b5a8d461f867a792->section_4f9be057f0ea5d2ba72fd2c810e8d7b9aa98b469(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3_src-12.4.14/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('Content', array(), false)
in /html/typo3/typo3_src-12.4.14/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' => 'Content', 'partial' => null, 'delegate' => null, 'arguments' => array(), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/layout_Default_html_babcf080c9be516e788c355efc4b4ddf4e3b121e.php line 66
'contentAs' => NULL,
'debug' => true,
];

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

$output0 .= '
';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_babcf080c9be516e788c355efc4b4ddf4e3b121e->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3_src-12.4.14/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 /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 330
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 87

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('file.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield: -1, backend_layout_next_level, slide', 'override.' => array('data' => 'TSFE:page|backend_layout')), 'pagets__sommerfern01' => 'TEXT', 'pagets__sommerfern01.' => array('value' => 'EXT:theme_sommerfern/Resources/Private/Templates/Default.html'), 'pagets__sommerfern02' => 'TEXT', 'pagets__sommerfern02.' => array('value' => 'EXT:theme_sommerfern/Resources/Private/Templates/Sidebar.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:theme_sommerfern/Resources/Private/Templates/Default.html'))), 'layoutRootPath' => 'EXT:theme_sommerfern/Resources/Private/Layouts/', 'partialRootPath' => 'EXT:theme_sommerfern/Resources/Private/Partials/', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '3', 'as' => 'menuMain'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value' => '247'), 'includeNotInMenu' => '1', 'as' => 'menuService1'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '21.' => array('special' => 'directory', 'special.' => array('value' => '47'), 'includeNotInMenu' => '1', 'as' => 'menuService2'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'list', 'special.' => array('value' => '277,262,269,261'), 'excludeUidList' => '277', 'levels' => '1', 'as' => 'menuAside'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '{$theme.pageUids.home}', 'as' => 'menuBreadcrumb')), 'settings.' => array('title' => 'Ecuador Discover', 'slogan' => 'ein Produkt von Sommer Fernreisen - seit 1987', 'phone.' => array('number' => '08533-919161', 'calling' => 'Mo-Fr von 9-17 Uhr'), 'youtube' => 'http://www.youtube.com/channel/UC_7g56CVTgp8Aw6aRD3CoyA/videos', 'facebook' => 'https://www.facebook.com/pages/SFR-SOMMER-FERNREISEN/118274238195103', 'twitter' => 'https://twitter.com/S_Fernreisen', 'links.' => array('anfrage' => '277', 'suche' => '248'))))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 709
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('file.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield: -1, backend_layout_next_level, slide', 'override.' => array('data' => 'TSFE:page|backend_layout')), 'pagets__sommerfern01' => 'TEXT', 'pagets__sommerfern01.' => array('value' => 'EXT:theme_sommerfern/Resources/Private/Templates/Default.html'), 'pagets__sommerfern02' => 'TEXT', 'pagets__sommerfern02.' => array('value' => 'EXT:theme_sommerfern/Resources/Private/Templates/Sidebar.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:theme_sommerfern/Resources/Private/Templates/Default.html'))), 'layoutRootPath' => 'EXT:theme_sommerfern/Resources/Private/Layouts/', 'partialRootPath' => 'EXT:theme_sommerfern/Resources/Private/Partials/', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '3', 'as' => 'menuMain'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value' => '247'), 'includeNotInMenu' => '1', 'as' => 'menuService1'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '21.' => array('special' => 'directory', 'special.' => array('value' => '47'), 'includeNotInMenu' => '1', 'as' => 'menuService2'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'list', 'special.' => array('value' => '277,262,269,261'), 'excludeUidList' => '277', 'levels' => '1', 'as' => 'menuAside'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '{$theme.pageUids.home}', 'as' => 'menuBreadcrumb')), 'settings.' => array('title' => 'Ecuador Discover', 'slogan' => 'ein Produkt von Sommer Fernreisen - seit 1987', 'phone.' => array('number' => '08533-919161', 'calling' => 'Mo-Fr von 9-17 Uhr'), 'youtube' => 'http://www.youtube.com/channel/UC_7g56CVTgp8Aw6aRD3CoyA/videos', 'facebook' => 'https://www.facebook.com/pages/SFR-SOMMER-FERNREISEN/118274238195103', 'twitter' => 'https://twitter.com/S_Fernreisen', 'links.' => array('anfrage' => '277', 'suche' => '248'))))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 656
        $fullConfigArray = $this->mergeTSRef($fullConfigArray, 'tempKey');
        $contentObject = $this->getContentObject($fullConfigArray['tempKey']);
        $content = '';
        if ($contentObject) {
            $content = $this->render($contentObject, $fullConfigArray['tempKey.']);
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('file.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield: -1, backend_layout_next_level, slide', 'override.' => array('data' => 'TSFE:page|backend_layout')), 'pagets__sommerfern01' => 'TEXT', 'pagets__sommerfern01.' => array('value' => 'EXT:theme_sommerfern/Resources/Private/Templates/Default.html'), 'pagets__sommerfern02' => 'TEXT', 'pagets__sommerfern02.' => array('value' => 'EXT:theme_sommerfern/Resources/Private/Templates/Sidebar.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:theme_sommerfern/Resources/Private/Templates/Default.html'))), 'layoutRootPath' => 'EXT:theme_sommerfern/Resources/Private/Layouts/', 'partialRootPath' => 'EXT:theme_sommerfern/Resources/Private/Partials/', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '3', 'as' => 'menuMain'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value' => '247'), 'includeNotInMenu' => '1', 'as' => 'menuService1'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '21.' => array('special' => 'directory', 'special.' => array('value' => '47'), 'includeNotInMenu' => '1', 'as' => 'menuService2'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'list', 'special.' => array('value' => '277,262,269,261'), 'excludeUidList' => '277', 'levels' => '1', 'as' => 'menuAside'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '{$theme.pageUids.home}', 'as' => 'menuBreadcrumb')), 'settings.' => array('title' => 'Ecuador Discover', 'slogan' => 'ein Produkt von Sommer Fernreisen - seit 1987', 'phone.' => array('number' => '08533-919161', 'calling' => 'Mo-Fr von 9-17 Uhr'), 'youtube' => 'http://www.youtube.com/channel/UC_7g56CVTgp8Aw6aRD3CoyA/videos', 'facebook' => 'https://www.facebook.com/pages/SFR-SOMMER-FERNREISEN/118274238195103', 'twitter' => 'https://twitter.com/S_Fernreisen', 'links.' => array('anfrage' => '277', 'suche' => '248'))), '10')
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 625
        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('includeJSFooter.' => array('powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'powermailForm.' => array('defer' => '1'), 'powermailCond' => 'EXT:powermail_cond/Resources/Public/JavaScript/PowermailCondition.min.js', 'powermailCond.' => array('defer' => '1'), 'config' => 'EXT:theme_sommerfern/Resources/Public/javascript/miscellaneous.js'), 'COA', '3132.' => array('wrap' => '<script id="powermail_conditions_container"|></script>', 'TEXT', '10.' => array('noTrimWrap' => '| data-condition-uri="|"|', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&type=3132', 'returnLast' => 'url', 'forceAbsoluteUrl' => '1'))), 'includeCSS.' => array('swiper' => 'EXT:swiper/Resources/Private/Scss/style.scss', 'swiper.' => array('outputfile' => 'EXT:swiper/Resources/Public/css/style.css', 'outputStyle' => 'expanded', 'sourceMap' => 'true', 'media' => 'screen'), 'bootstrap' => 'EXT:bootstrap_content_items/Resources/Private/Scss/bootstrap.scss', 'bootstrap.' => array('outputfile' => 'EXT:bootstrap_content_items/Resources/Public/css/bootstrap.css', 'outputStyle' => 'expanded', 'sourceMap' => 'true', 'media' => 'screen'), 'fontawesome' => 'EXT:font_awesome/Resources/Private/Scss/fontawesome.scss', 'fontawesome.' => array('outputfile' => 'EXT:font_awesome/Resources/Public/css/fontawesome.css', 'outputStyle' => 'expanded', 'sourceMap' => 'true', 'media' => 'screen'), 'screen' => 'EXT:theme_sommerfern/Resources/Public/css/screen.css', 'screen.' => array('media' => 'screen'), 'print' => 'EXT:theme_sommerfern/Resources/Public/css/print.css', 'print.' => array('media' => 'print')), 'includeJSFooterlibs.' => array('lightbox' => 'EXT:fs_lightbox/Resources/Public/javascript/vendor/fslightbox-basic-3.3.1/fslightbox.js', 'jquery' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/jquery/1.11.3.jquery.min.js', 'jquery.' => array('forceOnTop' => '1'), 'matchheight' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/jquery-match-height/jquery.matchHeight-min.js', 'slimbox2' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/slimbox-2.05/js/slimbox2.js', 'jquery-ui' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/jquery-ui-1.11.4.custom/jquery-ui.min.js', 'jquery-cookie' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/jquery-cookie/jquery.cookie.js', 'bootstrap-transition' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/bootstrap/js/transition.js', 'bootstrap-dropdown' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/bootstrap/js/dropdown.js', 'bootstrap-tab' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/bootstrap/js/tab.js', 'bootstrap-modal' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/bootstrap/js/modal.js', 'bootstrap-collapse' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/bootstrap/js/collapse.js', 'bootstrap-tooltip' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/bootstrap/js/tooltip.js'), 'USER', '9998.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'BootstrapContentItems', 'vendorName' => 'Aktivweb', 'pluginName' => 'ModalShow', 'view.' => array('templateRootPaths.' => array('EXT:bootstrap_content_items/Resources/Private/Templates/', 'EXT:theme_drhoellein/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:bootstrap_content_items/Resources/Private/Partials/', 'EXT:theme_drhoellein/Resources/Private/Templates/Partials/'), 'layoutRootPath.' => array('EXT:bootstrap_content_items/Resources/Private/Layouts/', 'EXT:theme_drhoellein/Resources/Private/Templates/Layouts/')), 'settings.' => array('version' => '5')), 'typeNum' => '0', 'config.' => array('compressCss' => '0', 'concatenateCss' => '0', 'compressJs' => '0', 'concatenateJs' => '0', 'no_cache' => '0', 'contentObjectExceptionHandler' => '0'), 'shortcutIcon' => 'EXT:theme_sommerfern/Resources/Public/images/favicon.png', 'headerData.' => array('TEXT', '20.' => array('value' => ' <script type="text/plain" data-ic-e="if"> (function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,\'script\',\'https://www.google-analytics.com/analytics.js\',\'ga\'); ga(\'create\', \'UA-9787204-3\', \'auto\'); ga(\'set\', \'anonymizeIp\', true); ga(\'send\', \'pageview\'); </script>'), 'TEXT', '9.' => array('value' => '<link href="/media/consent/iconsent.css" rel="stylesheet" type="text/css"/><script src="/media/consent/postscribe.js" type="text/javascript"></script><script> var disableStr = \'ga-disable-\' + \'UA-9787204-3\'; if (document.cookie.indexOf(disableStr + \'=true\') > -1) { window[disableStr] = true; } function gaOptout() { document.cookie = disableStr + \'=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/\'; window[disableStr] = true; } </script>')), 'meta.' => array('viewport' => 'width=device-width, initial-scale=1.0, user-scalable=no', 'author' => 'Sommer Fern GmbH', 'copyright' => 'Sommer Fern GmbH', 'revisit-after' => '7 days', 'format-detection' => 'telephone=no'), 'includeJS.' => array('html5shiv' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/html5shiv/html5shiv.min.js', 'html5shiv.' => array('allWrap' => '<!--[if lt IE 9]>|<![endif]-->', 'excludeFromConcatenation' => '1'), 'respond' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/respond/respond.min.js', 'respond.' => array('allWrap' => '<!--[if lt IE 9]>|<![endif]-->', 'excludeFromConcatenation' => '1')), 'FLUIDTEMPLATE', '10.' => array('file.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield: -1, backend_layout_next_level, slide', 'override.' => array('data' => 'TSFE:page|backend_layout')), 'pagets__sommerfern01' => 'TEXT', 'pagets__sommerfern01.' => array('value' => 'EXT:theme_sommerfern/Resources/Private/Templates/Default.html'), 'pagets__sommerfern02' => 'TEXT', 'pagets__sommerfern02.' => array('value' => 'EXT:theme_sommerfern/Resources/Private/Templates/Sidebar.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:theme_sommerfern/Resources/Private/Templates/Default.html'))), 'layoutRootPath' => 'EXT:theme_sommerfern/Resources/Private/Layouts/', 'partialRootPath' => 'EXT:theme_sommerfern/Resources/Private/Partials/', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '3', 'as' => 'menuMain'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value' => '247'), 'includeNotInMenu' => '1', 'as' => 'menuService1'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '21.' => array('special' => 'directory', 'special.' => array('value' => '47'), 'includeNotInMenu' => '1', 'as' => 'menuService2'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'list', 'special.' => array('value' => '277,262,269,261'), 'excludeUidList' => '277', 'levels' => '1', 'as' => 'menuAside'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '{$theme.pageUids.home}', 'as' => 'menuBreadcrumb')), 'settings.' => array('title' => 'Ecuador Discover', 'slogan' => 'ein Produkt von Sommer Fernreisen - seit 1987', 'phone.' => array('number' => '08533-919161', 'calling' => 'Mo-Fr von 9-17 Uhr'), 'youtube' => 'http://www.youtube.com/channel/UC_7g56CVTgp8Aw6aRD3CoyA/videos', 'facebook' => 'https://www.facebook.com/pages/SFR-SOMMER-FERNREISEN/118274238195103', 'twitter' => 'https://twitter.com/S_Fernreisen', 'links.' => array('anfrage' => '277', 'suche' => '248'))), 'footerData.' => array('TEXT', '100.' => array('value' => '<script src="/media/consent/ecuador-discover/iconsent.js" type="text/javascript"></script>'))), '')
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 605
    {
        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('includeJSFooter.' => array('powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'powermailForm.' => array('defer' => '1'), 'powermailCond' => 'EXT:powermail_cond/Resources/Public/JavaScript/PowermailCondition.min.js', 'powermailCond.' => array('defer' => '1'), 'config' => 'EXT:theme_sommerfern/Resources/Public/javascript/miscellaneous.js'), 'COA', '3132.' => array('wrap' => '<script id="powermail_conditions_container"|></script>', 'TEXT', '10.' => array('noTrimWrap' => '| data-condition-uri="|"|', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&type=3132', 'returnLast' => 'url', 'forceAbsoluteUrl' => '1'))), 'includeCSS.' => array('swiper' => 'EXT:swiper/Resources/Private/Scss/style.scss', 'swiper.' => array('outputfile' => 'EXT:swiper/Resources/Public/css/style.css', 'outputStyle' => 'expanded', 'sourceMap' => 'true', 'media' => 'screen'), 'bootstrap' => 'EXT:bootstrap_content_items/Resources/Private/Scss/bootstrap.scss', 'bootstrap.' => array('outputfile' => 'EXT:bootstrap_content_items/Resources/Public/css/bootstrap.css', 'outputStyle' => 'expanded', 'sourceMap' => 'true', 'media' => 'screen'), 'fontawesome' => 'EXT:font_awesome/Resources/Private/Scss/fontawesome.scss', 'fontawesome.' => array('outputfile' => 'EXT:font_awesome/Resources/Public/css/fontawesome.css', 'outputStyle' => 'expanded', 'sourceMap' => 'true', 'media' => 'screen'), 'screen' => 'EXT:theme_sommerfern/Resources/Public/css/screen.css', 'screen.' => array('media' => 'screen'), 'print' => 'EXT:theme_sommerfern/Resources/Public/css/print.css', 'print.' => array('media' => 'print')), 'includeJSFooterlibs.' => array('lightbox' => 'EXT:fs_lightbox/Resources/Public/javascript/vendor/fslightbox-basic-3.3.1/fslightbox.js', 'jquery' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/jquery/1.11.3.jquery.min.js', 'jquery.' => array('forceOnTop' => '1'), 'matchheight' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/jquery-match-height/jquery.matchHeight-min.js', 'slimbox2' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/slimbox-2.05/js/slimbox2.js', 'jquery-ui' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/jquery-ui-1.11.4.custom/jquery-ui.min.js', 'jquery-cookie' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/jquery-cookie/jquery.cookie.js', 'bootstrap-transition' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/bootstrap/js/transition.js', 'bootstrap-dropdown' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/bootstrap/js/dropdown.js', 'bootstrap-tab' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/bootstrap/js/tab.js', 'bootstrap-modal' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/bootstrap/js/modal.js', 'bootstrap-collapse' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/bootstrap/js/collapse.js', 'bootstrap-tooltip' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/bootstrap/js/tooltip.js'), 'USER', '9998.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'BootstrapContentItems', 'vendorName' => 'Aktivweb', 'pluginName' => 'ModalShow', 'view.' => array('templateRootPaths.' => array('EXT:bootstrap_content_items/Resources/Private/Templates/', 'EXT:theme_drhoellein/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:bootstrap_content_items/Resources/Private/Partials/', 'EXT:theme_drhoellein/Resources/Private/Templates/Partials/'), 'layoutRootPath.' => array('EXT:bootstrap_content_items/Resources/Private/Layouts/', 'EXT:theme_drhoellein/Resources/Private/Templates/Layouts/')), 'settings.' => array('version' => '5')), 'typeNum' => '0', 'config.' => array('compressCss' => '0', 'concatenateCss' => '0', 'compressJs' => '0', 'concatenateJs' => '0', 'no_cache' => '0', 'contentObjectExceptionHandler' => '0'), 'shortcutIcon' => 'EXT:theme_sommerfern/Resources/Public/images/favicon.png', 'headerData.' => array('TEXT', '20.' => array('value' => ' <script type="text/plain" data-ic-e="if"> (function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,\'script\',\'https://www.google-analytics.com/analytics.js\',\'ga\'); ga(\'create\', \'UA-9787204-3\', \'auto\'); ga(\'set\', \'anonymizeIp\', true); ga(\'send\', \'pageview\'); </script>'), 'TEXT', '9.' => array('value' => '<link href="/media/consent/iconsent.css" rel="stylesheet" type="text/css"/><script src="/media/consent/postscribe.js" type="text/javascript"></script><script> var disableStr = \'ga-disable-\' + \'UA-9787204-3\'; if (document.cookie.indexOf(disableStr + \'=true\') > -1) { window[disableStr] = true; } function gaOptout() { document.cookie = disableStr + \'=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/\'; window[disableStr] = true; } </script>')), 'meta.' => array('viewport' => 'width=device-width, initial-scale=1.0, user-scalable=no', 'author' => 'Sommer Fern GmbH', 'copyright' => 'Sommer Fern GmbH', 'revisit-after' => '7 days', 'format-detection' => 'telephone=no'), 'includeJS.' => array('html5shiv' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/html5shiv/html5shiv.min.js', 'html5shiv.' => array('allWrap' => '<!--[if lt IE 9]>|<![endif]-->', 'excludeFromConcatenation' => '1'), 'respond' => 'EXT:theme_sommerfern/Resources/Public/javascript/libs/respond/respond.min.js', 'respond.' => array('allWrap' => '<!--[if lt IE 9]>|<![endif]-->', 'excludeFromConcatenation' => '1')), 'FLUIDTEMPLATE', '10.' => array('file.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield: -1, backend_layout_next_level, slide', 'override.' => array('data' => 'TSFE:page|backend_layout')), 'pagets__sommerfern01' => 'TEXT', 'pagets__sommerfern01.' => array('value' => 'EXT:theme_sommerfern/Resources/Private/Templates/Default.html'), 'pagets__sommerfern02' => 'TEXT', 'pagets__sommerfern02.' => array('value' => 'EXT:theme_sommerfern/Resources/Private/Templates/Sidebar.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:theme_sommerfern/Resources/Private/Templates/Default.html'))), 'layoutRootPath' => 'EXT:theme_sommerfern/Resources/Private/Layouts/', 'partialRootPath' => 'EXT:theme_sommerfern/Resources/Private/Partials/', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '3', 'as' => 'menuMain'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value' => '247'), 'includeNotInMenu' => '1', 'as' => 'menuService1'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '21.' => array('special' => 'directory', 'special.' => array('value' => '47'), 'includeNotInMenu' => '1', 'as' => 'menuService2'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'list', 'special.' => array('value' => '277,262,269,261'), 'excludeUidList' => '277', 'levels' => '1', 'as' => 'menuAside'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'excludeUidList' => '{$theme.pageUids.home}', 'as' => 'menuBreadcrumb')), 'settings.' => array('title' => 'Ecuador Discover', 'slogan' => 'ein Produkt von Sommer Fernreisen - seit 1987', 'phone.' => array('number' => '08533-919161', 'calling' => 'Mo-Fr von 9-17 Uhr'), 'youtube' => 'http://www.youtube.com/channel/UC_7g56CVTgp8Aw6aRD3CoyA/videos', 'facebook' => 'https://www.facebook.com/pages/SFR-SOMMER-FERNREISEN/118274238195103', 'twitter' => 'https://twitter.com/S_Fernreisen', 'links.' => array('anfrage' => '277', 'suche' => '248'))), 'footerData.' => array('TEXT', '100.' => array('value' => '<script src="/media/consent/ecuador-discover/iconsent.js" type="text/javascript"></script>'))))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 224
     * in the content that is processed later-on.
     */
    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 /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 195
    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 /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 135
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push('Page generation PAGE object');

            $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 /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 42
     * Adds the content length
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if ($GLOBALS['TSFE'] instanceof TypoScriptFrontendController) {
            $context = $GLOBALS['TSFE']->getContext();
            if (
                (!isset($GLOBALS['TSFE']->config['config']['enableContentLengthHeader']) || $GLOBALS['TSFE']->config['config']['enableContentLengthHeader'])
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 93
                $controller->getPageAccessFailureReasons(PageAccessFailureReasons::INVALID_EXTERNAL_URL)
            );
        }

        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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/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(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 44
        // 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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/ContentSecurityPolicyHeaders.php line 51
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        // return early in case CSP shall not be used
        if (!$this->features->isFeatureEnabled('security.frontend.enforceContentSecurityPolicy')) {
            return $handler->handle($request);
        }
        // make sure, the nonce value is set before processing the remaining middlewares
        $request = $request->withAttribute('nonce', $this->requestId->nonce);
        $response = $handler->handle($request);
at TYPO3\CMS\Frontend\Middleware\ContentSecurityPolicyHeaders->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 58

        // Set new request which now has the frontend.typoscript attribute
        $GLOBALS['TYPO3_REQUEST'] = $request;

        $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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 112
        // 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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 113
            }
        }

        $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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/PreviewSimulator.php line 90
                $this->context->setAspect('visibility', $newAspect);
            }
        }

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

    protected function checkIfRootlineRequiresPreview(int $pageId): bool
    {
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 102
        // 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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 63

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/ContentSecurityPolicyReporter.php line 42
            // @todo create report, then call persist, then dispatch new event
            $this->persistCspReport($scope, $request);
            return new NullResponse();
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\ContentSecurityPolicyReporter->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 90
                $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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 68
        );

        // If the matched redirect is found, resolve it, and check further
        if (!is_array($matchedRedirect)) {
            return $handler->handle($request);
        }
        $url = $this->redirectService->getTargetUrl($matchedRedirect, $request);
        if ($url === null) {
            return $handler->handle($request);
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 72
        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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 79
                $request = $request->withAttribute('noCache', true);
            }
        }

        $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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Middleware/RequestTokenMiddleware.php line 71
            $this->securityAspect->setReceivedRequestToken(false);
            $this->logger->debug('Could not resolve request token', ['exception' => $exception]);
        }

        $response = $handler->handle($request);
        return $this->enrichResponseWithCookie($request, $response);
    }

    protected function resolveNoncePool(ServerRequestInterface $request): NoncePool
at TYPO3\CMS\Core\Middleware\RequestTokenMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 51
        ) {
            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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 53
        $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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 48
    {
        $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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 41
     */
    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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 46
        $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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 162

                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/html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:128$41->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 70
     * Invoke the middleware stack
     */
    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 /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/AbstractApplication.php line 80

    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 /html/typo3/typo3_src-12.4.14/typo3/sysext/frontend/Classes/Http/Application.php line 59
        // 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 /html/typo3/typo3_src-12.4.14/typo3/sysext/core/Classes/Http/AbstractApplication.php line 92
     * Set up the application and shut it down afterwards
     */
    final public function run()
    {
        $response = $this->handle(ServerRequestFactory::fromGlobals());
        $this->sendResponse($response);
    }
}
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /html/typo3/typo3_src-12.4.14/index.php line 20
// Set up the application for the frontend
call_user_func(static function () {
    $classLoader = require __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 /html/typo3/typo3_src-12.4.14/index.php line 21
call_user_func(static function () {
    $classLoader = require __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();
});