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) #1297933823 TYPO3\CMS\Extbase\Property\Exception\TargetNotFoundException

Object of type Gmmag\Digitalarchiv\Domain\Model\Entry with identity "911" not found.

in /html/typo3/vendor/typo3/cms-extbase/Classes/Property/TypeConverter/PersistentObjectConverter.php line 235
            throw new InvalidSourceException('The identity property "' . $identity . '" is no UID.', 1297931020);
        }

        if ($object === null) {
            throw new TargetNotFoundException(sprintf('Object of type %s with identity "%s" not found.', $targetType, print_r($identity, true)), 1297933823);
        }

        return $object;
    }
at TYPO3\CMS\Extbase\Property\TypeConverter\PersistentObjectConverter->fetchObjectFromPersistence('911', 'Gmmag\\Digitalarchiv\\Domain\\Model\\Entry')
in /html/typo3/vendor/typo3/cms-extbase/Classes/Property/TypeConverter/PersistentObjectConverter.php line 173
        } elseif (is_string($source) || is_int($source)) {
            if (empty($source)) {
                return null;
            }
            $object = $this->fetchObjectFromPersistence($source, $targetType);
        } else {
            // todo: this case is impossible as this converter is never called with a source that is not an integer, a string or an array
            throw new \InvalidArgumentException('Only integers, strings and arrays are accepted.', 1305630314);
        }
at TYPO3\CMS\Extbase\Property\TypeConverter\PersistentObjectConverter->convertFrom('911', 'Gmmag\\Digitalarchiv\\Domain\\Model\\Entry', array(), object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration))
in /html/typo3/vendor/typo3/cms-extbase/Classes/Property/PropertyMapper.php line 144
            if (!($targetPropertyValue instanceof Error)) {
                $convertedChildProperties[$targetPropertyName] = $targetPropertyValue;
            }
        }
        $result = $typeConverter->convertFrom($source, $targetType, $convertedChildProperties, $configuration);

        if ($result instanceof Error) {
            $this->messages->forProperty(implode('.', $currentPropertyPath))->addError($result);
        }
at TYPO3\CMS\Extbase\Property\PropertyMapper->doMapping('911', 'Gmmag\\Digitalarchiv\\Domain\\Model\\Entry', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration), array())
in /html/typo3/vendor/typo3/cms-extbase/Classes/Property/PropertyMapper.php line 57
    {
        $configuration ??= $this->configurationBuilder->build();
        $currentPropertyPath = [];
        try {
            $result = $this->doMapping($source, $targetType, $configuration, $currentPropertyPath);
            if ($result instanceof Error) {
                return null;
            }

at TYPO3\CMS\Extbase\Property\PropertyMapper->convert('911', 'Gmmag\\Digitalarchiv\\Domain\\Model\\Entry', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration))
in /html/typo3/vendor/typo3/cms-extbase/Classes/Mvc/Controller/ActionController.php line 840
        }
        $this->propertyMapper->resetMessages();
        try {
            $argument->setValue(
                $this->propertyMapper->convert(
                    $rawValue,
                    $dataType,
                    $argument->getPropertyMappingConfiguration()
                )
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->setArgumentValue(object(TYPO3\CMS\Extbase\Mvc\Controller\Argument), '911')
in /html/typo3/vendor/typo3/cms-extbase/Classes/Mvc/Controller/ActionController.php line 816
        /** @var Argument $argument */
        foreach ($this->arguments as $argument) {
            $argumentName = $argument->getName();
            if ($this->request->hasArgument($argumentName)) {
                $this->setArgumentValue($argument, $this->request->getArgument($argumentName));
            } elseif ($argument->isRequired()) {
                throw new RequiredArgumentMissingException('Required argument "' . $argumentName . '" is not set for ' . $this->request->getControllerObjectName() . '->' . $this->request->getControllerActionName() . '.', 1298012500);
            }
        }
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->mapRequestArgumentsToControllerArguments()
in /html/typo3/vendor/typo3/cms-extbase/Classes/Mvc/Controller/ActionController.php line 391
        $callable = [$this, $actionInitializationMethodName];
        if (is_callable($callable)) {
            $callable();
        }
        $this->mapRequestArgumentsToControllerArguments();
        $this->view = $this->resolveView();
        if ($this->view !== null && method_exists($this, 'initializeView')) {
            $this->initializeView($this->view);
        }
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Request))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-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/vendor/typo3/cms-extbase/Classes/ContentObject/ExtbasePluginContentObject.php line 45
            // Come here only if we are not called from $TSFE->processNonCacheableContentPartsAndSubstituteContentMarkers()!
            $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
        }
        $request = $extbaseBootstrap->initialize($conf, $this->request);
        $content = $extbaseBootstrap->handleFrontendRequest($request);
        // Rendering is deferred, as the action should not be cached, we pump this now to TSFE to be executed later-on
        if ($this->cObj->doConvertToUserIntObject) {
            $this->cObj->doConvertToUserIntObject = false;
            // @todo: this should be removed in the future in TSFE to allow more "uncacheables" than USER_INTs
at TYPO3\CMS\Extbase\ContentObject\ExtbasePluginContentObject->render(array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivview'))
in /html/typo3/vendor/typo3/cms-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\Extbase\ContentObject\ExtbasePluginContentObject), array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivview'))
in /html/typo3/vendor/typo3/cms-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('EXTBASEPLUGIN', array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivview'), 'tt_content.list.20.digitalarchiv_digitalarchivview')
in /html/typo3/vendor/typo3/cms-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('solr_pi_results' => 'EXTBASEPLUGIN', 'solr_pi_results.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'EXTBASEPLUGIN', 'solr_pi_search.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'EXTBASEPLUGIN', 'solr_pi_frequentlysearched.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'EXTBASEPLUGIN', 'solr_pi_suggest.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'gmmbase_news' => 'EXTBASEPLUGIN', 'gmmbase_news.' => array('extensionName' => 'GmmBase', 'pluginName' => 'News'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'digitalarchiv_digitalarchivview' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivview.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivview'), 'digitalarchiv_personlist' => 'EXTBASEPLUGIN', 'digitalarchiv_personlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonList'), 'digitalarchiv_personshow' => 'EXTBASEPLUGIN', 'digitalarchiv_personshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonShow'), 'digitalarchiv_themelist' => 'EXTBASEPLUGIN', 'digitalarchiv_themelist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeList'), 'digitalarchiv_themeshow' => 'EXTBASEPLUGIN', 'digitalarchiv_themeshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeShow'), 'digitalarchiv_eventlist' => 'EXTBASEPLUGIN', 'digitalarchiv_eventlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventList'), 'digitalarchiv_eventshow' => 'EXTBASEPLUGIN', 'digitalarchiv_eventshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventShow'), 'digitalarchiv_medialist' => 'EXTBASEPLUGIN', 'digitalarchiv_medialist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaList'), 'digitalarchiv_mediashow' => 'EXTBASEPLUGIN', 'digitalarchiv_mediashow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaShow'), 'digitalarchiv_locationlist' => 'EXTBASEPLUGIN', 'digitalarchiv_locationlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationList'), 'digitalarchiv_locationshow' => 'EXTBASEPLUGIN', 'digitalarchiv_locationshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationShow'), 'digitalarchiv_digitalarchivmilestones' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivmilestones.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivmilestones'), 'digitalarchiv_json' => 'EXTBASEPLUGIN', 'digitalarchiv_json.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Json')), 'tt_content.list.20.digitalarchiv_digitalarchivview', 'digitalarchiv_digitalarchivview')
in /html/typo3/vendor/typo3/cms-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' => 477, 'pid' => 460, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 37, 'tstamp' => 1544793118, 'crdate' => 1544793118, 'cruser_id' => 3, 'editlock' => 0, 'hidden' => 0, 'sorting' => 1, 'CType' => 'list', 'header' => 'Anzeigen', 'header_position' => '', 'rowDescription' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'frame_class' => 'default', 'deleted' => 0, 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 51, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => 'digitalarchiv_digitalarchivview', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.title"> <value index="vDEF"></value> </field> <field index="settings.previewImages"> <value index="vDEF"></value> </field> <field index="settings.pageIdList"> <value index="vDEF"></value> </field> <field index="settings.pageIdShow"> <value index="vDEF">460</value> </field> <field index="persistence.storagePid"> <value index="vDEF">449</value> </field> <field index="persistence.recursive"> <value index="vDEF">2</value> </field> <field index="switchableControllerActions"> <value index="vDEF">Entry-&gt;show</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:28:{s:5:"CType";N;s:6:"colPos";N;s:6:"header";N;s:13:"header_layout";N;s:15:"header_position";N;s:4:"date";N;s:11:"header_link";N;s:9:"subheader";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:5:"pages";N;s:9:"recursive";N;s:6:"layout";N;s:11:"frame_class";N;s:18:"space_before_class";N;s:17:"space_after_class";N;s:12:"sectionIndex";N;s:9:"linkToTop";N;s:16:"sys_language_uid";N;s:6:"hidden";N;s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:25:"tx_gridelements_container";N;s:23:"tx_gridelements_columns";N;}', 'l10n_source' => 0, 'selected_categories' => '', 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 0, 'l10n_state' => null, 'categories' => 0, 'tx_news_related_news' => 0, 'filelink_sorting_direction' => '', 'entry' => 0, 'tx_container_parent' => 478, 'tx_wsslider_items' => 0, 'tx_wsslider_renderer' => null, 'tx_wsslider_layout' => null), 'typoscriptObjectPath' => 'tt_content.list.20.digitalarchiv_digitalarchivview', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/var/cache/code/fluid_template/Default_action_List_234a77e55a753c53913d2756eb6a5c1fddaf8f1e.php line 80
'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_234a77e55a753c53913d2756eb6a5c1fddaf8f1e->{closure}()
in /html/typo3/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/var/cache/code/fluid_template/Default_action_List_234a77e55a753c53913d2756eb6a5c1fddaf8f1e.php line 88
return $output4;
},
];

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

$output0 .= '

at Default_action_List_234a77e55a753c53913d2756eb6a5c1fddaf8f1e->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/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/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/var/cache/code/fluid_template/layout_Default_html_72c10fdba6cc8ad4a44b7923f55b7d9c4631b8c6.php line 294
'contentAs' => NULL,
'debug' => true,
];

$output4 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments31, $renderChildrenClosure32, $renderingContext);

$output4 .= '
                ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_72c10fdba6cc8ad4a44b7923f55b7d9c4631b8c6->{closure}()
in /html/typo3/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__then'])) {
                return $arguments['__then']();
            }
            return '';
        }
        if (!empty($arguments['__elseIf'])) {
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__then' => object(Closure), '__else' => object(Closure)), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/var/cache/code/fluid_template/layout_Default_html_72c10fdba6cc8ad4a44b7923f55b7d9c4631b8c6.php line 767
return $output49;
},
];

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

$output0 .= '

at layout_Default_html_72c10fdba6cc8ad4a44b7923f55b7d9c4631b8c6->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/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/vendor/typo3/cms-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/vendor/typo3/cms-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:archive_theme/Resources/Private/Templates/ContentElements/', 'EXT:gmm_base/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:archive_theme/Resources/Private/Partials/ContentElements/', 'EXT:gmm_base/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:archive_theme/Resources/Private/Layouts/ContentElements/', 'EXT:gmm_base/Resources/Private/Layout/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), '20.' => array('solr_pi_results' => 'EXTBASEPLUGIN', 'solr_pi_results.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'EXTBASEPLUGIN', 'solr_pi_search.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'EXTBASEPLUGIN', 'solr_pi_frequentlysearched.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'EXTBASEPLUGIN', 'solr_pi_suggest.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'gmmbase_news' => 'EXTBASEPLUGIN', 'gmmbase_news.' => array('extensionName' => 'GmmBase', 'pluginName' => 'News'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'digitalarchiv_digitalarchivview' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivview.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivview'), 'digitalarchiv_personlist' => 'EXTBASEPLUGIN', 'digitalarchiv_personlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonList'), 'digitalarchiv_personshow' => 'EXTBASEPLUGIN', 'digitalarchiv_personshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonShow'), 'digitalarchiv_themelist' => 'EXTBASEPLUGIN', 'digitalarchiv_themelist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeList'), 'digitalarchiv_themeshow' => 'EXTBASEPLUGIN', 'digitalarchiv_themeshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeShow'), 'digitalarchiv_eventlist' => 'EXTBASEPLUGIN', 'digitalarchiv_eventlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventList'), 'digitalarchiv_eventshow' => 'EXTBASEPLUGIN', 'digitalarchiv_eventshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventShow'), 'digitalarchiv_medialist' => 'EXTBASEPLUGIN', 'digitalarchiv_medialist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaList'), 'digitalarchiv_mediashow' => 'EXTBASEPLUGIN', 'digitalarchiv_mediashow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaShow'), 'digitalarchiv_locationlist' => 'EXTBASEPLUGIN', 'digitalarchiv_locationlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationList'), 'digitalarchiv_locationshow' => 'EXTBASEPLUGIN', 'digitalarchiv_locationshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationShow'), 'digitalarchiv_digitalarchivmilestones' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivmilestones.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivmilestones'), 'digitalarchiv_json' => 'EXTBASEPLUGIN', 'digitalarchiv_json.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Json'))))
in /html/typo3/vendor/typo3/cms-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:archive_theme/Resources/Private/Templates/ContentElements/', 'EXT:gmm_base/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:archive_theme/Resources/Private/Partials/ContentElements/', 'EXT:gmm_base/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:archive_theme/Resources/Private/Layouts/ContentElements/', 'EXT:gmm_base/Resources/Private/Layout/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), '20.' => array('solr_pi_results' => 'EXTBASEPLUGIN', 'solr_pi_results.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'EXTBASEPLUGIN', 'solr_pi_search.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'EXTBASEPLUGIN', 'solr_pi_frequentlysearched.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'EXTBASEPLUGIN', 'solr_pi_suggest.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'gmmbase_news' => 'EXTBASEPLUGIN', 'gmmbase_news.' => array('extensionName' => 'GmmBase', 'pluginName' => 'News'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'digitalarchiv_digitalarchivview' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivview.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivview'), 'digitalarchiv_personlist' => 'EXTBASEPLUGIN', 'digitalarchiv_personlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonList'), 'digitalarchiv_personshow' => 'EXTBASEPLUGIN', 'digitalarchiv_personshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonShow'), 'digitalarchiv_themelist' => 'EXTBASEPLUGIN', 'digitalarchiv_themelist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeList'), 'digitalarchiv_themeshow' => 'EXTBASEPLUGIN', 'digitalarchiv_themeshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeShow'), 'digitalarchiv_eventlist' => 'EXTBASEPLUGIN', 'digitalarchiv_eventlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventList'), 'digitalarchiv_eventshow' => 'EXTBASEPLUGIN', 'digitalarchiv_eventshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventShow'), 'digitalarchiv_medialist' => 'EXTBASEPLUGIN', 'digitalarchiv_medialist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaList'), 'digitalarchiv_mediashow' => 'EXTBASEPLUGIN', 'digitalarchiv_mediashow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaShow'), 'digitalarchiv_locationlist' => 'EXTBASEPLUGIN', 'digitalarchiv_locationlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationList'), 'digitalarchiv_locationshow' => 'EXTBASEPLUGIN', 'digitalarchiv_locationshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationShow'), 'digitalarchiv_digitalarchivmilestones' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivmilestones.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivmilestones'), 'digitalarchiv_json' => 'EXTBASEPLUGIN', 'digitalarchiv_json.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Json'))))
in /html/typo3/vendor/typo3/cms-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('solr_pi_results' => 'EXTBASEPLUGIN', 'solr_pi_results.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'EXTBASEPLUGIN', 'solr_pi_search.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'EXTBASEPLUGIN', 'solr_pi_frequentlysearched.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'EXTBASEPLUGIN', 'solr_pi_suggest.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'gmmbase_news' => 'EXTBASEPLUGIN', 'gmmbase_news.' => array('extensionName' => 'GmmBase', 'pluginName' => 'News'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'digitalarchiv_digitalarchivview' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivview.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivview'), 'digitalarchiv_personlist' => 'EXTBASEPLUGIN', 'digitalarchiv_personlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonList'), 'digitalarchiv_personshow' => 'EXTBASEPLUGIN', 'digitalarchiv_personshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonShow'), 'digitalarchiv_themelist' => 'EXTBASEPLUGIN', 'digitalarchiv_themelist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeList'), 'digitalarchiv_themeshow' => 'EXTBASEPLUGIN', 'digitalarchiv_themeshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeShow'), 'digitalarchiv_eventlist' => 'EXTBASEPLUGIN', 'digitalarchiv_eventlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventList'), 'digitalarchiv_eventshow' => 'EXTBASEPLUGIN', 'digitalarchiv_eventshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventShow'), 'digitalarchiv_medialist' => 'EXTBASEPLUGIN', 'digitalarchiv_medialist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaList'), 'digitalarchiv_mediashow' => 'EXTBASEPLUGIN', 'digitalarchiv_mediashow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaShow'), 'digitalarchiv_locationlist' => 'EXTBASEPLUGIN', 'digitalarchiv_locationlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationList'), 'digitalarchiv_locationshow' => 'EXTBASEPLUGIN', 'digitalarchiv_locationshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationShow'), 'digitalarchiv_digitalarchivmilestones' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivmilestones.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivmilestones'), 'digitalarchiv_json' => 'EXTBASEPLUGIN', 'digitalarchiv_json.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Json'))), 'list')
in /html/typo3/vendor/typo3/cms-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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('solr_pi_results' => 'EXTBASEPLUGIN', 'solr_pi_results.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'EXTBASEPLUGIN', 'solr_pi_search.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'EXTBASEPLUGIN', 'solr_pi_frequentlysearched.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'EXTBASEPLUGIN', 'solr_pi_suggest.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'gmmbase_news' => 'EXTBASEPLUGIN', 'gmmbase_news.' => array('extensionName' => 'GmmBase', 'pluginName' => 'News'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'digitalarchiv_digitalarchivview' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivview.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivview'), 'digitalarchiv_personlist' => 'EXTBASEPLUGIN', 'digitalarchiv_personlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonList'), 'digitalarchiv_personshow' => 'EXTBASEPLUGIN', 'digitalarchiv_personshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonShow'), 'digitalarchiv_themelist' => 'EXTBASEPLUGIN', 'digitalarchiv_themelist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeList'), 'digitalarchiv_themeshow' => 'EXTBASEPLUGIN', 'digitalarchiv_themeshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeShow'), 'digitalarchiv_eventlist' => 'EXTBASEPLUGIN', 'digitalarchiv_eventlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventList'), 'digitalarchiv_eventshow' => 'EXTBASEPLUGIN', 'digitalarchiv_eventshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventShow'), 'digitalarchiv_medialist' => 'EXTBASEPLUGIN', 'digitalarchiv_medialist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaList'), 'digitalarchiv_mediashow' => 'EXTBASEPLUGIN', 'digitalarchiv_mediashow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaShow'), 'digitalarchiv_locationlist' => 'EXTBASEPLUGIN', 'digitalarchiv_locationlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationList'), 'digitalarchiv_locationshow' => 'EXTBASEPLUGIN', 'digitalarchiv_locationshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationShow'), 'digitalarchiv_digitalarchivmilestones' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivmilestones.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivmilestones'), 'digitalarchiv_json' => 'EXTBASEPLUGIN', 'digitalarchiv_json.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Json'))), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'image')), 'gallery', '20.' => array('maxGalleryWidth' => '1920', 'maxGalleryWidthInText' => '300', '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')))))), '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')))))), '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')))))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'Form', 'pluginName' => 'Formframework')), 'mindshapecookieconsent_consent' => '< lib.contentElement', 'mindshapecookieconsent_consent.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consent')), 'mindshapecookieconsent_consentmodal' => '< lib.contentElement', 'mindshapecookieconsent_consentmodal.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consentmodal')), 'mindshapecookieconsent_cookielist' => '< lib.contentElement', 'mindshapecookieconsent_cookielist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Cookielist')), 'news_pi1' => '< lib.contentElement', 'news_pi1.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'Pi1')), 'news_newsliststicky' => '< lib.contentElement', 'news_newsliststicky.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsListSticky')), 'news_newsdetail' => '< lib.contentElement', 'news_newsdetail.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsDetail')), 'news_newsselectedlist' => '< lib.contentElement', 'news_newsselectedlist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsSelectedList')), 'news_newsdatemenu' => '< lib.contentElement', 'news_newsdatemenu.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsDateMenu')), 'news_newssearchform' => '< lib.contentElement', 'news_newssearchform.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsSearchForm')), 'news_newssearchresult' => '< lib.contentElement', 'news_newssearchresult.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsSearchResult')), 'news_categorylist' => '< lib.contentElement', 'news_categorylist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'CategoryList')), 'news_taglist' => '< lib.contentElement', 'news_taglist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'TagList')), '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')), 'section' => '< lib.contentElement', 'section.' => array('templateName' => 'section', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '51.' => array('colPos' => '51', 'as' => 'children_51'))), 'container_1_col' => '< lib.contentElement', 'container_1_col.' => array('templateName' => '1-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '101.' => array('colPos' => '101', 'as' => 'children_101'))), 'container_2_col' => '< lib.contentElement', 'container_2_col.' => array('templateName' => '2-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '201.' => array('colPos' => '101', 'as' => 'children_101'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '202.' => array('colPos' => '102', 'as' => 'children_102'))), 'container_3_col' => '< lib.contentElement', 'container_3_col.' => array('templateName' => '3-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '301.' => array('colPos' => '101', 'as' => 'children_101'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '302.' => array('colPos' => '102', 'as' => 'children_102'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '303.' => array('colPos' => '103', 'as' => 'children_103'))), 'container_4_col' => '< lib.contentElement', 'container_4_col.' => array('templateName' => '4-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '401.' => array('colPos' => '101', 'as' => 'children_101'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '402.' => array('colPos' => '102', 'as' => 'children_102'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '403.' => array('colPos' => '103', 'as' => 'children_103'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '404.' => array('colPos' => '104', 'as' => 'children_104'))), 'accodion' => '< lib.contentElement', 'accodion.' => array('templateName' => 'Accordion', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '1011.' => array('colPos' => '1011', 'as' => 'children_1011'))), 'tabs' => '< lib.contentElement', 'tabs.' => array('templateName' => 'Tabs', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '1021.' => array('colPos' => '1021', 'as' => 'children_1021'))), 'gmm_base_backgroundimage' => '< lib.contentElement', 'gmm_base_backgroundimage.' => array('templateName' => 'BackgroundImage', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image', 'table' => 'tt_content'), 'as' => 'images'))), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/GridElements/'), 'partialRootPaths.' => array('EXT:gmm_base/Resources/Private/Partials/Extensions/GridElements/'), 'dataProcessing.' => array('10.' => array('default.' => array('options.' => array('resolveFlexFormData' => '1', 'resolveChildFlexFormData' => '0')))), 'templateName' => 'Generic', 'variables.' => array('content' => '< tt_content.gridelements_view'), '20.' => array('10.' => array('setup.' => array('1.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:archive_theme/Resources/Private/Templates/Extensions/GridElements/OneColumn.html')))))), 'gridelements_view' => '< lib.contentElement', 'gridelements_view.' => array('templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/GridElements/'), 'partialRootPaths.' => array('EXT:gmm_base/Resources/Private/Partials/Extensions/GridElements/'), 'dataProcessing.' => array('10.' => array('default.' => array('options.' => array('resolveFlexFormData' => '1', 'resolveChildFlexFormData' => '0')))), 'templateName' => 'Generic', 'variables.' => array('content' => '< tt_content.gridelements_view'), '20.' => array('10.' => array('setup.' => array('1.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:archive_theme/Resources/Private/Templates/Extensions/GridElements/OneColumn.html')))))), 'ws_slider' => '< lib.contentElement', 'ws_slider.' => array('templateName' => 'Slider', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:ws_slider/Resources/Private/Templates/', 'EXT:ws_slider/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:ws_slider/Resources/Private/Partials/', 'EXT:ws_slider/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:ws_slider/Resources/Private/Layouts/', 'EXT:ws_slider/Resources/Private/Layouts/'), 'settings.' => array('slider.' => array('defaultRenderer' => 'owl', 'renderer.' => array('slick.' => array('accessibility' => 'true', 'adaptiveHeight' => 'false', 'autoplay' => 'false', 'autoplaySpeed' => '3000', 'arrows' => 'true', 'prevArrow' => '<button type="button" class="slick-prev">Previous</button>', 'nextArrow' => '<button type="button" class="slick-next">Next</button>', 'centerMode' => 'false', 'centerPadding' => '50px', 'cssEase' => 'ease', 'dots' => 'false', 'dotsClass' => 'slick-dots', 'draggable' => 'true', 'fade' => 'false', 'focusOnSelect' => 'false', 'easing' => 'linear', 'edgeFriction' => '0.15', 'infinite' => 'true', 'initialSlide' => 'true', 'lazyLoad' => 'ondemand', 'mobileFirst' => 'false', 'pauseOnFocus' => 'true', 'pauseOnHover' => 'true', 'pauseOnDotsHover' => 'false', 'respondTo' => 'window', 'rows' => '1', 'slidesPerRow' => '1', 'slidesToShow' => '1', 'slidesToScroll' => '1', 'speed' => '300', 'swipe' => 'true', 'swipeToSlide' => 'false', 'touchMove' => 'true', 'touchThreshold' => '5', 'useCSS' => 'true', 'useTransform' => 'true', 'variableWidth' => 'false', 'vertical' => 'false', 'verticalSwiping' => 'false', 'rtl' => 'false', 'waitForAnimate' => 'true', 'responsive.' => array('_removeArrayKeys' => 'true', '0.' => array('breakpoint' => '0', 'settings.' => array('slidesToShow' => '1')), '576.' => array('breakpoint' => '576', 'settings.' => array('slidesToShow' => '2')), '768.' => array('breakpoint' => '768', 'settings.' => array('slidesToShow' => '4')), '992.' => array('breakpoint' => '992', 'settings.' => array('slidesToShow' => '4')), '1200.' => array('breakpoint' => '1200', 'settings.' => array('slidesToShow' => '4')), '1400.' => array('breakpoint' => '1400', 'settings.' => array('slidesToShow' => '4')))), 'flexslider.' => array('selector' => '.slides > li', 'animation' => 'fade', 'easing' => 'swing', 'direction' => 'horizontal', 'reverse' => 'false', 'animationLoop' => 'true', 'smoothHeight' => 'false', 'startAt' => '0', 'slideshow' => 'true', 'slideshowSpeed' => '7000', 'animationSpeed' => '600', 'initDelay' => '0', 'randomize' => 'false', 'fadeFirstSlide' => 'true', 'pauseOnAction' => 'true', 'pauseOnHover' => 'false', 'pauseInvisible' => 'true', 'useCSS' => 'true', 'touch' => 'true', 'video' => 'false', 'controlNav' => 'true', 'directionNav' => 'true', 'keyboard' => 'true', 'multipleKeyboard' => 'false', 'mousewheel' => 'false', 'pausePlay' => 'false', 'controlsContainer' => '', 'manualControls' => '', 'customDirectionNav' => '', 'sync' => '', 'asNavFor' => '', 'itemWidth' => '0', 'itemMargin' => '0', 'minItems' => '3', 'maxItems' => '6', 'move' => '0'), 'owl.' => array('items' => '3', 'animateIn' => 'false', 'animateOut' => 'false', 'margin' => '0', 'loop' => 'false', 'center' => 'false', 'dragEndSpeed' => 'false', 'mouseDrag' => 'true', 'touchDrag' => 'true', 'pullDrag' => 'true', 'freeDrag' => 'false', 'stagePadding' => '0', 'merge' => 'false', 'mergeFit' => 'true', 'autoWidth' => 'false', 'startPosition' => '0', 'URLhashListener' => 'false', 'nav' => 'false', 'navSpeed' => 'false', 'rewind' => 'true', 'navElement' => 'div', 'slideBy' => '1', 'slideTransition' => '', 'dots' => 'true', 'dotsEach' => 'false', 'dotsData' => 'false', 'dotsSpeed' => 'false', 'lazyLoad' => 'false', 'lazyLoadEager' => '0', 'autoplay' => 'false', 'autoplayTimeout' => '5000', 'autoplayHoverPause' => 'false', 'autoplaySpeed' => '1000', 'responsiveRefreshRate' => '1000', 'smartSpeed' => '250', 'video' => 'false', 'videoHeight' => 'false', 'videoWidth' => 'false', 'fallbackEasing' => 'swing', 'nestedItemSelector' => 'false', 'itemElement' => 'div', 'stageElement' => 'div', 'navContainer' => 'false', 'dotsContainer' => 'false', 'checkVisible' => 'true', 'navText.' => array('TEXT', '0.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.previous'), 'TEXT', '1.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.next')), 'responsive.' => array('0.' => array('items' => '1'), '576.' => array('items' => '2'), '768.' => array('items' => '3'), '992.' => array('items' => '3'), '1200.' => array('items' => '3'), '1400.' => array('items' => '3'))), 'bootstrap.' => array('selector' => '.slides > li', 'animation' => 'fade', 'easing' => 'swing', 'direction' => 'horizontal', 'reverse' => 'false', 'animationLoop' => 'true', 'smoothHeight' => 'false', 'startAt' => '0', 'slideshow' => 'true', 'slideshowSpeed' => '7000', 'animationSpeed' => '600', 'initDelay' => '0', 'randomize' => 'false', 'fadeFirstSlide' => 'true', 'pauseOnAction' => 'true', 'pauseOnHover' => 'false', 'pauseInvisible' => 'true', 'useCSS' => 'true', 'touch' => 'true', 'video' => 'false', 'controlNav' => 'true', 'directionNav' => 'true', 'keyboard' => 'true', 'multipleKeyboard' => 'false', 'mousewheel' => 'false', 'pausePlay' => 'false', 'controlsContainer' => '', 'manualControls' => '', 'customDirectionNav' => '', 'sync' => '', 'asNavFor' => '', 'itemWidth' => '0', 'itemMargin' => '0', 'minItems' => '3', 'maxItems' => '6', 'move' => '0'), 'tinyslider.' => array('mode' => 'carousel', 'axis' => 'horizontal', 'items' => '1', 'gutter' => '0', 'edgePadding' => '0', 'fixedWidth' => 'false', 'autoWidth' => 'false', 'viewportMax' => 'false', 'slideBy' => '1', 'center' => 'false', 'controls' => 'true', 'controlsPosition' => 'top', 'controlsText.' => array('TEXT', '0.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.previous'), 'TEXT', '1.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.next')), 'controlsContainer' => 'false', 'prevButton' => 'false', 'nextButton' => 'false', 'nav' => 'true', 'navPosition' => 'top', 'navContainer' => 'false', 'navAsThumbnails' => 'false', 'arrowKeys' => 'false', 'speed' => '300', 'autoplay' => 'false', 'autoplayPosition' => 'top', 'autoplayTimeout' => '5000', 'autoplayDirection' => 'forward', 'autoplayHoverPause' => 'false', 'autoplayButtonOutput' => 'false', 'autoplayResetOnVisibility' => 'true', 'animateIn' => 'tns-fadeIn', 'animateOut' => 'tns-fadeOut', 'animateNormal' => 'tns-normal', 'animateDelay' => 'false', 'loop' => 'true', 'rewind' => 'false', 'autoHeight' => 'false', 'lazyload' => 'false', 'lazyloadSelector' => '.tns-lazy-img', 'touch' => 'true', 'mouseDrag' => 'false', 'swipeAngle' => '15', 'preventActionWhenRunning' => 'false', 'preventScrollOnTouch' => 'false', 'nested' => 'false', 'freezable' => 'true', 'disable' => 'false', 'startIndex' => '0', 'onInit' => 'false', 'useLocalStorage' => 'true', 'nonce' => 'false', 'responsive.' => array('0.' => array('items' => '1'), '576.' => array('items' => '2'), '768.' => array('items' => '3'), '992.' => array('items' => '3'), '1200.' => array('items' => '3'), '1400.' => array('items' => '3')), 'autoplayText.' => array('TEXT', '0.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.start'), 'TEXT', '1.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.stop')))))), 'dataProcessing.' => array('WapplerSystems\\WsSlider\\DataProcessing\\SliderProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_wsslider_domain_model_item', 'as' => 'items', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'content_uid=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'foreground_media'), 'as' => 'foregroundMedia')))))))
in /html/typo3/vendor/typo3/cms-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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('solr_pi_results' => 'EXTBASEPLUGIN', 'solr_pi_results.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'EXTBASEPLUGIN', 'solr_pi_search.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'EXTBASEPLUGIN', 'solr_pi_frequentlysearched.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'EXTBASEPLUGIN', 'solr_pi_suggest.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'gmmbase_news' => 'EXTBASEPLUGIN', 'gmmbase_news.' => array('extensionName' => 'GmmBase', 'pluginName' => 'News'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'digitalarchiv_digitalarchivview' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivview.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivview'), 'digitalarchiv_personlist' => 'EXTBASEPLUGIN', 'digitalarchiv_personlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonList'), 'digitalarchiv_personshow' => 'EXTBASEPLUGIN', 'digitalarchiv_personshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonShow'), 'digitalarchiv_themelist' => 'EXTBASEPLUGIN', 'digitalarchiv_themelist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeList'), 'digitalarchiv_themeshow' => 'EXTBASEPLUGIN', 'digitalarchiv_themeshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeShow'), 'digitalarchiv_eventlist' => 'EXTBASEPLUGIN', 'digitalarchiv_eventlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventList'), 'digitalarchiv_eventshow' => 'EXTBASEPLUGIN', 'digitalarchiv_eventshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventShow'), 'digitalarchiv_medialist' => 'EXTBASEPLUGIN', 'digitalarchiv_medialist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaList'), 'digitalarchiv_mediashow' => 'EXTBASEPLUGIN', 'digitalarchiv_mediashow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaShow'), 'digitalarchiv_locationlist' => 'EXTBASEPLUGIN', 'digitalarchiv_locationlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationList'), 'digitalarchiv_locationshow' => 'EXTBASEPLUGIN', 'digitalarchiv_locationshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationShow'), 'digitalarchiv_digitalarchivmilestones' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivmilestones.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivmilestones'), 'digitalarchiv_json' => 'EXTBASEPLUGIN', 'digitalarchiv_json.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Json'))), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'image')), 'gallery', '20.' => array('maxGalleryWidth' => '1920', 'maxGalleryWidthInText' => '300', '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')))))), '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')))))), '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')))))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'Form', 'pluginName' => 'Formframework')), 'mindshapecookieconsent_consent' => '< lib.contentElement', 'mindshapecookieconsent_consent.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consent')), 'mindshapecookieconsent_consentmodal' => '< lib.contentElement', 'mindshapecookieconsent_consentmodal.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consentmodal')), 'mindshapecookieconsent_cookielist' => '< lib.contentElement', 'mindshapecookieconsent_cookielist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Cookielist')), 'news_pi1' => '< lib.contentElement', 'news_pi1.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'Pi1')), 'news_newsliststicky' => '< lib.contentElement', 'news_newsliststicky.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsListSticky')), 'news_newsdetail' => '< lib.contentElement', 'news_newsdetail.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsDetail')), 'news_newsselectedlist' => '< lib.contentElement', 'news_newsselectedlist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsSelectedList')), 'news_newsdatemenu' => '< lib.contentElement', 'news_newsdatemenu.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsDateMenu')), 'news_newssearchform' => '< lib.contentElement', 'news_newssearchform.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsSearchForm')), 'news_newssearchresult' => '< lib.contentElement', 'news_newssearchresult.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsSearchResult')), 'news_categorylist' => '< lib.contentElement', 'news_categorylist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'CategoryList')), 'news_taglist' => '< lib.contentElement', 'news_taglist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'TagList')), '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')), 'section' => '< lib.contentElement', 'section.' => array('templateName' => 'section', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '51.' => array('colPos' => '51', 'as' => 'children_51'))), 'container_1_col' => '< lib.contentElement', 'container_1_col.' => array('templateName' => '1-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '101.' => array('colPos' => '101', 'as' => 'children_101'))), 'container_2_col' => '< lib.contentElement', 'container_2_col.' => array('templateName' => '2-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '201.' => array('colPos' => '101', 'as' => 'children_101'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '202.' => array('colPos' => '102', 'as' => 'children_102'))), 'container_3_col' => '< lib.contentElement', 'container_3_col.' => array('templateName' => '3-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '301.' => array('colPos' => '101', 'as' => 'children_101'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '302.' => array('colPos' => '102', 'as' => 'children_102'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '303.' => array('colPos' => '103', 'as' => 'children_103'))), 'container_4_col' => '< lib.contentElement', 'container_4_col.' => array('templateName' => '4-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '401.' => array('colPos' => '101', 'as' => 'children_101'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '402.' => array('colPos' => '102', 'as' => 'children_102'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '403.' => array('colPos' => '103', 'as' => 'children_103'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '404.' => array('colPos' => '104', 'as' => 'children_104'))), 'accodion' => '< lib.contentElement', 'accodion.' => array('templateName' => 'Accordion', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '1011.' => array('colPos' => '1011', 'as' => 'children_1011'))), 'tabs' => '< lib.contentElement', 'tabs.' => array('templateName' => 'Tabs', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '1021.' => array('colPos' => '1021', 'as' => 'children_1021'))), 'gmm_base_backgroundimage' => '< lib.contentElement', 'gmm_base_backgroundimage.' => array('templateName' => 'BackgroundImage', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image', 'table' => 'tt_content'), 'as' => 'images'))), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/GridElements/'), 'partialRootPaths.' => array('EXT:gmm_base/Resources/Private/Partials/Extensions/GridElements/'), 'dataProcessing.' => array('10.' => array('default.' => array('options.' => array('resolveFlexFormData' => '1', 'resolveChildFlexFormData' => '0')))), 'templateName' => 'Generic', 'variables.' => array('content' => '< tt_content.gridelements_view'), '20.' => array('10.' => array('setup.' => array('1.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:archive_theme/Resources/Private/Templates/Extensions/GridElements/OneColumn.html')))))), 'gridelements_view' => '< lib.contentElement', 'gridelements_view.' => array('templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/GridElements/'), 'partialRootPaths.' => array('EXT:gmm_base/Resources/Private/Partials/Extensions/GridElements/'), 'dataProcessing.' => array('10.' => array('default.' => array('options.' => array('resolveFlexFormData' => '1', 'resolveChildFlexFormData' => '0')))), 'templateName' => 'Generic', 'variables.' => array('content' => '< tt_content.gridelements_view'), '20.' => array('10.' => array('setup.' => array('1.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:archive_theme/Resources/Private/Templates/Extensions/GridElements/OneColumn.html')))))), 'ws_slider' => '< lib.contentElement', 'ws_slider.' => array('templateName' => 'Slider', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:ws_slider/Resources/Private/Templates/', 'EXT:ws_slider/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:ws_slider/Resources/Private/Partials/', 'EXT:ws_slider/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:ws_slider/Resources/Private/Layouts/', 'EXT:ws_slider/Resources/Private/Layouts/'), 'settings.' => array('slider.' => array('defaultRenderer' => 'owl', 'renderer.' => array('slick.' => array('accessibility' => 'true', 'adaptiveHeight' => 'false', 'autoplay' => 'false', 'autoplaySpeed' => '3000', 'arrows' => 'true', 'prevArrow' => '<button type="button" class="slick-prev">Previous</button>', 'nextArrow' => '<button type="button" class="slick-next">Next</button>', 'centerMode' => 'false', 'centerPadding' => '50px', 'cssEase' => 'ease', 'dots' => 'false', 'dotsClass' => 'slick-dots', 'draggable' => 'true', 'fade' => 'false', 'focusOnSelect' => 'false', 'easing' => 'linear', 'edgeFriction' => '0.15', 'infinite' => 'true', 'initialSlide' => 'true', 'lazyLoad' => 'ondemand', 'mobileFirst' => 'false', 'pauseOnFocus' => 'true', 'pauseOnHover' => 'true', 'pauseOnDotsHover' => 'false', 'respondTo' => 'window', 'rows' => '1', 'slidesPerRow' => '1', 'slidesToShow' => '1', 'slidesToScroll' => '1', 'speed' => '300', 'swipe' => 'true', 'swipeToSlide' => 'false', 'touchMove' => 'true', 'touchThreshold' => '5', 'useCSS' => 'true', 'useTransform' => 'true', 'variableWidth' => 'false', 'vertical' => 'false', 'verticalSwiping' => 'false', 'rtl' => 'false', 'waitForAnimate' => 'true', 'responsive.' => array('_removeArrayKeys' => 'true', '0.' => array('breakpoint' => '0', 'settings.' => array('slidesToShow' => '1')), '576.' => array('breakpoint' => '576', 'settings.' => array('slidesToShow' => '2')), '768.' => array('breakpoint' => '768', 'settings.' => array('slidesToShow' => '4')), '992.' => array('breakpoint' => '992', 'settings.' => array('slidesToShow' => '4')), '1200.' => array('breakpoint' => '1200', 'settings.' => array('slidesToShow' => '4')), '1400.' => array('breakpoint' => '1400', 'settings.' => array('slidesToShow' => '4')))), 'flexslider.' => array('selector' => '.slides > li', 'animation' => 'fade', 'easing' => 'swing', 'direction' => 'horizontal', 'reverse' => 'false', 'animationLoop' => 'true', 'smoothHeight' => 'false', 'startAt' => '0', 'slideshow' => 'true', 'slideshowSpeed' => '7000', 'animationSpeed' => '600', 'initDelay' => '0', 'randomize' => 'false', 'fadeFirstSlide' => 'true', 'pauseOnAction' => 'true', 'pauseOnHover' => 'false', 'pauseInvisible' => 'true', 'useCSS' => 'true', 'touch' => 'true', 'video' => 'false', 'controlNav' => 'true', 'directionNav' => 'true', 'keyboard' => 'true', 'multipleKeyboard' => 'false', 'mousewheel' => 'false', 'pausePlay' => 'false', 'controlsContainer' => '', 'manualControls' => '', 'customDirectionNav' => '', 'sync' => '', 'asNavFor' => '', 'itemWidth' => '0', 'itemMargin' => '0', 'minItems' => '3', 'maxItems' => '6', 'move' => '0'), 'owl.' => array('items' => '3', 'animateIn' => 'false', 'animateOut' => 'false', 'margin' => '0', 'loop' => 'false', 'center' => 'false', 'dragEndSpeed' => 'false', 'mouseDrag' => 'true', 'touchDrag' => 'true', 'pullDrag' => 'true', 'freeDrag' => 'false', 'stagePadding' => '0', 'merge' => 'false', 'mergeFit' => 'true', 'autoWidth' => 'false', 'startPosition' => '0', 'URLhashListener' => 'false', 'nav' => 'false', 'navSpeed' => 'false', 'rewind' => 'true', 'navElement' => 'div', 'slideBy' => '1', 'slideTransition' => '', 'dots' => 'true', 'dotsEach' => 'false', 'dotsData' => 'false', 'dotsSpeed' => 'false', 'lazyLoad' => 'false', 'lazyLoadEager' => '0', 'autoplay' => 'false', 'autoplayTimeout' => '5000', 'autoplayHoverPause' => 'false', 'autoplaySpeed' => '1000', 'responsiveRefreshRate' => '1000', 'smartSpeed' => '250', 'video' => 'false', 'videoHeight' => 'false', 'videoWidth' => 'false', 'fallbackEasing' => 'swing', 'nestedItemSelector' => 'false', 'itemElement' => 'div', 'stageElement' => 'div', 'navContainer' => 'false', 'dotsContainer' => 'false', 'checkVisible' => 'true', 'navText.' => array('TEXT', '0.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.previous'), 'TEXT', '1.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.next')), 'responsive.' => array('0.' => array('items' => '1'), '576.' => array('items' => '2'), '768.' => array('items' => '3'), '992.' => array('items' => '3'), '1200.' => array('items' => '3'), '1400.' => array('items' => '3'))), 'bootstrap.' => array('selector' => '.slides > li', 'animation' => 'fade', 'easing' => 'swing', 'direction' => 'horizontal', 'reverse' => 'false', 'animationLoop' => 'true', 'smoothHeight' => 'false', 'startAt' => '0', 'slideshow' => 'true', 'slideshowSpeed' => '7000', 'animationSpeed' => '600', 'initDelay' => '0', 'randomize' => 'false', 'fadeFirstSlide' => 'true', 'pauseOnAction' => 'true', 'pauseOnHover' => 'false', 'pauseInvisible' => 'true', 'useCSS' => 'true', 'touch' => 'true', 'video' => 'false', 'controlNav' => 'true', 'directionNav' => 'true', 'keyboard' => 'true', 'multipleKeyboard' => 'false', 'mousewheel' => 'false', 'pausePlay' => 'false', 'controlsContainer' => '', 'manualControls' => '', 'customDirectionNav' => '', 'sync' => '', 'asNavFor' => '', 'itemWidth' => '0', 'itemMargin' => '0', 'minItems' => '3', 'maxItems' => '6', 'move' => '0'), 'tinyslider.' => array('mode' => 'carousel', 'axis' => 'horizontal', 'items' => '1', 'gutter' => '0', 'edgePadding' => '0', 'fixedWidth' => 'false', 'autoWidth' => 'false', 'viewportMax' => 'false', 'slideBy' => '1', 'center' => 'false', 'controls' => 'true', 'controlsPosition' => 'top', 'controlsText.' => array('TEXT', '0.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.previous'), 'TEXT', '1.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.next')), 'controlsContainer' => 'false', 'prevButton' => 'false', 'nextButton' => 'false', 'nav' => 'true', 'navPosition' => 'top', 'navContainer' => 'false', 'navAsThumbnails' => 'false', 'arrowKeys' => 'false', 'speed' => '300', 'autoplay' => 'false', 'autoplayPosition' => 'top', 'autoplayTimeout' => '5000', 'autoplayDirection' => 'forward', 'autoplayHoverPause' => 'false', 'autoplayButtonOutput' => 'false', 'autoplayResetOnVisibility' => 'true', 'animateIn' => 'tns-fadeIn', 'animateOut' => 'tns-fadeOut', 'animateNormal' => 'tns-normal', 'animateDelay' => 'false', 'loop' => 'true', 'rewind' => 'false', 'autoHeight' => 'false', 'lazyload' => 'false', 'lazyloadSelector' => '.tns-lazy-img', 'touch' => 'true', 'mouseDrag' => 'false', 'swipeAngle' => '15', 'preventActionWhenRunning' => 'false', 'preventScrollOnTouch' => 'false', 'nested' => 'false', 'freezable' => 'true', 'disable' => 'false', 'startIndex' => '0', 'onInit' => 'false', 'useLocalStorage' => 'true', 'nonce' => 'false', 'responsive.' => array('0.' => array('items' => '1'), '576.' => array('items' => '2'), '768.' => array('items' => '3'), '992.' => array('items' => '3'), '1200.' => array('items' => '3'), '1400.' => array('items' => '3')), 'autoplayText.' => array('TEXT', '0.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.start'), 'TEXT', '1.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.stop')))))), 'dataProcessing.' => array('WapplerSystems\\WsSlider\\DataProcessing\\SliderProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_wsslider_domain_model_item', 'as' => 'items', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'content_uid=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'foreground_media'), 'as' => 'foregroundMedia')))))))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-frontend/Classes/ContentObject/RecordsContentObject.php line 127
                            $frontendController->currentRecord = $val['table'] . ':' . $val['id'];
                            $this->cObj->lastChanged($row['tstamp'] ?? 0);
                            $cObj->setRequest($this->request);
                            $cObj->start($row, $val['table']);
                            $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                            $theValue .= $tmpValue;
                        }
                    }
                }
at TYPO3\CMS\Frontend\ContentObject\RecordsContentObject->render(array('tables' => 'tt_content', 'source' => 477))
in /html/typo3/vendor/typo3/cms-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\RecordsContentObject), array('tables' => 'tt_content', 'source' => 477))
in /html/typo3/vendor/b13/container/Classes/DataProcessing/ContainerProcessor.php line 130
                }
                if ($child['t3ver_oid'] > 0) {
                    $conf['source'] = $child['t3ver_oid'];
                }
                $child['renderedContent'] = $cObj->render($contentRecordRenderer, $conf);
            }
            /** @var ContentObjectRenderer $recordContentObjectRenderer */
            $recordContentObjectRenderer = GeneralUtility::makeInstance(ContentObjectRenderer::class);
            $recordContentObjectRenderer->start($child, 'tt_content');
at B13\Container\DataProcessing\ContainerProcessor->processColPos(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), object(B13\Container\Domain\Model\Container), 51, 'children_51', array('data' => array('uid' => 478, 'pid' => 460, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 38, 'tstamp' => 1700927401, 'crdate' => 1544793118, 'cruser_id' => 3, 'editlock' => 0, 'hidden' => 0, 'sorting' => 32, 'CType' => 'section', 'header' => 'Detail-Container', 'header_position' => '', 'rowDescription' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'frame_class' => 'default', 'deleted' => 0, 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 11, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => array('rowColumns' => '1', 'settings' => array('containerStyle' => 'normal', 'containerBgColor' => 'no-bg', 'containerCssClass' => '')), 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":"","colPos":"","tx_container_parent":"","header":"","header_layout":"","header_position":"","date":"","header_link":"","subheader":"","pi_flexform":"","layout":"","frame_class":"","space_before_class":"","space_after_class":"","sectionIndex":"","linkToTop":"","sys_language_uid":"","hidden":"","starttime":"","endtime":"","fe_group":"","editlock":"","categories":"","rowDescription":""}', 'l10n_source' => 0, 'selected_categories' => '', 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 0, 'l10n_state' => null, 'categories' => 0, 'tx_news_related_news' => 0, 'filelink_sorting_direction' => '', 'entry' => 0, 'tx_container_parent' => 0, 'tx_wsslider_items' => 0, 'tx_wsslider_renderer' => null, 'tx_wsslider_layout' => null), 'current' => null), array('colPos' => '51', 'as' => 'children_51'))
in /html/typo3/vendor/b13/container/Classes/DataProcessing/ContainerProcessor.php line 83
                );
            }
        } else {
            $as = $cObj->stdWrapValue('as', $processorConfiguration, 'children');
            $processedData = $this->processColPos(
                $cObj,
                $container,
                $colPos,
                $as,
at B13\Container\DataProcessing\ContainerProcessor->process(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('templateName' => 'section', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:gmm_base/Resources/Private/Templates/Extensions/Container/', 'EXT:gmm_base/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:archive_theme/Resources/Private/Partials/ContentElements/', 'EXT:gmm_base/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:archive_theme/Resources/Private/Layouts/ContentElements/', 'EXT:gmm_base/Resources/Private/Layout/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '51.' => array('colPos' => '51', 'as' => 'children_51'))), array('colPos' => '51', 'as' => 'children_51'), array('data' => array('uid' => 478, 'pid' => 460, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 38, 'tstamp' => 1700927401, 'crdate' => 1544793118, 'cruser_id' => 3, 'editlock' => 0, 'hidden' => 0, 'sorting' => 32, 'CType' => 'section', 'header' => 'Detail-Container', 'header_position' => '', 'rowDescription' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'frame_class' => 'default', 'deleted' => 0, 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 11, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => array('rowColumns' => '1', 'settings' => array('containerStyle' => 'normal', 'containerBgColor' => 'no-bg', 'containerCssClass' => '')), 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":"","colPos":"","tx_container_parent":"","header":"","header_layout":"","header_position":"","date":"","header_link":"","subheader":"","pi_flexform":"","layout":"","frame_class":"","space_before_class":"","space_after_class":"","sectionIndex":"","linkToTop":"","sys_language_uid":"","hidden":"","starttime":"","endtime":"","fe_group":"","editlock":"","categories":"","rowDescription":""}', 'l10n_source' => 0, 'selected_categories' => '', 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 0, 'l10n_state' => null, 'categories' => 0, 'tx_news_related_news' => 0, 'filelink_sorting_direction' => '', 'entry' => 0, 'tx_container_parent' => 0, 'tx_wsslider_items' => 0, 'tx_wsslider_renderer' => null, 'tx_wsslider_layout' => null), 'current' => null))
in /html/typo3/vendor/typo3/cms-frontend/Classes/ContentObject/ContentDataProcessor.php line 54
            foreach ($processorKeys as $key) {
                $dataProcessor = $this->dataProcessorRegistry->getDataProcessor($processors[$key])
                    ?? $this->getDataProcessor($processors[$key]);
                $processorConfiguration = $processors[$key . '.'] ?? [];
                $variables = $dataProcessor->process(
                    $cObject,
                    $configuration,
                    $processorConfiguration,
                    $variables
at TYPO3\CMS\Frontend\ContentObject\ContentDataProcessor->process(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('templateName' => 'section', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:gmm_base/Resources/Private/Templates/Extensions/Container/', 'EXT:gmm_base/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:archive_theme/Resources/Private/Partials/ContentElements/', 'EXT:gmm_base/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:archive_theme/Resources/Private/Layouts/ContentElements/', 'EXT:gmm_base/Resources/Private/Layout/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '51.' => array('colPos' => '51', 'as' => 'children_51'))), array('data' => array('uid' => 478, 'pid' => 460, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 38, 'tstamp' => 1700927401, 'crdate' => 1544793118, 'cruser_id' => 3, 'editlock' => 0, 'hidden' => 0, 'sorting' => 32, 'CType' => 'section', 'header' => 'Detail-Container', 'header_position' => '', 'rowDescription' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'frame_class' => 'default', 'deleted' => 0, 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 11, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => array('rowColumns' => '1', 'settings' => array('containerStyle' => 'normal', 'containerBgColor' => 'no-bg', 'containerCssClass' => '')), 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":"","colPos":"","tx_container_parent":"","header":"","header_layout":"","header_position":"","date":"","header_link":"","subheader":"","pi_flexform":"","layout":"","frame_class":"","space_before_class":"","space_after_class":"","sectionIndex":"","linkToTop":"","sys_language_uid":"","hidden":"","starttime":"","endtime":"","fe_group":"","editlock":"","categories":"","rowDescription":""}', 'l10n_source' => 0, 'selected_categories' => '', 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 0, 'l10n_state' => null, 'categories' => 0, 'tx_news_related_news' => 0, 'filelink_sorting_direction' => '', 'entry' => 0, 'tx_container_parent' => 0, 'tx_wsslider_items' => 0, 'tx_wsslider_renderer' => null, 'tx_wsslider_layout' => null), 'current' => null))
in /html/typo3/vendor/typo3/cms-frontend/Classes/ContentObject/FluidTemplateContentObject.php line 82
        $this->setPartialRootPath($conf);
        $this->setExtbaseVariables($conf);
        $this->assignSettings($conf);
        $variables = $this->getContentObjectVariables($conf);
        $variables = $this->contentDataProcessor->process($this->cObj, $conf, $variables);

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

        $this->renderFluidTemplateAssetsIntoPageRenderer($variables);
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'section', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:gmm_base/Resources/Private/Templates/Extensions/Container/', 'EXT:gmm_base/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:archive_theme/Resources/Private/Partials/ContentElements/', 'EXT:gmm_base/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:archive_theme/Resources/Private/Layouts/ContentElements/', 'EXT:gmm_base/Resources/Private/Layout/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '51.' => array('colPos' => '51', 'as' => 'children_51'))))
in /html/typo3/vendor/typo3/cms-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' => 'section', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:gmm_base/Resources/Private/Templates/Extensions/Container/', 'EXT:gmm_base/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:archive_theme/Resources/Private/Partials/ContentElements/', 'EXT:gmm_base/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:archive_theme/Resources/Private/Layouts/ContentElements/', 'EXT:gmm_base/Resources/Private/Layout/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '51.' => array('colPos' => '51', 'as' => 'children_51'))))
in /html/typo3/vendor/typo3/cms-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' => 'section', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '51.' => array('colPos' => '51', 'as' => 'children_51'))), 'section')
in /html/typo3/vendor/typo3/cms-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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('solr_pi_results' => 'EXTBASEPLUGIN', 'solr_pi_results.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'EXTBASEPLUGIN', 'solr_pi_search.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'EXTBASEPLUGIN', 'solr_pi_frequentlysearched.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'EXTBASEPLUGIN', 'solr_pi_suggest.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'gmmbase_news' => 'EXTBASEPLUGIN', 'gmmbase_news.' => array('extensionName' => 'GmmBase', 'pluginName' => 'News'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'digitalarchiv_digitalarchivview' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivview.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivview'), 'digitalarchiv_personlist' => 'EXTBASEPLUGIN', 'digitalarchiv_personlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonList'), 'digitalarchiv_personshow' => 'EXTBASEPLUGIN', 'digitalarchiv_personshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonShow'), 'digitalarchiv_themelist' => 'EXTBASEPLUGIN', 'digitalarchiv_themelist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeList'), 'digitalarchiv_themeshow' => 'EXTBASEPLUGIN', 'digitalarchiv_themeshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeShow'), 'digitalarchiv_eventlist' => 'EXTBASEPLUGIN', 'digitalarchiv_eventlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventList'), 'digitalarchiv_eventshow' => 'EXTBASEPLUGIN', 'digitalarchiv_eventshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventShow'), 'digitalarchiv_medialist' => 'EXTBASEPLUGIN', 'digitalarchiv_medialist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaList'), 'digitalarchiv_mediashow' => 'EXTBASEPLUGIN', 'digitalarchiv_mediashow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaShow'), 'digitalarchiv_locationlist' => 'EXTBASEPLUGIN', 'digitalarchiv_locationlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationList'), 'digitalarchiv_locationshow' => 'EXTBASEPLUGIN', 'digitalarchiv_locationshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationShow'), 'digitalarchiv_digitalarchivmilestones' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivmilestones.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivmilestones'), 'digitalarchiv_json' => 'EXTBASEPLUGIN', 'digitalarchiv_json.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Json'))), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'image')), 'gallery', '20.' => array('maxGalleryWidth' => '1920', 'maxGalleryWidthInText' => '300', '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')))))), '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')))))), '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')))))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'Form', 'pluginName' => 'Formframework')), 'mindshapecookieconsent_consent' => '< lib.contentElement', 'mindshapecookieconsent_consent.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consent')), 'mindshapecookieconsent_consentmodal' => '< lib.contentElement', 'mindshapecookieconsent_consentmodal.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consentmodal')), 'mindshapecookieconsent_cookielist' => '< lib.contentElement', 'mindshapecookieconsent_cookielist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Cookielist')), 'news_pi1' => '< lib.contentElement', 'news_pi1.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'Pi1')), 'news_newsliststicky' => '< lib.contentElement', 'news_newsliststicky.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsListSticky')), 'news_newsdetail' => '< lib.contentElement', 'news_newsdetail.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsDetail')), 'news_newsselectedlist' => '< lib.contentElement', 'news_newsselectedlist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsSelectedList')), 'news_newsdatemenu' => '< lib.contentElement', 'news_newsdatemenu.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsDateMenu')), 'news_newssearchform' => '< lib.contentElement', 'news_newssearchform.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsSearchForm')), 'news_newssearchresult' => '< lib.contentElement', 'news_newssearchresult.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsSearchResult')), 'news_categorylist' => '< lib.contentElement', 'news_categorylist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'CategoryList')), 'news_taglist' => '< lib.contentElement', 'news_taglist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'TagList')), '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')), 'section' => '< lib.contentElement', 'section.' => array('templateName' => 'section', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '51.' => array('colPos' => '51', 'as' => 'children_51'))), 'container_1_col' => '< lib.contentElement', 'container_1_col.' => array('templateName' => '1-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '101.' => array('colPos' => '101', 'as' => 'children_101'))), 'container_2_col' => '< lib.contentElement', 'container_2_col.' => array('templateName' => '2-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '201.' => array('colPos' => '101', 'as' => 'children_101'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '202.' => array('colPos' => '102', 'as' => 'children_102'))), 'container_3_col' => '< lib.contentElement', 'container_3_col.' => array('templateName' => '3-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '301.' => array('colPos' => '101', 'as' => 'children_101'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '302.' => array('colPos' => '102', 'as' => 'children_102'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '303.' => array('colPos' => '103', 'as' => 'children_103'))), 'container_4_col' => '< lib.contentElement', 'container_4_col.' => array('templateName' => '4-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '401.' => array('colPos' => '101', 'as' => 'children_101'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '402.' => array('colPos' => '102', 'as' => 'children_102'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '403.' => array('colPos' => '103', 'as' => 'children_103'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '404.' => array('colPos' => '104', 'as' => 'children_104'))), 'accodion' => '< lib.contentElement', 'accodion.' => array('templateName' => 'Accordion', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '1011.' => array('colPos' => '1011', 'as' => 'children_1011'))), 'tabs' => '< lib.contentElement', 'tabs.' => array('templateName' => 'Tabs', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '1021.' => array('colPos' => '1021', 'as' => 'children_1021'))), 'gmm_base_backgroundimage' => '< lib.contentElement', 'gmm_base_backgroundimage.' => array('templateName' => 'BackgroundImage', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image', 'table' => 'tt_content'), 'as' => 'images'))), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/GridElements/'), 'partialRootPaths.' => array('EXT:gmm_base/Resources/Private/Partials/Extensions/GridElements/'), 'dataProcessing.' => array('10.' => array('default.' => array('options.' => array('resolveFlexFormData' => '1', 'resolveChildFlexFormData' => '0')))), 'templateName' => 'Generic', 'variables.' => array('content' => '< tt_content.gridelements_view'), '20.' => array('10.' => array('setup.' => array('1.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:archive_theme/Resources/Private/Templates/Extensions/GridElements/OneColumn.html')))))), 'gridelements_view' => '< lib.contentElement', 'gridelements_view.' => array('templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/GridElements/'), 'partialRootPaths.' => array('EXT:gmm_base/Resources/Private/Partials/Extensions/GridElements/'), 'dataProcessing.' => array('10.' => array('default.' => array('options.' => array('resolveFlexFormData' => '1', 'resolveChildFlexFormData' => '0')))), 'templateName' => 'Generic', 'variables.' => array('content' => '< tt_content.gridelements_view'), '20.' => array('10.' => array('setup.' => array('1.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:archive_theme/Resources/Private/Templates/Extensions/GridElements/OneColumn.html')))))), 'ws_slider' => '< lib.contentElement', 'ws_slider.' => array('templateName' => 'Slider', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:ws_slider/Resources/Private/Templates/', 'EXT:ws_slider/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:ws_slider/Resources/Private/Partials/', 'EXT:ws_slider/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:ws_slider/Resources/Private/Layouts/', 'EXT:ws_slider/Resources/Private/Layouts/'), 'settings.' => array('slider.' => array('defaultRenderer' => 'owl', 'renderer.' => array('slick.' => array('accessibility' => 'true', 'adaptiveHeight' => 'false', 'autoplay' => 'false', 'autoplaySpeed' => '3000', 'arrows' => 'true', 'prevArrow' => '<button type="button" class="slick-prev">Previous</button>', 'nextArrow' => '<button type="button" class="slick-next">Next</button>', 'centerMode' => 'false', 'centerPadding' => '50px', 'cssEase' => 'ease', 'dots' => 'false', 'dotsClass' => 'slick-dots', 'draggable' => 'true', 'fade' => 'false', 'focusOnSelect' => 'false', 'easing' => 'linear', 'edgeFriction' => '0.15', 'infinite' => 'true', 'initialSlide' => 'true', 'lazyLoad' => 'ondemand', 'mobileFirst' => 'false', 'pauseOnFocus' => 'true', 'pauseOnHover' => 'true', 'pauseOnDotsHover' => 'false', 'respondTo' => 'window', 'rows' => '1', 'slidesPerRow' => '1', 'slidesToShow' => '1', 'slidesToScroll' => '1', 'speed' => '300', 'swipe' => 'true', 'swipeToSlide' => 'false', 'touchMove' => 'true', 'touchThreshold' => '5', 'useCSS' => 'true', 'useTransform' => 'true', 'variableWidth' => 'false', 'vertical' => 'false', 'verticalSwiping' => 'false', 'rtl' => 'false', 'waitForAnimate' => 'true', 'responsive.' => array('_removeArrayKeys' => 'true', '0.' => array('breakpoint' => '0', 'settings.' => array('slidesToShow' => '1')), '576.' => array('breakpoint' => '576', 'settings.' => array('slidesToShow' => '2')), '768.' => array('breakpoint' => '768', 'settings.' => array('slidesToShow' => '4')), '992.' => array('breakpoint' => '992', 'settings.' => array('slidesToShow' => '4')), '1200.' => array('breakpoint' => '1200', 'settings.' => array('slidesToShow' => '4')), '1400.' => array('breakpoint' => '1400', 'settings.' => array('slidesToShow' => '4')))), 'flexslider.' => array('selector' => '.slides > li', 'animation' => 'fade', 'easing' => 'swing', 'direction' => 'horizontal', 'reverse' => 'false', 'animationLoop' => 'true', 'smoothHeight' => 'false', 'startAt' => '0', 'slideshow' => 'true', 'slideshowSpeed' => '7000', 'animationSpeed' => '600', 'initDelay' => '0', 'randomize' => 'false', 'fadeFirstSlide' => 'true', 'pauseOnAction' => 'true', 'pauseOnHover' => 'false', 'pauseInvisible' => 'true', 'useCSS' => 'true', 'touch' => 'true', 'video' => 'false', 'controlNav' => 'true', 'directionNav' => 'true', 'keyboard' => 'true', 'multipleKeyboard' => 'false', 'mousewheel' => 'false', 'pausePlay' => 'false', 'controlsContainer' => '', 'manualControls' => '', 'customDirectionNav' => '', 'sync' => '', 'asNavFor' => '', 'itemWidth' => '0', 'itemMargin' => '0', 'minItems' => '3', 'maxItems' => '6', 'move' => '0'), 'owl.' => array('items' => '3', 'animateIn' => 'false', 'animateOut' => 'false', 'margin' => '0', 'loop' => 'false', 'center' => 'false', 'dragEndSpeed' => 'false', 'mouseDrag' => 'true', 'touchDrag' => 'true', 'pullDrag' => 'true', 'freeDrag' => 'false', 'stagePadding' => '0', 'merge' => 'false', 'mergeFit' => 'true', 'autoWidth' => 'false', 'startPosition' => '0', 'URLhashListener' => 'false', 'nav' => 'false', 'navSpeed' => 'false', 'rewind' => 'true', 'navElement' => 'div', 'slideBy' => '1', 'slideTransition' => '', 'dots' => 'true', 'dotsEach' => 'false', 'dotsData' => 'false', 'dotsSpeed' => 'false', 'lazyLoad' => 'false', 'lazyLoadEager' => '0', 'autoplay' => 'false', 'autoplayTimeout' => '5000', 'autoplayHoverPause' => 'false', 'autoplaySpeed' => '1000', 'responsiveRefreshRate' => '1000', 'smartSpeed' => '250', 'video' => 'false', 'videoHeight' => 'false', 'videoWidth' => 'false', 'fallbackEasing' => 'swing', 'nestedItemSelector' => 'false', 'itemElement' => 'div', 'stageElement' => 'div', 'navContainer' => 'false', 'dotsContainer' => 'false', 'checkVisible' => 'true', 'navText.' => array('TEXT', '0.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.previous'), 'TEXT', '1.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.next')), 'responsive.' => array('0.' => array('items' => '1'), '576.' => array('items' => '2'), '768.' => array('items' => '3'), '992.' => array('items' => '3'), '1200.' => array('items' => '3'), '1400.' => array('items' => '3'))), 'bootstrap.' => array('selector' => '.slides > li', 'animation' => 'fade', 'easing' => 'swing', 'direction' => 'horizontal', 'reverse' => 'false', 'animationLoop' => 'true', 'smoothHeight' => 'false', 'startAt' => '0', 'slideshow' => 'true', 'slideshowSpeed' => '7000', 'animationSpeed' => '600', 'initDelay' => '0', 'randomize' => 'false', 'fadeFirstSlide' => 'true', 'pauseOnAction' => 'true', 'pauseOnHover' => 'false', 'pauseInvisible' => 'true', 'useCSS' => 'true', 'touch' => 'true', 'video' => 'false', 'controlNav' => 'true', 'directionNav' => 'true', 'keyboard' => 'true', 'multipleKeyboard' => 'false', 'mousewheel' => 'false', 'pausePlay' => 'false', 'controlsContainer' => '', 'manualControls' => '', 'customDirectionNav' => '', 'sync' => '', 'asNavFor' => '', 'itemWidth' => '0', 'itemMargin' => '0', 'minItems' => '3', 'maxItems' => '6', 'move' => '0'), 'tinyslider.' => array('mode' => 'carousel', 'axis' => 'horizontal', 'items' => '1', 'gutter' => '0', 'edgePadding' => '0', 'fixedWidth' => 'false', 'autoWidth' => 'false', 'viewportMax' => 'false', 'slideBy' => '1', 'center' => 'false', 'controls' => 'true', 'controlsPosition' => 'top', 'controlsText.' => array('TEXT', '0.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.previous'), 'TEXT', '1.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.next')), 'controlsContainer' => 'false', 'prevButton' => 'false', 'nextButton' => 'false', 'nav' => 'true', 'navPosition' => 'top', 'navContainer' => 'false', 'navAsThumbnails' => 'false', 'arrowKeys' => 'false', 'speed' => '300', 'autoplay' => 'false', 'autoplayPosition' => 'top', 'autoplayTimeout' => '5000', 'autoplayDirection' => 'forward', 'autoplayHoverPause' => 'false', 'autoplayButtonOutput' => 'false', 'autoplayResetOnVisibility' => 'true', 'animateIn' => 'tns-fadeIn', 'animateOut' => 'tns-fadeOut', 'animateNormal' => 'tns-normal', 'animateDelay' => 'false', 'loop' => 'true', 'rewind' => 'false', 'autoHeight' => 'false', 'lazyload' => 'false', 'lazyloadSelector' => '.tns-lazy-img', 'touch' => 'true', 'mouseDrag' => 'false', 'swipeAngle' => '15', 'preventActionWhenRunning' => 'false', 'preventScrollOnTouch' => 'false', 'nested' => 'false', 'freezable' => 'true', 'disable' => 'false', 'startIndex' => '0', 'onInit' => 'false', 'useLocalStorage' => 'true', 'nonce' => 'false', 'responsive.' => array('0.' => array('items' => '1'), '576.' => array('items' => '2'), '768.' => array('items' => '3'), '992.' => array('items' => '3'), '1200.' => array('items' => '3'), '1400.' => array('items' => '3')), 'autoplayText.' => array('TEXT', '0.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.start'), 'TEXT', '1.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.stop')))))), 'dataProcessing.' => array('WapplerSystems\\WsSlider\\DataProcessing\\SliderProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_wsslider_domain_model_item', 'as' => 'items', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'content_uid=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'foreground_media'), 'as' => 'foregroundMedia')))))))
in /html/typo3/vendor/typo3/cms-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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('solr_pi_results' => 'EXTBASEPLUGIN', 'solr_pi_results.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'EXTBASEPLUGIN', 'solr_pi_search.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'EXTBASEPLUGIN', 'solr_pi_frequentlysearched.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'EXTBASEPLUGIN', 'solr_pi_suggest.' => array('extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'gmmbase_news' => 'EXTBASEPLUGIN', 'gmmbase_news.' => array('extensionName' => 'GmmBase', 'pluginName' => 'News'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'digitalarchiv_digitalarchivview' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivview.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivview'), 'digitalarchiv_personlist' => 'EXTBASEPLUGIN', 'digitalarchiv_personlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonList'), 'digitalarchiv_personshow' => 'EXTBASEPLUGIN', 'digitalarchiv_personshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'PersonShow'), 'digitalarchiv_themelist' => 'EXTBASEPLUGIN', 'digitalarchiv_themelist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeList'), 'digitalarchiv_themeshow' => 'EXTBASEPLUGIN', 'digitalarchiv_themeshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'ThemeShow'), 'digitalarchiv_eventlist' => 'EXTBASEPLUGIN', 'digitalarchiv_eventlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventList'), 'digitalarchiv_eventshow' => 'EXTBASEPLUGIN', 'digitalarchiv_eventshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'EventShow'), 'digitalarchiv_medialist' => 'EXTBASEPLUGIN', 'digitalarchiv_medialist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaList'), 'digitalarchiv_mediashow' => 'EXTBASEPLUGIN', 'digitalarchiv_mediashow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'MediaShow'), 'digitalarchiv_locationlist' => 'EXTBASEPLUGIN', 'digitalarchiv_locationlist.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationList'), 'digitalarchiv_locationshow' => 'EXTBASEPLUGIN', 'digitalarchiv_locationshow.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'LocationShow'), 'digitalarchiv_digitalarchivmilestones' => 'EXTBASEPLUGIN', 'digitalarchiv_digitalarchivmilestones.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Digitalarchivmilestones'), 'digitalarchiv_json' => 'EXTBASEPLUGIN', 'digitalarchiv_json.' => array('extensionName' => 'Digitalarchiv', 'pluginName' => 'Json'))), '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' => '1920', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0'))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('files', '10.' => array('references.' => array('fieldName' => 'image')), 'gallery', '20.' => array('maxGalleryWidth' => '1920', 'maxGalleryWidthInText' => '300', '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')))))), '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')))))), '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')))))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'Form', 'pluginName' => 'Formframework')), 'mindshapecookieconsent_consent' => '< lib.contentElement', 'mindshapecookieconsent_consent.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consent')), 'mindshapecookieconsent_consentmodal' => '< lib.contentElement', 'mindshapecookieconsent_consentmodal.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consentmodal')), 'mindshapecookieconsent_cookielist' => '< lib.contentElement', 'mindshapecookieconsent_cookielist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Cookielist')), 'news_pi1' => '< lib.contentElement', 'news_pi1.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'Pi1')), 'news_newsliststicky' => '< lib.contentElement', 'news_newsliststicky.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsListSticky')), 'news_newsdetail' => '< lib.contentElement', 'news_newsdetail.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsDetail')), 'news_newsselectedlist' => '< lib.contentElement', 'news_newsselectedlist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsSelectedList')), 'news_newsdatemenu' => '< lib.contentElement', 'news_newsdatemenu.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsDateMenu')), 'news_newssearchform' => '< lib.contentElement', 'news_newssearchform.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsSearchForm')), 'news_newssearchresult' => '< lib.contentElement', 'news_newssearchresult.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'NewsSearchResult')), 'news_categorylist' => '< lib.contentElement', 'news_categorylist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'CategoryList')), 'news_taglist' => '< lib.contentElement', 'news_taglist.' => array('templateName' => 'Generic', 'EXTBASEPLUGIN', '20.' => array('extensionName' => 'News', 'pluginName' => 'TagList')), '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')), 'section' => '< lib.contentElement', 'section.' => array('templateName' => 'section', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '51.' => array('colPos' => '51', 'as' => 'children_51'))), 'container_1_col' => '< lib.contentElement', 'container_1_col.' => array('templateName' => '1-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '101.' => array('colPos' => '101', 'as' => 'children_101'))), 'container_2_col' => '< lib.contentElement', 'container_2_col.' => array('templateName' => '2-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '201.' => array('colPos' => '101', 'as' => 'children_101'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '202.' => array('colPos' => '102', 'as' => 'children_102'))), 'container_3_col' => '< lib.contentElement', 'container_3_col.' => array('templateName' => '3-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '301.' => array('colPos' => '101', 'as' => 'children_101'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '302.' => array('colPos' => '102', 'as' => 'children_102'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '303.' => array('colPos' => '103', 'as' => 'children_103'))), 'container_4_col' => '< lib.contentElement', 'container_4_col.' => array('templateName' => '4-Col', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '401.' => array('colPos' => '101', 'as' => 'children_101'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '402.' => array('colPos' => '102', 'as' => 'children_102'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '403.' => array('colPos' => '103', 'as' => 'children_103'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '404.' => array('colPos' => '104', 'as' => 'children_104'))), 'accodion' => '< lib.contentElement', 'accodion.' => array('templateName' => 'Accordion', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '1011.' => array('colPos' => '1011', 'as' => 'children_1011'))), 'tabs' => '< lib.contentElement', 'tabs.' => array('templateName' => 'Tabs', 'templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/Container/'), 'dataProcessing.' => array('GmmAg\\GmmBase\\DataProcessing\\FlexFormProcessor', 'B13\\Container\\DataProcessing\\ContainerProcessor', '1021.' => array('colPos' => '1021', 'as' => 'children_1021'))), 'gmm_base_backgroundimage' => '< lib.contentElement', 'gmm_base_backgroundimage.' => array('templateName' => 'BackgroundImage', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image', 'table' => 'tt_content'), 'as' => 'images'))), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/GridElements/'), 'partialRootPaths.' => array('EXT:gmm_base/Resources/Private/Partials/Extensions/GridElements/'), 'dataProcessing.' => array('10.' => array('default.' => array('options.' => array('resolveFlexFormData' => '1', 'resolveChildFlexFormData' => '0')))), 'templateName' => 'Generic', 'variables.' => array('content' => '< tt_content.gridelements_view'), '20.' => array('10.' => array('setup.' => array('1.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:archive_theme/Resources/Private/Templates/Extensions/GridElements/OneColumn.html')))))), 'gridelements_view' => '< lib.contentElement', 'gridelements_view.' => array('templateRootPaths.' => array('EXT:gmm_base/Resources/Private/Templates/Extensions/GridElements/'), 'partialRootPaths.' => array('EXT:gmm_base/Resources/Private/Partials/Extensions/GridElements/'), 'dataProcessing.' => array('10.' => array('default.' => array('options.' => array('resolveFlexFormData' => '1', 'resolveChildFlexFormData' => '0')))), 'templateName' => 'Generic', 'variables.' => array('content' => '< tt_content.gridelements_view'), '20.' => array('10.' => array('setup.' => array('1.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'EXT:archive_theme/Resources/Private/Templates/Extensions/GridElements/OneColumn.html')))))), 'ws_slider' => '< lib.contentElement', 'ws_slider.' => array('templateName' => 'Slider', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:ws_slider/Resources/Private/Templates/', 'EXT:ws_slider/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:ws_slider/Resources/Private/Partials/', 'EXT:ws_slider/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:ws_slider/Resources/Private/Layouts/', 'EXT:ws_slider/Resources/Private/Layouts/'), 'settings.' => array('slider.' => array('defaultRenderer' => 'owl', 'renderer.' => array('slick.' => array('accessibility' => 'true', 'adaptiveHeight' => 'false', 'autoplay' => 'false', 'autoplaySpeed' => '3000', 'arrows' => 'true', 'prevArrow' => '<button type="button" class="slick-prev">Previous</button>', 'nextArrow' => '<button type="button" class="slick-next">Next</button>', 'centerMode' => 'false', 'centerPadding' => '50px', 'cssEase' => 'ease', 'dots' => 'false', 'dotsClass' => 'slick-dots', 'draggable' => 'true', 'fade' => 'false', 'focusOnSelect' => 'false', 'easing' => 'linear', 'edgeFriction' => '0.15', 'infinite' => 'true', 'initialSlide' => 'true', 'lazyLoad' => 'ondemand', 'mobileFirst' => 'false', 'pauseOnFocus' => 'true', 'pauseOnHover' => 'true', 'pauseOnDotsHover' => 'false', 'respondTo' => 'window', 'rows' => '1', 'slidesPerRow' => '1', 'slidesToShow' => '1', 'slidesToScroll' => '1', 'speed' => '300', 'swipe' => 'true', 'swipeToSlide' => 'false', 'touchMove' => 'true', 'touchThreshold' => '5', 'useCSS' => 'true', 'useTransform' => 'true', 'variableWidth' => 'false', 'vertical' => 'false', 'verticalSwiping' => 'false', 'rtl' => 'false', 'waitForAnimate' => 'true', 'responsive.' => array('_removeArrayKeys' => 'true', '0.' => array('breakpoint' => '0', 'settings.' => array('slidesToShow' => '1')), '576.' => array('breakpoint' => '576', 'settings.' => array('slidesToShow' => '2')), '768.' => array('breakpoint' => '768', 'settings.' => array('slidesToShow' => '4')), '992.' => array('breakpoint' => '992', 'settings.' => array('slidesToShow' => '4')), '1200.' => array('breakpoint' => '1200', 'settings.' => array('slidesToShow' => '4')), '1400.' => array('breakpoint' => '1400', 'settings.' => array('slidesToShow' => '4')))), 'flexslider.' => array('selector' => '.slides > li', 'animation' => 'fade', 'easing' => 'swing', 'direction' => 'horizontal', 'reverse' => 'false', 'animationLoop' => 'true', 'smoothHeight' => 'false', 'startAt' => '0', 'slideshow' => 'true', 'slideshowSpeed' => '7000', 'animationSpeed' => '600', 'initDelay' => '0', 'randomize' => 'false', 'fadeFirstSlide' => 'true', 'pauseOnAction' => 'true', 'pauseOnHover' => 'false', 'pauseInvisible' => 'true', 'useCSS' => 'true', 'touch' => 'true', 'video' => 'false', 'controlNav' => 'true', 'directionNav' => 'true', 'keyboard' => 'true', 'multipleKeyboard' => 'false', 'mousewheel' => 'false', 'pausePlay' => 'false', 'controlsContainer' => '', 'manualControls' => '', 'customDirectionNav' => '', 'sync' => '', 'asNavFor' => '', 'itemWidth' => '0', 'itemMargin' => '0', 'minItems' => '3', 'maxItems' => '6', 'move' => '0'), 'owl.' => array('items' => '3', 'animateIn' => 'false', 'animateOut' => 'false', 'margin' => '0', 'loop' => 'false', 'center' => 'false', 'dragEndSpeed' => 'false', 'mouseDrag' => 'true', 'touchDrag' => 'true', 'pullDrag' => 'true', 'freeDrag' => 'false', 'stagePadding' => '0', 'merge' => 'false', 'mergeFit' => 'true', 'autoWidth' => 'false', 'startPosition' => '0', 'URLhashListener' => 'false', 'nav' => 'false', 'navSpeed' => 'false', 'rewind' => 'true', 'navElement' => 'div', 'slideBy' => '1', 'slideTransition' => '', 'dots' => 'true', 'dotsEach' => 'false', 'dotsData' => 'false', 'dotsSpeed' => 'false', 'lazyLoad' => 'false', 'lazyLoadEager' => '0', 'autoplay' => 'false', 'autoplayTimeout' => '5000', 'autoplayHoverPause' => 'false', 'autoplaySpeed' => '1000', 'responsiveRefreshRate' => '1000', 'smartSpeed' => '250', 'video' => 'false', 'videoHeight' => 'false', 'videoWidth' => 'false', 'fallbackEasing' => 'swing', 'nestedItemSelector' => 'false', 'itemElement' => 'div', 'stageElement' => 'div', 'navContainer' => 'false', 'dotsContainer' => 'false', 'checkVisible' => 'true', 'navText.' => array('TEXT', '0.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.previous'), 'TEXT', '1.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.next')), 'responsive.' => array('0.' => array('items' => '1'), '576.' => array('items' => '2'), '768.' => array('items' => '3'), '992.' => array('items' => '3'), '1200.' => array('items' => '3'), '1400.' => array('items' => '3'))), 'bootstrap.' => array('selector' => '.slides > li', 'animation' => 'fade', 'easing' => 'swing', 'direction' => 'horizontal', 'reverse' => 'false', 'animationLoop' => 'true', 'smoothHeight' => 'false', 'startAt' => '0', 'slideshow' => 'true', 'slideshowSpeed' => '7000', 'animationSpeed' => '600', 'initDelay' => '0', 'randomize' => 'false', 'fadeFirstSlide' => 'true', 'pauseOnAction' => 'true', 'pauseOnHover' => 'false', 'pauseInvisible' => 'true', 'useCSS' => 'true', 'touch' => 'true', 'video' => 'false', 'controlNav' => 'true', 'directionNav' => 'true', 'keyboard' => 'true', 'multipleKeyboard' => 'false', 'mousewheel' => 'false', 'pausePlay' => 'false', 'controlsContainer' => '', 'manualControls' => '', 'customDirectionNav' => '', 'sync' => '', 'asNavFor' => '', 'itemWidth' => '0', 'itemMargin' => '0', 'minItems' => '3', 'maxItems' => '6', 'move' => '0'), 'tinyslider.' => array('mode' => 'carousel', 'axis' => 'horizontal', 'items' => '1', 'gutter' => '0', 'edgePadding' => '0', 'fixedWidth' => 'false', 'autoWidth' => 'false', 'viewportMax' => 'false', 'slideBy' => '1', 'center' => 'false', 'controls' => 'true', 'controlsPosition' => 'top', 'controlsText.' => array('TEXT', '0.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.previous'), 'TEXT', '1.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.next')), 'controlsContainer' => 'false', 'prevButton' => 'false', 'nextButton' => 'false', 'nav' => 'true', 'navPosition' => 'top', 'navContainer' => 'false', 'navAsThumbnails' => 'false', 'arrowKeys' => 'false', 'speed' => '300', 'autoplay' => 'false', 'autoplayPosition' => 'top', 'autoplayTimeout' => '5000', 'autoplayDirection' => 'forward', 'autoplayHoverPause' => 'false', 'autoplayButtonOutput' => 'false', 'autoplayResetOnVisibility' => 'true', 'animateIn' => 'tns-fadeIn', 'animateOut' => 'tns-fadeOut', 'animateNormal' => 'tns-normal', 'animateDelay' => 'false', 'loop' => 'true', 'rewind' => 'false', 'autoHeight' => 'false', 'lazyload' => 'false', 'lazyloadSelector' => '.tns-lazy-img', 'touch' => 'true', 'mouseDrag' => 'false', 'swipeAngle' => '15', 'preventActionWhenRunning' => 'false', 'preventScrollOnTouch' => 'false', 'nested' => 'false', 'freezable' => 'true', 'disable' => 'false', 'startIndex' => '0', 'onInit' => 'false', 'useLocalStorage' => 'true', 'nonce' => 'false', 'responsive.' => array('0.' => array('items' => '1'), '576.' => array('items' => '2'), '768.' => array('items' => '3'), '992.' => array('items' => '3'), '1200.' => array('items' => '3'), '1400.' => array('items' => '3')), 'autoplayText.' => array('TEXT', '0.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.start'), 'TEXT', '1.' => array('data' => 'LLL:EXT:ws_slider/Resources/Private/Language/locallang.xlf:label.stop')))))), 'dataProcessing.' => array('WapplerSystems\\WsSlider\\DataProcessing\\SliderProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_wsslider_domain_model_item', 'as' => 'items', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'content_uid=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'foreground_media'), 'as' => 'foregroundMedia')))))))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-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 = 11')))
in /html/typo3/vendor/typo3/cms-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 = 11')))
in /html/typo3/vendor/typo3/cms-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 = 11')), 'lib.content')
in /html/typo3/vendor/typo3/cms-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('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, 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', '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, 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', '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', '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, 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', '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'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:archive_theme/Resources/Private/Templates/ContentElements/', 'EXT:gmm_base/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:archive_theme/Resources/Private/Partials/ContentElements/', 'EXT:gmm_base/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:archive_theme/Resources/Private/Layouts/ContentElements/', 'EXT:gmm_base/Resources/Private/Layout/ContentElements/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')))), 'dynamicContent' => 'COA', 'dynamicContent.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), 'logo' => 'IMAGE', 'logo.' => array('file' => 'typo3conf/ext/archiv_felsberg/Resources/Public/Images/Wappen_Felsberg.png', 'file.' => array('width' => '80'), 'params' => 'class="img-responsive"', 'stdWrap.' => array('typolink.' => array('parameter' => 'https://www.archiv-felsberg.de/'))), 'logo_title_text' => 'TEXT', 'logo_title_text.' => array('value' => '', 'stdWrap.' => array('typolink.' => array('parameter' => 'https://gmmbase.typo3loft.de'))), 'logo_title_bool' => 'TEXT', 'logo_title_bool.' => array('value' => '0'), 'logo_cols' => 'TEXT', 'logo_cols.' => array('value' => 'col-lg-3 col-md-5 col-sm-12'), 'menu_cols' => 'TEXT', 'menu_cols.' => array('value' => 'col-lg-9'), 'sm_facebook' => 'TEXT', 'sm_facebook.' => array('value' => ''), 'sm_instagram' => 'TEXT', 'sm_instagram.' => array('value' => ''), 'sm_twitter' => 'TEXT', 'sm_twitter.' => array('value' => ''), 'sm_youtube' => 'TEXT', 'sm_youtube.' => array('value' => ''), 'sm_linkedin' => 'TEXT', 'sm_linkedin.' => array('value' => ''), 'show_facebook' => 'TEXT', 'show_facebook.' => array('value' => ''), 'show_instagram' => 'TEXT', 'show_instagram.' => array('value' => ''), 'show_youtube' => 'TEXT', 'show_youtube.' => array('value' => ''), 'show_twitter' => 'TEXT', 'show_twitter.' => array('value' => ''), 'show_linkedin' => 'TEXT', 'show_linkedin.' => array('value' => ''), 'header_style' => 'TEXT', 'header_style.' => array('value' => ''), 'menu_mode' => 'TEXT', 'menu_mode.' => array('value' => 'navbar-light bg-light'), 'align_menu' => 'TEXT', 'align_menu.' => array('value' => 'justify-content-end'), 'main_menu' => 'HMENU', 'main_menu.' => array('special' => 'directory', 'special.' => array('value' => '388'), 'TMENU', '1.' => array('wrap' => '<ul id="main-menu" class="navbar-nav">|</ul>', 'expAll' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="nav-item" NO>|</li>', 'ATagParams' => 'class="nav-link"'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="nav-item active ACT">|</li>', 'ATagParams' => 'class="nav-link"'), 'CURR' => '1', 'CURR.' => array('wrapItemAndSub' => '<li class="nav-item active CURR">|</li>', 'ATagParams' => 'class="nav-link"'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="nav-item dropdown IFSUB">|</li>', 'ATagParams' => 'class="nav-link dropdown-toggle" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"'), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="nav-item dropdown IFSUB">|</li>', 'ATagParams' => 'class="nav-link dropdown-toggle" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"'), 'CURIFSUB' => '1', 'CURIFSUB.' => array('wrapItemAndSub' => '<li class="nav-item dropdown IFSUB">|</li>', 'ATagParams' => 'class="nav-link dropdown-toggle" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"')), 'TMENU', '2.' => array('wrap' => '<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">|</div>', 'NO.' => array('ATagParams' => 'class="dropdown-item 2.NO"'), 'IFSUB.' => array('ATagParams' => 'class="dropdown-item 2.IFSUB"'), 'ACT.' => array('ATagParams' => 'class="dropdown-item 2.ACT"'), 'CURR.' => array('ATagParams' => 'class="dropdown-item 2.CURR"'), 'ACTIFSUB.' => array('ATagParams' => 'class="dropdown-item 2.ACTIFSUP"'))), 'top_menu_tmp' => 'HMENU', 'top_menu_tmp.' => array('special' => 'directory', 'special.' => array('value' => '19'), 'TMENU', '1.' => array('wrap' => '<ul id="top-menu" class="navbar-nav ml-auto">|</ul>', 'expAll' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="nav-item" NO>|</li>', 'ATagParams' => 'class="nav-link"'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="nav-item active ACT">|</li>', 'ATagParams' => 'class="nav-link"'), 'CURR' => '1', 'CURR.' => array('wrapItemAndSub' => '<li class="nav-item active CURR">|</li>', 'ATagParams' => 'class="nav-link"'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="nav-item dropdown IFSUB">|</li>', 'ATagParams' => 'class="nav-link dropdown-toggle" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"'), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="nav-item dropdown IFSUB">|</li>', 'ATagParams' => 'class="nav-link dropdown-toggle" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"'), 'CURIFSUB' => '1', 'CURIFSUB.' => array('wrapItemAndSub' => '<li class="nav-item dropdown IFSUB">|</li>', 'ATagParams' => 'class="nav-link dropdown-toggle" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"')), 'TMENU', '2.' => array('wrap' => '<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">|</div>', 'NO.' => array('ATagParams' => 'class="dropdown-item 2.NO"'), 'IFSUB.' => array('ATagParams' => 'class="dropdown-item 2.IFSUB"'), 'ACT.' => array('ATagParams' => 'class="dropdown-item 2.ACT"'), 'CURR.' => array('ATagParams' => 'class="dropdown-item 2.CURR"'), 'ACTIFSUB.' => array('ATagParams' => 'class="dropdown-item 2.ACTIFSUP"'))), 'top_menu' => 'HMENU', 'top_menu.' => array('special' => 'directory', 'special.' => array('value' => '19'), 'TMENU', '1.' => array('wrap' => '<ul id="top-menu" class="navbar-nav ml-auto">|</ul>', 'expAll' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="nav-item" NO>|</li>', 'ATagParams' => 'class="nav-link"'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="nav-item active ACT">|</li>', 'ATagParams' => 'class="nav-link"'), 'CURR' => '1', 'CURR.' => array('wrapItemAndSub' => '<li class="nav-item active CURR">|</li>', 'ATagParams' => 'class="nav-link"'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="nav-item dropdown IFSUB">|</li>', 'ATagParams' => 'class="nav-link dropdown-toggle" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"'), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="nav-item dropdown IFSUB">|</li>', 'ATagParams' => 'class="nav-link dropdown-toggle" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"'), 'CURIFSUB' => '1', 'CURIFSUB.' => array('wrapItemAndSub' => '<li class="nav-item dropdown IFSUB">|</li>', 'ATagParams' => 'class="nav-link dropdown-toggle" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"')), 'TMENU', '2.' => array('wrap' => '<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">|</div>', 'NO.' => array('ATagParams' => 'class="dropdown-item 2.NO"'), 'IFSUB.' => array('ATagParams' => 'class="dropdown-item 2.IFSUB"'), 'ACT.' => array('ATagParams' => 'class="dropdown-item 2.ACT"'), 'CURR.' => array('ATagParams' => 'class="dropdown-item 2.CURR"'), 'ACTIFSUB.' => array('ATagParams' => 'class="dropdown-item 2.ACTIFSUP"'))), 'bonus_menu' => 'HMENU', 'bonus_menu.' => array('entryLevel' => '-1', 'entryLevel.' => array('override' => '-2', 'override.' => array('if.' => array('negate' => '1', 'isTrue.' => array('numRows.' => array('table' => 'pages', 'where' => 'pid=this'))))), 'TMENU', '1.' => array('wrap' => '<div class="col-sm-12"><ul id="main-menu" class="navbar-nav">|</ul></div>', 'expAll' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="nav-item" NO>|</li>', 'ATagParams' => 'class="nav-link"'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="nav-item active ACT TEST">|</li>', 'ATagParams' => 'class="nav-link"'), 'CURR' => '1', 'CURR.' => array('wrapItemAndSub' => '<li class="nav-item active CURR">|</li>', 'ATagParams' => 'class="nav-link"'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="nav-item IFSUB">|</li>', 'ATagParams' => 'class="nav-link"'), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="nav-item IFSUB">|</li>', 'ATagParams' => 'class="nav-link"'), 'CURIFSUB' => '1', 'CURIFSUB.' => array('wrapItemAndSub' => '<li class="nav-item IFSUB">|</li>', 'ATagParams' => 'class="nav-link"'))), 'footer_menu' => 'HMENU', 'footer_menu.' => array('special' => 'directory', 'special.' => array('value' => '1500'), 'TMENU', '1.' => array('wrap' => '<ul class="footer-nav nav">|</ul>', 'expAll' => '1', 'NO.' => array('ATagParams' => 'class="first" |*| |*| class="last"', 'wrapItemAndSub' => '<li class="nav-item">|</li>'), 'ACT' => '1', 'ACT.' => array('ATagParams' => 'class="first active" |*| class="active" |*| class="last active"', 'wrapItemAndSub' => '<li class="active first">|<div class="menu-lines"></div></li> |*| <li class="active">|<div class="menu-lines"></div></li> |*| <li class="active last">|<div class="menu-lines"></div></li>'))), 'tx_digitalarchiv.' => array('sectionElementRendering' => 'RECORDS', 'sectionElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'slider' => 'CONTENT', 'slider.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 9991')), 'content_right_top' => 'CONTENT', 'content_right_top.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 9992')), 'content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 11')), 'content_bottom' => 'CONTENT', 'content_bottom.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 21')), 'content_right' => 'COA', 'content_right.' => array('CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 12'))), 'archiv_name' => 'TEXT', 'archiv_name.' => array('value' => 'Archiv Felsberg'), 'logo_archiv' => 'IMAGE', 'logo_archiv.' => array('file' => 'typo3conf/ext/archive_theme/Resources/Public/Images/logo_archive_mft.jpg', 'file.' => array('width' => '210'), 'params' => 'class="img-responsive"', 'stdWrap.' => array('typolink.' => array('parameter' => 'https://archive-mittleres-fuldatal.de/ _blank'))), 'logo_foerderung' => 'IMAGE', 'logo_foerderung.' => array('file' => 'typo3conf/ext/archive_theme/Resources/Public/Images/logo_foerderung-neu.jpg', 'file.' => array('width' => '600'), 'params' => 'class="img-responsive"'), 'logo_gmm' => 'IMAGE', 'logo_gmm.' => array('file' => 'typo3conf/ext/archive_theme/Resources/Public/Images/gmm_logo_600.png', 'file.' => array('width' => '210'), 'params' => 'class="img-responsive"', 'stdWrap.' => array('typolink.' => array('parameter' => 'https://www.g-m-m.de/home/ _blank'))), 'tx_form.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'searchbox' => 'TEXT', 'searchbox.' => array('value' => '<form method="get" id="form_kesearch_searchfield" name="form_kesearch_searchfield" action="/suche/"> <input type="text" id="ke_search_searchfield_sword" name="tx_kesearch_pi1[sword]" placeholder="Suchbegriff" /> <input type="submit" id="ke_search_searchfield_submit" alt="Find" /></form>')), 'lib.content', 'content')
in /html/typo3/vendor/typo3/cms-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/var/cache/code/fluid_template/Default_action_Home_9f30993c241ef300062b50c2cbabda47d5932626.php line 192
'currentValueKey' => NULL,
'table' => '',
];
$renderChildrenClosure14 = ($arguments13['data'] !== null) ? function() use ($arguments13) { return $arguments13['data']; } : $renderChildrenClosure14;
$output0 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments13, $renderChildrenClosure14, $renderingContext);

$output0 .= '

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

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

$output0 .= '
';

at layout_Home_html_f6b510d9efd8ddb3f35b35215b98b202ec15bc9b->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/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/vendor/typo3/cms-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/vendor/typo3/cms-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' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:archive_theme/Resources/Private/Templates/Page/', 'EXT:archive_theme/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:archive_theme/Resources/Private/Partials/Page/', 'EXT:archive_theme/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:archive_theme/Resources/Private/Layouts/Page/', 'EXT:archive_theme/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value' => '1'), 'excludeDoktypes' => '199', 'levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '30.' => array('special' => 'directory', 'special.' => array('value' => '111'), 'excludeDoktypes' => '199', 'levels' => '2', 'includeSpacer' => '1', 'as' => 'imagetest', 'references.' => array('table' => 'tx_digitalarchiv_domain_model_entry', 'fieldName' => 'prvimage')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '40.' => array('special' => 'language', 'special.' => array('value' => '0'), 'as' => 'menuLanguage', 'references.' => array('fieldName' => 'prvimage')))))
in /html/typo3/vendor/typo3/cms-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' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:archive_theme/Resources/Private/Templates/Page/', 'EXT:archive_theme/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:archive_theme/Resources/Private/Partials/Page/', 'EXT:archive_theme/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:archive_theme/Resources/Private/Layouts/Page/', 'EXT:archive_theme/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value' => '1'), 'excludeDoktypes' => '199', 'levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '30.' => array('special' => 'directory', 'special.' => array('value' => '111'), 'excludeDoktypes' => '199', 'levels' => '2', 'includeSpacer' => '1', 'as' => 'imagetest', 'references.' => array('table' => 'tx_digitalarchiv_domain_model_entry', 'fieldName' => 'prvimage')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '40.' => array('special' => 'language', 'special.' => array('value' => '0'), 'as' => 'menuLanguage', 'references.' => array('fieldName' => 'prvimage')))))
in /html/typo3/vendor/typo3/cms-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('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:archive_theme/Resources/Private/Templates/Page/', 'EXT:archive_theme/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:archive_theme/Resources/Private/Partials/Page/', 'EXT:archive_theme/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:archive_theme/Resources/Private/Layouts/Page/', 'EXT:archive_theme/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value' => '1'), 'excludeDoktypes' => '199', 'levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '30.' => array('special' => 'directory', 'special.' => array('value' => '111'), 'excludeDoktypes' => '199', 'levels' => '2', 'includeSpacer' => '1', 'as' => 'imagetest', 'references.' => array('table' => 'tx_digitalarchiv_domain_model_entry', 'fieldName' => 'prvimage')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '40.' => array('special' => 'language', 'special.' => array('value' => '0'), 'as' => 'menuLanguage', 'references.' => array('fieldName' => 'prvimage')))), '10')
in /html/typo3/vendor/typo3/cms-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('typeNum' => '0', 'shortcutIcon' => 'EXT:archive_theme/Resources/Public/Icons/favicon.ico', 'FLUIDTEMPLATE', '10.' => array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:archive_theme/Resources/Private/Templates/Page/', 'EXT:archive_theme/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:archive_theme/Resources/Private/Partials/Page/', 'EXT:archive_theme/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:archive_theme/Resources/Private/Layouts/Page/', 'EXT:archive_theme/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value' => '1'), 'excludeDoktypes' => '199', 'levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '30.' => array('special' => 'directory', 'special.' => array('value' => '111'), 'excludeDoktypes' => '199', 'levels' => '2', 'includeSpacer' => '1', 'as' => 'imagetest', 'references.' => array('table' => 'tx_digitalarchiv_domain_model_entry', 'fieldName' => 'prvimage')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '40.' => array('special' => 'language', 'special.' => array('value' => '0'), 'as' => 'menuLanguage', 'references.' => array('fieldName' => 'prvimage')))), 'meta.' => array('viewport' => 'width=device-width, initial-scale=1', 'robots' => 'index,follow', 'apple-mobile-web-app-capable' => 'no', 'description' => '', 'description.' => array('override.' => array('field' => 'description')), 'author' => '', 'author.' => array('override.' => array('field' => 'author')), 'keywords' => '', 'keywords.' => array('override.' => array('field' => 'keywords')), 'X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'og:title.' => array('attribute' => 'property', 'field' => 'title'), 'og:site_name.' => array('attribute' => 'property', 'data' => 'TSFE:tmpl|setup|sitetitle'), 'og:description' => '', 'og:description.' => array('attribute' => 'property', 'field' => 'description'), 'og:image.' => array('attribute' => 'property', 'stdWrap.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array('data' => 'levelfield:-1, media, slide'), 'maxItems' => '1', 'renderObj' => 'COA', 'renderObj.' => array('IMG_RESOURCE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:uid'), 'treatIdAsReference' => '1', 'width' => '1280c', 'height' => '720c'), 'stdWrap.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:lastImgResourceInfo|3'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1')))))))), 'includeCSS.' => array('rebootBootstrapCss' => 'EXT:gmm_base/Resources/Public/Css/bootstrap/bootstrap-reboot.min.css', 'bootstrapCss' => 'EXT:archive_theme/Resources/Public/Css/Bootstrap/bootstrap.min.css', 'bootstrapCss.' => array('media' => 'screen'), 'bootstrapGridCss' => 'EXT:archive_theme/Resources/Public/Css/Bootstrap/bootstrap-grid.min.css', 'bootstrapGridCss.' => array('media' => 'screen'), 'font_awesomeCss' => 'EXT:gmm_base/Resources/Public/Fonts/font_awesome/css/all.css', 'gmm_base_layout' => 'EXT:gmm_base/Resources/Public/Css/layout.css', 'responsiveCss' => 'EXT:gmm_base/Resources/Public/Css/responsive.css', 'responsiveCss.' => array('media' => 'screen'), 'fancyboxCss' => 'EXT:digitalarchiv/Resources/Public/Css/dist/fancybox/jquery.fancybox.min.css', 'fancyboxCss.' => array('media' => 'screen'), 'slickCss' => 'EXT:digitalarchiv/Resources/Public/Css/slick/slick.css', 'slickCss.' => array('media' => 'screen'), 'slickThemeCss' => 'EXT:digitalarchiv/Resources/Public/Css/slick/slick-theme.css', 'slickThemeCss.' => array('media' => 'screen'), 'magnificPopupCss' => 'EXT:digitalarchiv/Resources/Public/Css/lighbox/magnific_popup.1.1.0.css', 'magnificPopupCss.' => array('media' => 'screen'), 'digitaleHeimatCss' => 'EXT:digitalarchiv/Resources/Public/Css/digitale_heimat.css', 'digitalArchivCss.' => array('media' => 'screen'), 'bootstrapRebootCss' => 'EXT:archive_theme/Resources/Public/Css/Bootstrap/bootstrap-reboot.min.css', 'bootstrapRebootCss.' => array('media' => 'screen'), 'ke_searchCSS' => 'EXT:ke_search/Resources/Public/Css/ke_search_pi1.css', 'archive_theme_css' => 'EXT:archive_theme/Resources/Public/Css/layout.css', 'archive_theme_css.' => array('media' => 'screen'), 'owl' => 'EXT:ws_slider/Resources/Public/CSS/Owl/owl.carousel.css', 'owl_theme_default' => 'EXT:ws_slider/Resources/Public/CSS/Owl/owl.theme.default.css', 'flexslider' => 'EXT:ws_slider/Resources/Public/CSS/Flexslider/flexslider.css', 'flexslider_mods' => 'EXT:ws_slider/Resources/Public/CSS/Flexslider/mods.css', 'tinyslider' => 'EXT:ws_slider/Resources/Public/CSS/TinySlider/tiny-slider.css', 'slick' => 'EXT:ws_slider/Resources/Public/CSS/Slick/slick.css', 'slick_theme' => 'EXT:ws_slider/Resources/Public/CSS/Slick/slick-theme.css', 'archiv_felsberg_layout' => 'EXT:archiv_felsberg/Resources/Public/Css/city_theme.css'), 'includeJS.' => array('jqueryJs' => 'EXT:archive_theme/Resources/Public/JavaScript/Dist/jquery-3.7.1-min.js', 'bootstrapBundleJs' => 'EXT:gmm_base/Resources/Public/JavaScript/bootstrap/bootstrap.bundle.min.js'), 'includeJSFooter.' => array('imgagesLoadedJs' => 'EXT:digitalarchiv/Resources/Public/JavaScript/slick/imagesloaded.pkgd.min.js', 'fancyboxJs' => 'EXT:digitalarchiv/Resources/Public/JavaScript/dist/fancybox/jquery.fancybox.min.js', 'slickJs' => 'EXT:digitalarchiv/Resources/Public/JavaScript/slick/slick.min.js', 'digitalarchivJs' => 'EXT:digitalarchiv/Resources/Public/JavaScript/digitalarchiv.js', 'magnificPopupJs' => 'EXT:digitalarchiv/Resources/Public/JavaScript/lightbox/magnific_popup_1.1.0.js', 'isotopeJs' => 'EXT:digitalarchiv/Resources/Public/JavaScript/dist/isotope.pkgd.min.js', 'cookieJs' => 'EXT:digitalarchiv/Resources/Public/JavaScript/dist/cookies.js', 'bootstrapJs' => 'EXT:archive_theme/Resources/Public/JavaScript/Dist/bootstrap.min.js', 'archive_theme_scripts' => 'EXT:archive_theme/Resources/Public/JavaScript/Src/scripts.js', 'owl' => 'EXT:ws_slider/Resources/Public/JavaScript/Owl/owl.carousel.min.js', 'flexslider' => 'EXT:ws_slider/Resources/Public/JavaScript/Flexslider/jquery.flexslider.min.js', 'tinyslider' => 'EXT:ws_slider/Resources/Public/JavaScript/TinySlider/tiny-slider.min.js', 'slick' => 'EXT:ws_slider/Resources/Public/JavaScript/Slick/slick.min.js'), 'bodyTagCObject' => 'TEXT', 'bodyTagCObject.' => array('value' => 'gmm-base', 'wrap' => '<body class="|">'), 'config.' => array('contentObjectExceptionHandler' => '0'), 'headerData.' => array('TEXT', '15929.' => array('value' => '<div id="googleAnalyticsContainer" data-tab="G-KG7978P32H"></div>'), 'TEXT', '10.' => array('value' => '<link rel="apple-touch-icon" sizes="76x76" href="/typo3conf/ext/archiv_felsberg/Resources/Public/Icons/apple-touch-icon.png"><link rel="icon" type="image/png" sizes="32x32" href="/typo3conf/ext/archiv_felsberg/Resources/Public/Icons/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/typo3conf/ext/archiv_felsberg/Resources/Public/Icons/favicon-16x16.png"><link rel="manifest" href="/typo3conf/ext/archiv_felsberg/Resources/Public/Icons/site.webmanifest"><link rel="mask-icon" href="/typo3conf/ext/archiv_felsberg/Resources/Public/Icons/safari-pinned-tab.svg" color="#5bbad5"><link rel="shortcut icon" href="/typo3conf/ext/archiv_felsberg/Resources/Public/Icons/favicon.ico"><meta name="msapplication-TileColor" content="#da532c"><meta name="msapplication-config" content="/typo3conf/ext/archiv_felsberg/Resources/Public/Icons/browserconfig.xml"><meta name="theme-color" content="#ffffff"><script>function loadGAonConsent(){ window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date; ga(\'create\', \'UA-137817429-4\', \'auto\'); ga(\'set\', \'anonymizeIp\', true); ga(\'send\', \'pageview\'); var gascript = document.createElement("script"); gascript.async = true; gascript.src = "https://www.google-analytics.com/analytics.js"; document.getElementsByTagName("head")[0].appendChild(gascript, document.getElementsByTagName("head")[0]);}if (document.cookie.split(\';\').filter(function(item) { return item.indexOf(\'cookieconsent_status=allow\') >= 0}).length) { loadGAonConsent();}window.addEventListener("load", function(){ window.cookieconsent.initialise({ "palette": { "popup": { "background": "#e2e6ec", "text": "#000"}, "button": { "background": "#62BB46", "text": "#fff"} }, "position": "top", "type": "opt-in", "content": { "message": "Um unsere Webseite für Sie optimal zu gestalten und fortlaufend verbessern zu können, verwenden wir Cookies. Durch die weitere Nutzung der Webseite stimmen Sie der Verwendung von Cookies zu. Weitere Informationen erhalten Sie in unserer", "dismiss": "Ablehnen", "allow": "Einverstanden", "link": "Datenschutzerklärung", "href": "https://www.archiv-felsberg.de/index.php?id=1504" }, onStatusChange: function(status, chosenBefore) { var type = this.options.type; var didConsent = this.hasConsented(); if (type == \'opt-in\' && didConsent) { // enable cookies loadGAonConsent(); } } })});</script>'))), '')
in /html/typo3/vendor/typo3/cms-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('typeNum' => '0', 'shortcutIcon' => 'EXT:archive_theme/Resources/Public/Icons/favicon.ico', 'FLUIDTEMPLATE', '10.' => array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:archive_theme/Resources/Private/Templates/Page/', 'EXT:archive_theme/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:archive_theme/Resources/Private/Partials/Page/', 'EXT:archive_theme/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:archive_theme/Resources/Private/Layouts/Page/', 'EXT:archive_theme/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value' => '1'), 'excludeDoktypes' => '199', 'levels' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '30.' => array('special' => 'directory', 'special.' => array('value' => '111'), 'excludeDoktypes' => '199', 'levels' => '2', 'includeSpacer' => '1', 'as' => 'imagetest', 'references.' => array('table' => 'tx_digitalarchiv_domain_model_entry', 'fieldName' => 'prvimage')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '40.' => array('special' => 'language', 'special.' => array('value' => '0'), 'as' => 'menuLanguage', 'references.' => array('fieldName' => 'prvimage')))), 'meta.' => array('viewport' => 'width=device-width, initial-scale=1', 'robots' => 'index,follow', 'apple-mobile-web-app-capable' => 'no', 'description' => '', 'description.' => array('override.' => array('field' => 'description')), 'author' => '', 'author.' => array('override.' => array('field' => 'author')), 'keywords' => '', 'keywords.' => array('override.' => array('field' => 'keywords')), 'X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'og:title.' => array('attribute' => 'property', 'field' => 'title'), 'og:site_name.' => array('attribute' => 'property', 'data' => 'TSFE:tmpl|setup|sitetitle'), 'og:description' => '', 'og:description.' => array('attribute' => 'property', 'field' => 'description'), 'og:image.' => array('attribute' => 'property', 'stdWrap.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array('data' => 'levelfield:-1, media, slide'), 'maxItems' => '1', 'renderObj' => 'COA', 'renderObj.' => array('IMG_RESOURCE', '10.' => array('file.' => array('import.' => array('data' => 'file:current:uid'), 'treatIdAsReference' => '1', 'width' => '1280c', 'height' => '720c'), 'stdWrap.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:lastImgResourceInfo|3'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1')))))))), 'includeCSS.' => array('rebootBootstrapCss' => 'EXT:gmm_base/Resources/Public/Css/bootstrap/bootstrap-reboot.min.css', 'bootstrapCss' => 'EXT:archive_theme/Resources/Public/Css/Bootstrap/bootstrap.min.css', 'bootstrapCss.' => array('media' => 'screen'), 'bootstrapGridCss' => 'EXT:archive_theme/Resources/Public/Css/Bootstrap/bootstrap-grid.min.css', 'bootstrapGridCss.' => array('media' => 'screen'), 'font_awesomeCss' => 'EXT:gmm_base/Resources/Public/Fonts/font_awesome/css/all.css', 'gmm_base_layout' => 'EXT:gmm_base/Resources/Public/Css/layout.css', 'responsiveCss' => 'EXT:gmm_base/Resources/Public/Css/responsive.css', 'responsiveCss.' => array('media' => 'screen'), 'fancyboxCss' => 'EXT:digitalarchiv/Resources/Public/Css/dist/fancybox/jquery.fancybox.min.css', 'fancyboxCss.' => array('media' => 'screen'), 'slickCss' => 'EXT:digitalarchiv/Resources/Public/Css/slick/slick.css', 'slickCss.' => array('media' => 'screen'), 'slickThemeCss' => 'EXT:digitalarchiv/Resources/Public/Css/slick/slick-theme.css', 'slickThemeCss.' => array('media' => 'screen'), 'magnificPopupCss' => 'EXT:digitalarchiv/Resources/Public/Css/lighbox/magnific_popup.1.1.0.css', 'magnificPopupCss.' => array('media' => 'screen'), 'digitaleHeimatCss' => 'EXT:digitalarchiv/Resources/Public/Css/digitale_heimat.css', 'digitalArchivCss.' => array('media' => 'screen'), 'bootstrapRebootCss' => 'EXT:archive_theme/Resources/Public/Css/Bootstrap/bootstrap-reboot.min.css', 'bootstrapRebootCss.' => array('media' => 'screen'), 'ke_searchCSS' => 'EXT:ke_search/Resources/Public/Css/ke_search_pi1.css', 'archive_theme_css' => 'EXT:archive_theme/Resources/Public/Css/layout.css', 'archive_theme_css.' => array('media' => 'screen'), 'owl' => 'EXT:ws_slider/Resources/Public/CSS/Owl/owl.carousel.css', 'owl_theme_default' => 'EXT:ws_slider/Resources/Public/CSS/Owl/owl.theme.default.css', 'flexslider' => 'EXT:ws_slider/Resources/Public/CSS/Flexslider/flexslider.css', 'flexslider_mods' => 'EXT:ws_slider/Resources/Public/CSS/Flexslider/mods.css', 'tinyslider' => 'EXT:ws_slider/Resources/Public/CSS/TinySlider/tiny-slider.css', 'slick' => 'EXT:ws_slider/Resources/Public/CSS/Slick/slick.css', 'slick_theme' => 'EXT:ws_slider/Resources/Public/CSS/Slick/slick-theme.css', 'archiv_felsberg_layout' => 'EXT:archiv_felsberg/Resources/Public/Css/city_theme.css'), 'includeJS.' => array('jqueryJs' => 'EXT:archive_theme/Resources/Public/JavaScript/Dist/jquery-3.7.1-min.js', 'bootstrapBundleJs' => 'EXT:gmm_base/Resources/Public/JavaScript/bootstrap/bootstrap.bundle.min.js'), 'includeJSFooter.' => array('imgagesLoadedJs' => 'EXT:digitalarchiv/Resources/Public/JavaScript/slick/imagesloaded.pkgd.min.js', 'fancyboxJs' => 'EXT:digitalarchiv/Resources/Public/JavaScript/dist/fancybox/jquery.fancybox.min.js', 'slickJs' => 'EXT:digitalarchiv/Resources/Public/JavaScript/slick/slick.min.js', 'digitalarchivJs' => 'EXT:digitalarchiv/Resources/Public/JavaScript/digitalarchiv.js', 'magnificPopupJs' => 'EXT:digitalarchiv/Resources/Public/JavaScript/lightbox/magnific_popup_1.1.0.js', 'isotopeJs' => 'EXT:digitalarchiv/Resources/Public/JavaScript/dist/isotope.pkgd.min.js', 'cookieJs' => 'EXT:digitalarchiv/Resources/Public/JavaScript/dist/cookies.js', 'bootstrapJs' => 'EXT:archive_theme/Resources/Public/JavaScript/Dist/bootstrap.min.js', 'archive_theme_scripts' => 'EXT:archive_theme/Resources/Public/JavaScript/Src/scripts.js', 'owl' => 'EXT:ws_slider/Resources/Public/JavaScript/Owl/owl.carousel.min.js', 'flexslider' => 'EXT:ws_slider/Resources/Public/JavaScript/Flexslider/jquery.flexslider.min.js', 'tinyslider' => 'EXT:ws_slider/Resources/Public/JavaScript/TinySlider/tiny-slider.min.js', 'slick' => 'EXT:ws_slider/Resources/Public/JavaScript/Slick/slick.min.js'), 'bodyTagCObject' => 'TEXT', 'bodyTagCObject.' => array('value' => 'gmm-base', 'wrap' => '<body class="|">'), 'config.' => array('contentObjectExceptionHandler' => '0'), 'headerData.' => array('TEXT', '15929.' => array('value' => '<div id="googleAnalyticsContainer" data-tab="G-KG7978P32H"></div>'), 'TEXT', '10.' => array('value' => '<link rel="apple-touch-icon" sizes="76x76" href="/typo3conf/ext/archiv_felsberg/Resources/Public/Icons/apple-touch-icon.png"><link rel="icon" type="image/png" sizes="32x32" href="/typo3conf/ext/archiv_felsberg/Resources/Public/Icons/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/typo3conf/ext/archiv_felsberg/Resources/Public/Icons/favicon-16x16.png"><link rel="manifest" href="/typo3conf/ext/archiv_felsberg/Resources/Public/Icons/site.webmanifest"><link rel="mask-icon" href="/typo3conf/ext/archiv_felsberg/Resources/Public/Icons/safari-pinned-tab.svg" color="#5bbad5"><link rel="shortcut icon" href="/typo3conf/ext/archiv_felsberg/Resources/Public/Icons/favicon.ico"><meta name="msapplication-TileColor" content="#da532c"><meta name="msapplication-config" content="/typo3conf/ext/archiv_felsberg/Resources/Public/Icons/browserconfig.xml"><meta name="theme-color" content="#ffffff"><script>function loadGAonConsent(){ window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date; ga(\'create\', \'UA-137817429-4\', \'auto\'); ga(\'set\', \'anonymizeIp\', true); ga(\'send\', \'pageview\'); var gascript = document.createElement("script"); gascript.async = true; gascript.src = "https://www.google-analytics.com/analytics.js"; document.getElementsByTagName("head")[0].appendChild(gascript, document.getElementsByTagName("head")[0]);}if (document.cookie.split(\';\').filter(function(item) { return item.indexOf(\'cookieconsent_status=allow\') >= 0}).length) { loadGAonConsent();}window.addEventListener("load", function(){ window.cookieconsent.initialise({ "palette": { "popup": { "background": "#e2e6ec", "text": "#000"}, "button": { "background": "#62BB46", "text": "#fff"} }, "position": "top", "type": "opt-in", "content": { "message": "Um unsere Webseite für Sie optimal zu gestalten und fortlaufend verbessern zu können, verwenden wir Cookies. Durch die weitere Nutzung der Webseite stimmen Sie der Verwendung von Cookies zu. Weitere Informationen erhalten Sie in unserer", "dismiss": "Ablehnen", "allow": "Einverstanden", "link": "Datenschutzerklärung", "href": "https://www.archiv-felsberg.de/index.php?id=1504" }, onStatusChange: function(status, chosenBefore) { var type = this.options.type; var didConsent = this.hasConsented(); if (type == \'opt-in\' && didConsent) { // enable cookies loadGAonConsent(); } } })});</script>'))))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-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/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Middleware/ResponsePropagation.php line 34
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        try {
            $response = $handler->handle($request);
        } catch (PropagateResponseException $e) {
            $response = $e->getResponse();
        }

at TYPO3\CMS\Core\Middleware\ResponsePropagation->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 41
     * Render the admin panel if activated
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && StateUtility::isActivatedForUser()
            && StateUtility::isActivatedInTypoScript()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelDataPersister->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-adminpanel/Classes/Middleware/AdminPanelRenderer.php line 42
     * Render the admin panel if activated
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && StateUtility::isActivatedForUser()
            && StateUtility::isActivatedInTypoScript()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelRenderer->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/fluidtypo3/vhs/Classes/Middleware/AssetInclusion.php line 19
class AssetInclusion implements MiddlewareInterface
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);

        $body = $response->getBody();
        $body->rewind();
        $contents = $body->getContents();
at FluidTYPO3\Vhs\Middleware\AssetInclusion->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-frontend/Classes/Middleware/PreviewSimulator.php line 87
                $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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-adminpanel/Classes/Middleware/SqlLogging.php line 53
                    break;
                }
            }
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\SqlLogging->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-adminpanel/Classes/Middleware/AdminPanelInitiator.php line 51
                MainController::class
            );
            $request = $adminPanelController->initialize($request);
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelInitiator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/apache-solr-for-typo3/solr/Classes/Middleware/PageIndexerInitialization.php line 62
            $pageIndexerRequestHandler = GeneralUtility::makeInstance(PageIndexerRequestHandler::class);
            $pageIndexerRequestHandler->initialize($pageIndexerRequest);
        }

        $response = $handler->handle($request);
        if ($pageIndexerRequestHandler instanceof PageIndexerRequestHandler && $pageIndexerRequest instanceof PageIndexerRequest) {
            $pageIndexResponse = $pageIndexerRequestHandler->shutdown($pageIndexerRequest);

            $body = new Stream('php://temp', 'rw');
at ApacheSolrForTypo3\Solr\Middleware\PageIndexerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/fluidtypo3/vhs/Classes/Middleware/RequestAvailability.php line 14
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $GLOBALS['TYPO3_REQUEST'] = $GLOBALS['TYPO3_REQUEST'] ?? $request;
        return $handler->handle($request);
    }
}
at FluidTYPO3\Vhs\Middleware\RequestAvailability->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/typo3/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-core/Classes/Http/MiddlewareDispatcher.php:128$4c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/vendor/typo3/cms-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/vendor/typo3/cms-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/vendor/typo3/cms-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/vendor/typo3/cms-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/public/index.php line 20
// Set up the application for the frontend
call_user_func(static function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /html/typo3/public/index.php line 21
call_user_func(static function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});