Whoops, looks like something went wrong.

Get help in the TYPO3 Wiki

If you need help solving this exception, you can have a look at the TYPO3 Wiki. 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 wiki page.

Find a solution for this exception in the TYPO3 wiki.

(1/1) #1257246929 TYPO3Fluid\Fluid\View\Exception\InvalidTemplateResourceException

Tried resolving a template file for controller action "Standard->3" in format ".html", but none of the paths contained the expected template file (Standard/3.html). The following paths were checked: /kunden/homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3/sysext/fluid_styled_content/Resources/Private/Templates/, /kunden/homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3conf/ext/gridelements/Resources/Private/Templates/, /kunden/homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3conf/ext/base/Resources/Private/View/GridElements/Templates/, /kunden/homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3conf/ext/base/Resources/Private/View/Content/Templates/, /kunden/homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3conf/ext/orbit/Resources/Private/Templates/, /kunden/homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3conf/ext/cards/Resources/Private/Templates/, , /kunden/homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3conf/ext/overlays/Resources/Private/Templates/, /kunden/homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3conf/ext/template_provider/Resources/Private/View/Cards/Templates/, /kunden/homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3conf/ext/template_provider/Resources/Private/View/Content/Templates/

in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/View/TemplatePaths.php line 598
        }
        $templateReference = $this->resolveTemplateFileForControllerAndActionAndFormat($controller, $action);
        if (!file_exists($templateReference) && $templateReference !== 'php://stdin') {
            $format = $this->getFormat();
            throw new InvalidTemplateResourceException(
                sprintf(
                    'Tried resolving a template file for controller action "%s->%s" in format ".%s", but none of the paths ' .
                    'contained the expected template file (%s). %s',
                    $controller,
at TYPO3Fluid\Fluid\View\TemplatePaths->getTemplateSource('Standard', '3')
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 391
        $actionName = $renderingContext->getControllerAction();
        $parsedTemplate = $templateParser->getOrParseAndStoreTemplate(
            $templatePaths->getTemplateIdentifier($controllerName, $actionName),
            function($parent, TemplatePaths $paths) use ($controllerName, $actionName, $renderingContext) {
                return $paths->getTemplateSource($controllerName, $actionName);
            }
        );
        if ($parsedTemplate->isCompiled()) {
            $parsedTemplate->addCompiledNamespaces($this->baseRenderingContext);
at TYPO3Fluid\Fluid\View\AbstractTemplateView->TYPO3Fluid\Fluid\View\{closure}(object(TYPO3Fluid\Fluid\Core\Parser\TemplateParser), object(TYPO3\CMS\Fluid\View\TemplatePaths))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/Core/Parser/TemplateParser.php line 209
     */
    protected function parseTemplateSource($templateIdentifier, $templateSourceClosure)
    {
        $parsedTemplate = $this->parse(
            $templateSourceClosure($this, $this->renderingContext->getTemplatePaths()),
            $templateIdentifier
        );
        $parsedTemplate->setIdentifier($templateIdentifier);
        $this->parsedTemplates[$templateIdentifier] = $parsedTemplate;
at TYPO3Fluid\Fluid\Core\Parser\TemplateParser->parseTemplateSource('Standard_action_3_3eb416223e9e69e6bb8ee19793911ad1ad2027d8', object(Closure))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/Core/Parser/TemplateParser.php line 189
            if ($parsedTemplate instanceof UncompilableTemplateInterface) {
                $parsedTemplate = $this->parseTemplateSource($templateIdentifier, $templateSourceClosure);
            }
        } else {
            $parsedTemplate = $this->parseTemplateSource($templateIdentifier, $templateSourceClosure);
            try {
                $compiler->store($templateIdentifier, $parsedTemplate);
            } catch (StopCompilingException $stop) {
                $this->renderingContext->getErrorHandler()->handleCompilerError($stop);
at TYPO3Fluid\Fluid\Core\Parser\TemplateParser->getOrParseAndStoreTemplate('Standard_action_3_3eb416223e9e69e6bb8ee19793911ad1ad2027d8', object(Closure))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 392
        $parsedTemplate = $templateParser->getOrParseAndStoreTemplate(
            $templatePaths->getTemplateIdentifier($controllerName, $actionName),
            function($parent, TemplatePaths $paths) use ($controllerName, $actionName, $renderingContext) {
                return $paths->getTemplateSource($controllerName, $actionName);
            }
        );
        if ($parsedTemplate->isCompiled()) {
            $parsedTemplate->addCompiledNamespaces($this->baseRenderingContext);
        }
at TYPO3Fluid\Fluid\View\AbstractTemplateView->getCurrentParsedTemplate()
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 179
            $actionName = ucfirst($actionName);
            $renderingContext->setControllerAction($actionName);
        }
        try {
            $parsedTemplate = $this->getCurrentParsedTemplate();
        } catch (PassthroughSourceException $error) {
            return $error->getSource();
        }

at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 358
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 107

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'GridElement', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'EXT:base/Resources/Private/View/GridElements/Templates/', 'EXT:base/Resources/Private/View/Content/Templates/', 'EXT:cards/Resources/Private/Templates/', 'EXT:orbit/Resources/Private/Templates/', 'EXT:overlays/Resources/Private/Templates/', 'EXT:template_provider/Resources/Private/View/Content/Templates/', 'EXT:template_provider/Resources/Private/View/Cards/Templates/', 'EXT:gridelements/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'EXT:base/Resources/Private/View/GridElements/Partials/', 'EXT:base/Resources/Private/View/Content/Partials/', 'EXT:cards/Resources/Private/Partials/', 'EXT:orbit/Resources/Private/Partials/', 'EXT:overlays/Resources/Private/Partials/', 'EXT:template_provider/Resources/Private/View/Content/Partials/', 'EXT:template_provider/Resources/Private/View/Cards/Partials/', 'EXT:ns_all_lightbox/Resources/Private/Partials/Lightbox/TYPO3/', 'EXT:gridelements/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'EXT:base/Resources/Private/View/GridElements/Layouts/', 'EXT:base/Resources/Private/View/Content/Layouts/', 'EXT:orbit/Resources/Private/Layouts/', 'EXT:overlays/Resources/Private/Layouts/', 'EXT:template_provider/Resources/Private/View/Content/Layouts/', 'EXT:template_provider/Resources/Private/View/Cards/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1024', 'height' => '768', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1'))), 'variables.' => array('pageUids' => '< lib.pageUids', 'contentUids' => '< lib.contentUids', 'currentLanguage' => 'TEXT', 'currentLanguage.' => array('data' => 'TSFE:config|config|language', 'override' => 'EN', 'override.' => array('ifEmpty.' => array('data' => 'TSFE:config|config|language'))), 'currentLanguageUid' => 'TEXT', 'currentLanguageUid.' => array('data' => 'TSFE:sys_language_uid'), 'pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title', 'wrap' => '| JtF'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'TSFE:tmpl|setup|sitetitle'), 'bodyClass' => 'COA', 'bodyClass.' => array('TEXT', '1.' => array('value' => 'page'), 'TEXT', '10.' => array('field' => 'alias // uid', 'noTrimWrap' => '| page-||'), 'TEXT', '20.' => array('data' => 'level:1', 'noTrimWrap' => '| level-||'), 'TEXT', '30.' => array('data' => 'TSFE:sys_language_uid', 'noTrimWrap' => '| lang-||'), 'TEXT', '40.' => array('data' => 'levelfield:-1, backend_layout_next_level, slide', 'override.' => array('field' => 'backend_layout'), 'substring' => '8', 'noTrimWrap' => '| tmpl-||'), 'TEXT', '50.' => array('field' => 'layout', 'noTrimWrap' => '| layout-||'))), 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children', 'options.' => array('resolveFlexFormData' => '0'))), 'JTF\\Base\\DataProcessing\\SettingsProcessor', '5.' => array('fieldName' => 'pi_flexform', 'as' => 'settings', 'extension' => 'gridelements', 'plugin' => 'pi1'))))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'GridElement', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'EXT:base/Resources/Private/View/GridElements/Templates/', 'EXT:base/Resources/Private/View/Content/Templates/', 'EXT:cards/Resources/Private/Templates/', 'EXT:orbit/Resources/Private/Templates/', 'EXT:overlays/Resources/Private/Templates/', 'EXT:template_provider/Resources/Private/View/Content/Templates/', 'EXT:template_provider/Resources/Private/View/Cards/Templates/', 'EXT:gridelements/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'EXT:base/Resources/Private/View/GridElements/Partials/', 'EXT:base/Resources/Private/View/Content/Partials/', 'EXT:cards/Resources/Private/Partials/', 'EXT:orbit/Resources/Private/Partials/', 'EXT:overlays/Resources/Private/Partials/', 'EXT:template_provider/Resources/Private/View/Content/Partials/', 'EXT:template_provider/Resources/Private/View/Cards/Partials/', 'EXT:ns_all_lightbox/Resources/Private/Partials/Lightbox/TYPO3/', 'EXT:gridelements/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'EXT:base/Resources/Private/View/GridElements/Layouts/', 'EXT:base/Resources/Private/View/Content/Layouts/', 'EXT:orbit/Resources/Private/Layouts/', 'EXT:overlays/Resources/Private/Layouts/', 'EXT:template_provider/Resources/Private/View/Content/Layouts/', 'EXT:template_provider/Resources/Private/View/Cards/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1024', 'height' => '768', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1'))), 'variables.' => array('pageUids' => '< lib.pageUids', 'contentUids' => '< lib.contentUids', 'currentLanguage' => 'TEXT', 'currentLanguage.' => array('data' => 'TSFE:config|config|language', 'override' => 'EN', 'override.' => array('ifEmpty.' => array('data' => 'TSFE:config|config|language'))), 'currentLanguageUid' => 'TEXT', 'currentLanguageUid.' => array('data' => 'TSFE:sys_language_uid'), 'pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title', 'wrap' => '| JtF'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'TSFE:tmpl|setup|sitetitle'), 'bodyClass' => 'COA', 'bodyClass.' => array('TEXT', '1.' => array('value' => 'page'), 'TEXT', '10.' => array('field' => 'alias // uid', 'noTrimWrap' => '| page-||'), 'TEXT', '20.' => array('data' => 'level:1', 'noTrimWrap' => '| level-||'), 'TEXT', '30.' => array('data' => 'TSFE:sys_language_uid', 'noTrimWrap' => '| lang-||'), 'TEXT', '40.' => array('data' => 'levelfield:-1, backend_layout_next_level, slide', 'override.' => array('field' => 'backend_layout'), 'substring' => '8', 'noTrimWrap' => '| tmpl-||'), 'TEXT', '50.' => array('field' => 'layout', 'noTrimWrap' => '| layout-||'))), 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children', 'options.' => array('resolveFlexFormData' => '0'))), 'JTF\\Base\\DataProcessing\\SettingsProcessor', '5.' => array('fieldName' => 'pi_flexform', 'as' => 'settings', 'extension' => 'gridelements', 'plugin' => 'pi1'))))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 731
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'GridElement', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'EXT:base/Resources/Private/View/GridElements/Templates/', 'EXT:base/Resources/Private/View/Content/Templates/', 'EXT:cards/Resources/Private/Templates/', 'EXT:orbit/Resources/Private/Templates/', 'EXT:overlays/Resources/Private/Templates/', 'EXT:template_provider/Resources/Private/View/Content/Templates/', 'EXT:template_provider/Resources/Private/View/Cards/Templates/', 'EXT:gridelements/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'EXT:base/Resources/Private/View/GridElements/Partials/', 'EXT:base/Resources/Private/View/Content/Partials/', 'EXT:cards/Resources/Private/Partials/', 'EXT:orbit/Resources/Private/Partials/', 'EXT:overlays/Resources/Private/Partials/', 'EXT:template_provider/Resources/Private/View/Content/Partials/', 'EXT:template_provider/Resources/Private/View/Cards/Partials/', 'EXT:ns_all_lightbox/Resources/Private/Partials/Lightbox/TYPO3/', 'EXT:gridelements/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'EXT:base/Resources/Private/View/GridElements/Layouts/', 'EXT:base/Resources/Private/View/Content/Layouts/', 'EXT:orbit/Resources/Private/Layouts/', 'EXT:overlays/Resources/Private/Layouts/', 'EXT:template_provider/Resources/Private/View/Content/Layouts/', 'EXT:template_provider/Resources/Private/View/Cards/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1024', 'height' => '768', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1'))), 'variables.' => array('pageUids' => '< lib.pageUids', 'contentUids' => '< lib.contentUids', 'currentLanguage' => 'TEXT', 'currentLanguage.' => array('data' => 'TSFE:config|config|language', 'override' => 'EN', 'override.' => array('ifEmpty.' => array('data' => 'TSFE:config|config|language'))), 'currentLanguageUid' => 'TEXT', 'currentLanguageUid.' => array('data' => 'TSFE:sys_language_uid'), 'pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title', 'wrap' => '| JtF'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'TSFE:tmpl|setup|sitetitle'), 'bodyClass' => 'COA', 'bodyClass.' => array('TEXT', '1.' => array('value' => 'page'), 'TEXT', '10.' => array('field' => 'alias // uid', 'noTrimWrap' => '| page-||'), 'TEXT', '20.' => array('data' => 'level:1', 'noTrimWrap' => '| level-||'), 'TEXT', '30.' => array('data' => 'TSFE:sys_language_uid', 'noTrimWrap' => '| lang-||'), 'TEXT', '40.' => array('data' => 'levelfield:-1, backend_layout_next_level, slide', 'override.' => array('field' => 'backend_layout'), 'substring' => '8', 'noTrimWrap' => '| tmpl-||'), 'TEXT', '50.' => array('field' => 'layout', 'noTrimWrap' => '| layout-||'))), 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children', 'options.' => array('resolveFlexFormData' => '0'))), 'JTF\\Base\\DataProcessing\\SettingsProcessor', '5.' => array('fieldName' => 'pi_flexform', 'as' => 'settings', 'extension' => 'gridelements', 'plugin' => 'pi1'))), 'lib.contentElement')
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 713
                list($name, $conf) = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'GridElement', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'EXT:base/Resources/Private/View/GridElements/Templates/', 'EXT:base/Resources/Private/View/Content/Templates/', 'EXT:cards/Resources/Private/Templates/', 'EXT:orbit/Resources/Private/Templates/', 'EXT:overlays/Resources/Private/Templates/', 'EXT:template_provider/Resources/Private/View/Content/Templates/', 'EXT:template_provider/Resources/Private/View/Cards/Templates/', 'EXT:gridelements/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'EXT:base/Resources/Private/View/GridElements/Partials/', 'EXT:base/Resources/Private/View/Content/Partials/', 'EXT:cards/Resources/Private/Partials/', 'EXT:orbit/Resources/Private/Partials/', 'EXT:overlays/Resources/Private/Partials/', 'EXT:template_provider/Resources/Private/View/Content/Partials/', 'EXT:template_provider/Resources/Private/View/Cards/Partials/', 'EXT:ns_all_lightbox/Resources/Private/Partials/Lightbox/TYPO3/', 'EXT:gridelements/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'EXT:base/Resources/Private/View/GridElements/Layouts/', 'EXT:base/Resources/Private/View/Content/Layouts/', 'EXT:orbit/Resources/Private/Layouts/', 'EXT:overlays/Resources/Private/Layouts/', 'EXT:template_provider/Resources/Private/View/Content/Layouts/', 'EXT:template_provider/Resources/Private/View/Cards/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1024', 'height' => '768', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1'))), 'variables.' => array('pageUids' => '< lib.pageUids', 'contentUids' => '< lib.contentUids', 'currentLanguage' => 'TEXT', 'currentLanguage.' => array('data' => 'TSFE:config|config|language', 'override' => 'EN', 'override.' => array('ifEmpty.' => array('data' => 'TSFE:config|config|language'))), 'currentLanguageUid' => 'TEXT', 'currentLanguageUid.' => array('data' => 'TSFE:sys_language_uid'), 'pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title', 'wrap' => '| JtF'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'TSFE:tmpl|setup|sitetitle'), 'bodyClass' => 'COA', 'bodyClass.' => array('TEXT', '1.' => array('value' => 'page'), 'TEXT', '10.' => array('field' => 'alias // uid', 'noTrimWrap' => '| page-||'), 'TEXT', '20.' => array('data' => 'level:1', 'noTrimWrap' => '| level-||'), 'TEXT', '30.' => array('data' => 'TSFE:sys_language_uid', 'noTrimWrap' => '| lang-||'), 'TEXT', '40.' => array('data' => 'levelfield:-1, backend_layout_next_level, slide', 'override.' => array('field' => 'backend_layout'), 'substring' => '8', 'noTrimWrap' => '| tmpl-||'), 'TEXT', '50.' => array('field' => 'layout', 'noTrimWrap' => '| layout-||'))), 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children', 'options.' => array('resolveFlexFormData' => '0'))), 'JTF\\Base\\DataProcessing\\SettingsProcessor', '5.' => array('fieldName' => 'pi_flexform', 'as' => 'settings', 'extension' => 'gridelements', 'plugin' => 'pi1'))), 'gridelements_pi1')
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 46
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('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')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'replacement.' => array('1.' => array('search' => 'http://[backend]/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '3.' => array('search' => '[br]', 'replace' => '<br />'), '4.' => array('search' => '[space]', 'replace.' => array('char' => '32')), '5.' => array('search' => '[trenner]', 'replace.' => array('char' => '&shy;')), '6.' => array('search' => '[check]', 'replace' => '&check;'), '11.' => array('search' => '[currentyear]', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '21.' => array('search' => '/\\[sup\\](.*?)\\[\\/sup\\]/', 'replace' => '<sup>\\1</sup>', 'useRegExp' => '1'), '22.' => array('search' => '/\\[sub\\](.*?)\\[\\/sub\\]/', 'replace' => '<sub>\\1</sub>', 'useRegExp' => '1'), '23.' => array('search' => '#(®|™|©)#i', 'replace' => '<sup>${1}</sup>', 'useRegExp' => '1'), '24.' => array('search' => '/\\[c\\](.*?)\\[\\/c\\]/', 'replace' => '<span class=“colored”>\\1</span>', 'useRegExp' => '1'), '25.' => array('search' => '/\\[strong\\](.*?)\\[\\/strong\\]/', 'replace' => '<strong>\\1</strong>', 'useRegExp' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1500', 'maxGalleryWidthInText' => '1500', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'vendorName' => 'Reelworx'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'base_administration' => 'USER', 'base_administration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Base', 'pluginName' => 'administration', 'vendorName' => 'JTF'), 'base_tsobject' => 'USER', 'base_tsobject.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Base', 'pluginName' => 'tsobject', 'vendorName' => 'JTF'), 'cookiecontrol_main' => 'USER', 'cookiecontrol_main.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Cookiecontrol', 'pluginName' => 'Main', 'vendorName' => 'JTF'), 'kmaplaner_date' => 'USER', 'kmaplaner_date.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Date', 'vendorName' => 'JTF'), 'kmaplaner_honorar' => 'USER', 'kmaplaner_honorar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Honorar', 'vendorName' => 'JTF'), 'kmaplaner_plan' => 'USER', 'kmaplaner_plan.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Plan', 'vendorName' => 'JTF'), 'kmaplaner_table' => 'USER', 'kmaplaner_table.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Table', 'vendorName' => 'JTF'), 'orbit_orbit' => 'USER', 'orbit_orbit.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Orbit', 'pluginName' => 'orbit', 'vendorName' => 'JTF'), 'USER', '9.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'), 'tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1500', 'maxGalleryWidthInText' => '1500', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1500', 'maxGalleryWidthInText' => '1500', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework', 'vendorName' => 'TYPO3\\CMS')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children', 'options.' => array('resolveFlexFormData' => '0'))), 'JTF\\Base\\DataProcessing\\SettingsProcessor', '5.' => array('fieldName' => 'pi_flexform', 'as' => 'settings', 'extension' => 'gridelements', 'plugin' => 'pi1'))), 'card' => '< lib.contentElement', 'card.' => array('templateName' => 'Card', 'dataProcessing.' => array('JTF\\Base\\DataProcessing\\ContentFlexformProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'assets'))), 'orbit' => '< lib.contentElement', 'orbit.' => array('templateName' => 'Orbit', 'dataProcessing.' => array('JTF\\Orbit\\DataProcessing\\SettingsProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '40.' => array('as' => 'images', 'references.' => array('fieldName' => 'assets')))), 'overlay' => '< lib.contentElement', 'overlay.' => array('templateName' => 'Overlay', 'dataProcessing.' => array('JTF\\Base\\DataProcessing\\ContentFlexformProcessor')), 'menu.' => array('20.' => array('11.' => array('1.' => array('CUR.' => array('wrapItemAndSub' => '<li class="menu-lvl-1 active">|</li>'))), '12.' => array('1.' => array('CUR.' => array('wrapItemAndSub' => '<li class="menu-lvl-1 active">|</li>')), '2.' => array('CUR.' => array('wrapItemAndSub' => '<li class="menu-lvl-1 active">|</li>'), 'NO.' => array('wrapItemAndSub' => '<li class="menu-lvl-2">|</li>'))), 'COA', '13.' => array('TEXT', '10.' => array('data' => 'navtitle : -2', 'insertData' => '1', 'typolink.' => array('parameter.' => array('data' => 'leveluid : -2'), 'wrap' => 'Zur übergeordneten Seite: "<span>|</span>"', 'wrap2' => '|', 'wrap2.' => array('data' => 'LLL:EXT:jtf_cms_ext/general.xml:labeltitle'), 'ATagBeforeWrap' => '1', 'ATagParams' => 'class="link-back"')), 'wrap' => ''), 'COA', '22.' => array('TEXT', '10.' => array('value' => '<img width="63" height="40" src="fileadmin/flags/de.png" />', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&L=0', 'ATagParams' => 'class="menu-lang-de"'), 'wrap' => '<div class="cell shrink">|</div>'), 'TEXT', '20.' => array('value' => '<img width="63" height="40" src="fileadmin/flags/en.png" alt="english version - not yet available" title="english" />', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&L=1', 'ATagParams' => 'class="menu-lang-en"'), 'wrap' => '<div class="cell shrink">|</div>'), 'TEXT', '30.' => array('value' => '<img width="63" height="40" src="fileadmin/flags/tu_disabled.png" alt="türk versiyon" title="türk - henüz mevcut degildir" />', 'wrap' => '<div class="cell shrink">|</div>'), 'wrap' => '<div class="grid-x grid-margin-x align-justify">|</div>'))), 'slider.' => array('dataProcessing.' => array())))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'replacement.' => array('1.' => array('search' => 'http://[backend]/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '3.' => array('search' => '[br]', 'replace' => '<br />'), '4.' => array('search' => '[space]', 'replace.' => array('char' => '32')), '5.' => array('search' => '[trenner]', 'replace.' => array('char' => '&shy;')), '6.' => array('search' => '[check]', 'replace' => '&check;'), '11.' => array('search' => '[currentyear]', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '21.' => array('search' => '/\\[sup\\](.*?)\\[\\/sup\\]/', 'replace' => '<sup>\\1</sup>', 'useRegExp' => '1'), '22.' => array('search' => '/\\[sub\\](.*?)\\[\\/sub\\]/', 'replace' => '<sub>\\1</sub>', 'useRegExp' => '1'), '23.' => array('search' => '#(®|™|©)#i', 'replace' => '<sup>${1}</sup>', 'useRegExp' => '1'), '24.' => array('search' => '/\\[c\\](.*?)\\[\\/c\\]/', 'replace' => '<span class=“colored”>\\1</span>', 'useRegExp' => '1'), '25.' => array('search' => '/\\[strong\\](.*?)\\[\\/strong\\]/', 'replace' => '<strong>\\1</strong>', 'useRegExp' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1500', 'maxGalleryWidthInText' => '1500', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'vendorName' => 'Reelworx'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'base_administration' => 'USER', 'base_administration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Base', 'pluginName' => 'administration', 'vendorName' => 'JTF'), 'base_tsobject' => 'USER', 'base_tsobject.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Base', 'pluginName' => 'tsobject', 'vendorName' => 'JTF'), 'cookiecontrol_main' => 'USER', 'cookiecontrol_main.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Cookiecontrol', 'pluginName' => 'Main', 'vendorName' => 'JTF'), 'kmaplaner_date' => 'USER', 'kmaplaner_date.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Date', 'vendorName' => 'JTF'), 'kmaplaner_honorar' => 'USER', 'kmaplaner_honorar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Honorar', 'vendorName' => 'JTF'), 'kmaplaner_plan' => 'USER', 'kmaplaner_plan.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Plan', 'vendorName' => 'JTF'), 'kmaplaner_table' => 'USER', 'kmaplaner_table.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Table', 'vendorName' => 'JTF'), 'orbit_orbit' => 'USER', 'orbit_orbit.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Orbit', 'pluginName' => 'orbit', 'vendorName' => 'JTF'), 'USER', '9.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'), 'tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1500', 'maxGalleryWidthInText' => '1500', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1500', 'maxGalleryWidthInText' => '1500', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework', 'vendorName' => 'TYPO3\\CMS')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children', 'options.' => array('resolveFlexFormData' => '0'))), 'JTF\\Base\\DataProcessing\\SettingsProcessor', '5.' => array('fieldName' => 'pi_flexform', 'as' => 'settings', 'extension' => 'gridelements', 'plugin' => 'pi1'))), 'card' => '< lib.contentElement', 'card.' => array('templateName' => 'Card', 'dataProcessing.' => array('JTF\\Base\\DataProcessing\\ContentFlexformProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'assets'))), 'orbit' => '< lib.contentElement', 'orbit.' => array('templateName' => 'Orbit', 'dataProcessing.' => array('JTF\\Orbit\\DataProcessing\\SettingsProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '40.' => array('as' => 'images', 'references.' => array('fieldName' => 'assets')))), 'overlay' => '< lib.contentElement', 'overlay.' => array('templateName' => 'Overlay', 'dataProcessing.' => array('JTF\\Base\\DataProcessing\\ContentFlexformProcessor')), 'menu.' => array('20.' => array('11.' => array('1.' => array('CUR.' => array('wrapItemAndSub' => '<li class="menu-lvl-1 active">|</li>'))), '12.' => array('1.' => array('CUR.' => array('wrapItemAndSub' => '<li class="menu-lvl-1 active">|</li>')), '2.' => array('CUR.' => array('wrapItemAndSub' => '<li class="menu-lvl-1 active">|</li>'), 'NO.' => array('wrapItemAndSub' => '<li class="menu-lvl-2">|</li>'))), 'COA', '13.' => array('TEXT', '10.' => array('data' => 'navtitle : -2', 'insertData' => '1', 'typolink.' => array('parameter.' => array('data' => 'leveluid : -2'), 'wrap' => 'Zur übergeordneten Seite: "<span>|</span>"', 'wrap2' => '|', 'wrap2.' => array('data' => 'LLL:EXT:jtf_cms_ext/general.xml:labeltitle'), 'ATagBeforeWrap' => '1', 'ATagParams' => 'class="link-back"')), 'wrap' => ''), 'COA', '22.' => array('TEXT', '10.' => array('value' => '<img width="63" height="40" src="fileadmin/flags/de.png" />', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&L=0', 'ATagParams' => 'class="menu-lang-de"'), 'wrap' => '<div class="cell shrink">|</div>'), 'TEXT', '20.' => array('value' => '<img width="63" height="40" src="fileadmin/flags/en.png" alt="english version - not yet available" title="english" />', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&L=1', 'ATagParams' => 'class="menu-lang-en"'), 'wrap' => '<div class="cell shrink">|</div>'), 'TEXT', '30.' => array('value' => '<img width="63" height="40" src="fileadmin/flags/tu_disabled.png" alt="türk versiyon" title="türk - henüz mevcut degildir" />', 'wrap' => '<div class="cell shrink">|</div>'), 'wrap' => '<div class="grid-x grid-margin-x align-justify">|</div>'))), 'slider.' => array('dataProcessing.' => array())))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 731
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('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')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'replacement.' => array('1.' => array('search' => 'http://[backend]/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '3.' => array('search' => '[br]', 'replace' => '<br />'), '4.' => array('search' => '[space]', 'replace.' => array('char' => '32')), '5.' => array('search' => '[trenner]', 'replace.' => array('char' => '&shy;')), '6.' => array('search' => '[check]', 'replace' => '&check;'), '11.' => array('search' => '[currentyear]', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '21.' => array('search' => '/\\[sup\\](.*?)\\[\\/sup\\]/', 'replace' => '<sup>\\1</sup>', 'useRegExp' => '1'), '22.' => array('search' => '/\\[sub\\](.*?)\\[\\/sub\\]/', 'replace' => '<sub>\\1</sub>', 'useRegExp' => '1'), '23.' => array('search' => '#(®|™|©)#i', 'replace' => '<sup>${1}</sup>', 'useRegExp' => '1'), '24.' => array('search' => '/\\[c\\](.*?)\\[\\/c\\]/', 'replace' => '<span class=“colored”>\\1</span>', 'useRegExp' => '1'), '25.' => array('search' => '/\\[strong\\](.*?)\\[\\/strong\\]/', 'replace' => '<strong>\\1</strong>', 'useRegExp' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1500', 'maxGalleryWidthInText' => '1500', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'vendorName' => 'Reelworx'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'base_administration' => 'USER', 'base_administration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Base', 'pluginName' => 'administration', 'vendorName' => 'JTF'), 'base_tsobject' => 'USER', 'base_tsobject.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Base', 'pluginName' => 'tsobject', 'vendorName' => 'JTF'), 'cookiecontrol_main' => 'USER', 'cookiecontrol_main.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Cookiecontrol', 'pluginName' => 'Main', 'vendorName' => 'JTF'), 'kmaplaner_date' => 'USER', 'kmaplaner_date.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Date', 'vendorName' => 'JTF'), 'kmaplaner_honorar' => 'USER', 'kmaplaner_honorar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Honorar', 'vendorName' => 'JTF'), 'kmaplaner_plan' => 'USER', 'kmaplaner_plan.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Plan', 'vendorName' => 'JTF'), 'kmaplaner_table' => 'USER', 'kmaplaner_table.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Table', 'vendorName' => 'JTF'), 'orbit_orbit' => 'USER', 'orbit_orbit.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Orbit', 'pluginName' => 'orbit', 'vendorName' => 'JTF'), 'USER', '9.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'), 'tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1500', 'maxGalleryWidthInText' => '1500', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1500', 'maxGalleryWidthInText' => '1500', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework', 'vendorName' => 'TYPO3\\CMS')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children', 'options.' => array('resolveFlexFormData' => '0'))), 'JTF\\Base\\DataProcessing\\SettingsProcessor', '5.' => array('fieldName' => 'pi_flexform', 'as' => 'settings', 'extension' => 'gridelements', 'plugin' => 'pi1'))), 'card' => '< lib.contentElement', 'card.' => array('templateName' => 'Card', 'dataProcessing.' => array('JTF\\Base\\DataProcessing\\ContentFlexformProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'assets'))), 'orbit' => '< lib.contentElement', 'orbit.' => array('templateName' => 'Orbit', 'dataProcessing.' => array('JTF\\Orbit\\DataProcessing\\SettingsProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '40.' => array('as' => 'images', 'references.' => array('fieldName' => 'assets')))), 'overlay' => '< lib.contentElement', 'overlay.' => array('templateName' => 'Overlay', 'dataProcessing.' => array('JTF\\Base\\DataProcessing\\ContentFlexformProcessor')), 'menu.' => array('20.' => array('11.' => array('1.' => array('CUR.' => array('wrapItemAndSub' => '<li class="menu-lvl-1 active">|</li>'))), '12.' => array('1.' => array('CUR.' => array('wrapItemAndSub' => '<li class="menu-lvl-1 active">|</li>')), '2.' => array('CUR.' => array('wrapItemAndSub' => '<li class="menu-lvl-1 active">|</li>'), 'NO.' => array('wrapItemAndSub' => '<li class="menu-lvl-2">|</li>'))), 'COA', '13.' => array('TEXT', '10.' => array('data' => 'navtitle : -2', 'insertData' => '1', 'typolink.' => array('parameter.' => array('data' => 'leveluid : -2'), 'wrap' => 'Zur übergeordneten Seite: "<span>|</span>"', 'wrap2' => '|', 'wrap2.' => array('data' => 'LLL:EXT:jtf_cms_ext/general.xml:labeltitle'), 'ATagBeforeWrap' => '1', 'ATagParams' => 'class="link-back"')), 'wrap' => ''), 'COA', '22.' => array('TEXT', '10.' => array('value' => '<img width="63" height="40" src="fileadmin/flags/de.png" />', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&L=0', 'ATagParams' => 'class="menu-lang-de"'), 'wrap' => '<div class="cell shrink">|</div>'), 'TEXT', '20.' => array('value' => '<img width="63" height="40" src="fileadmin/flags/en.png" alt="english version - not yet available" title="english" />', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&L=1', 'ATagParams' => 'class="menu-lang-en"'), 'wrap' => '<div class="cell shrink">|</div>'), 'TEXT', '30.' => array('value' => '<img width="63" height="40" src="fileadmin/flags/tu_disabled.png" alt="türk versiyon" title="türk - henüz mevcut degildir" />', 'wrap' => '<div class="cell shrink">|</div>'), 'wrap' => '<div class="grid-x grid-margin-x align-justify">|</div>'))), 'slider.' => array('dataProcessing.' => array())), 'tt_content')
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 713
                list($name, $conf) = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('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')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'replacement.' => array('1.' => array('search' => 'http://[backend]/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '3.' => array('search' => '[br]', 'replace' => '<br />'), '4.' => array('search' => '[space]', 'replace.' => array('char' => '32')), '5.' => array('search' => '[trenner]', 'replace.' => array('char' => '&shy;')), '6.' => array('search' => '[check]', 'replace' => '&check;'), '11.' => array('search' => '[currentyear]', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '21.' => array('search' => '/\\[sup\\](.*?)\\[\\/sup\\]/', 'replace' => '<sup>\\1</sup>', 'useRegExp' => '1'), '22.' => array('search' => '/\\[sub\\](.*?)\\[\\/sub\\]/', 'replace' => '<sub>\\1</sub>', 'useRegExp' => '1'), '23.' => array('search' => '#(®|™|©)#i', 'replace' => '<sup>${1}</sup>', 'useRegExp' => '1'), '24.' => array('search' => '/\\[c\\](.*?)\\[\\/c\\]/', 'replace' => '<span class=“colored”>\\1</span>', 'useRegExp' => '1'), '25.' => array('search' => '/\\[strong\\](.*?)\\[\\/strong\\]/', 'replace' => '<strong>\\1</strong>', 'useRegExp' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1500', 'maxGalleryWidthInText' => '1500', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'vendorName' => 'Reelworx'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'base_administration' => 'USER', 'base_administration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Base', 'pluginName' => 'administration', 'vendorName' => 'JTF'), 'base_tsobject' => 'USER', 'base_tsobject.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Base', 'pluginName' => 'tsobject', 'vendorName' => 'JTF'), 'cookiecontrol_main' => 'USER', 'cookiecontrol_main.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Cookiecontrol', 'pluginName' => 'Main', 'vendorName' => 'JTF'), 'kmaplaner_date' => 'USER', 'kmaplaner_date.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Date', 'vendorName' => 'JTF'), 'kmaplaner_honorar' => 'USER', 'kmaplaner_honorar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Honorar', 'vendorName' => 'JTF'), 'kmaplaner_plan' => 'USER', 'kmaplaner_plan.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Plan', 'vendorName' => 'JTF'), 'kmaplaner_table' => 'USER', 'kmaplaner_table.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kmaplaner', 'pluginName' => 'Table', 'vendorName' => 'JTF'), 'orbit_orbit' => 'USER', 'orbit_orbit.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Orbit', 'pluginName' => 'orbit', 'vendorName' => 'JTF'), 'USER', '9.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'), 'tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1500', 'maxGalleryWidthInText' => '1500', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1500', 'maxGalleryWidthInText' => '1500', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework', 'vendorName' => 'TYPO3\\CMS')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children', 'options.' => array('resolveFlexFormData' => '0'))), 'JTF\\Base\\DataProcessing\\SettingsProcessor', '5.' => array('fieldName' => 'pi_flexform', 'as' => 'settings', 'extension' => 'gridelements', 'plugin' => 'pi1'))), 'card' => '< lib.contentElement', 'card.' => array('templateName' => 'Card', 'dataProcessing.' => array('JTF\\Base\\DataProcessing\\ContentFlexformProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'assets'))), 'orbit' => '< lib.contentElement', 'orbit.' => array('templateName' => 'Orbit', 'dataProcessing.' => array('JTF\\Orbit\\DataProcessing\\SettingsProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '40.' => array('as' => 'images', 'references.' => array('fieldName' => 'assets')))), 'overlay' => '< lib.contentElement', 'overlay.' => array('templateName' => 'Overlay', 'dataProcessing.' => array('JTF\\Base\\DataProcessing\\ContentFlexformProcessor')), 'menu.' => array('20.' => array('11.' => array('1.' => array('CUR.' => array('wrapItemAndSub' => '<li class="menu-lvl-1 active">|</li>'))), '12.' => array('1.' => array('CUR.' => array('wrapItemAndSub' => '<li class="menu-lvl-1 active">|</li>')), '2.' => array('CUR.' => array('wrapItemAndSub' => '<li class="menu-lvl-1 active">|</li>'), 'NO.' => array('wrapItemAndSub' => '<li class="menu-lvl-2">|</li>'))), 'COA', '13.' => array('TEXT', '10.' => array('data' => 'navtitle : -2', 'insertData' => '1', 'typolink.' => array('parameter.' => array('data' => 'leveluid : -2'), 'wrap' => 'Zur übergeordneten Seite: "<span>|</span>"', 'wrap2' => '|', 'wrap2.' => array('data' => 'LLL:EXT:jtf_cms_ext/general.xml:labeltitle'), 'ATagBeforeWrap' => '1', 'ATagParams' => 'class="link-back"')), 'wrap' => ''), 'COA', '22.' => array('TEXT', '10.' => array('value' => '<img width="63" height="40" src="fileadmin/flags/de.png" />', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&L=0', 'ATagParams' => 'class="menu-lang-de"'), 'wrap' => '<div class="cell shrink">|</div>'), 'TEXT', '20.' => array('value' => '<img width="63" height="40" src="fileadmin/flags/en.png" alt="english version - not yet available" title="english" />', 'typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'additionalParams' => '&L=1', 'ATagParams' => 'class="menu-lang-en"'), 'wrap' => '<div class="cell shrink">|</div>'), 'TEXT', '30.' => array('value' => '<img width="63" height="40" src="fileadmin/flags/tu_disabled.png" alt="türk versiyon" title="türk - henüz mevcut degildir" />', 'wrap' => '<div class="cell shrink">|</div>'), 'wrap' => '<div class="grid-x grid-margin-x align-justify">|</div>'))), 'slider.' => array('dataProcessing.' => array())), '')
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/RecordsContentObject.php line 117
                            $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                            $GLOBALS['TSFE']->currentRecord = $val['table'] . ':' . $val['id'];
                            $this->cObj->lastChanged($row['tstamp']);
                            $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' => 908, 'dontCheckPid' => 1))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\RecordsContentObject), array('tables' => 'tt_content', 'source' => 908, 'dontCheckPid' => 1))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 731
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('RECORDS', array('tables' => 'tt_content', 'source' => 908, 'dontCheckPid' => 1))
in /homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3conf/ext/vhs/Classes/ViewHelpers/Content/AbstractContentViewHelper.php line 236
        // It's should not be allowed to do this again then!!
        if (false === empty($parent)) {
            ++$GLOBALS['TSFE']->recordRegister[$parent];
        }
        $html = $GLOBALS['TSFE']->cObj->cObjGetSingle('RECORDS', $conf);

        $GLOBALS['TSFE']->currentRecord = $parent;
        if (false === empty($parent)) {
            --$GLOBALS['TSFE']->recordRegister[$parent];
at FluidTYPO3\Vhs\ViewHelpers\Content\AbstractContentViewHelper::renderRecord(array('uid' => 908, 'pid' => 78, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 549, 'tstamp' => 1389661569, 'crdate' => 1389661293, 'cruser_id' => 1, 'hidden' => 0, 'sorting' => 5120, 'CType' => 'gridelements_pi1', 'header' => 'Layout', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 2, 'imagecaption' => null, 'imagecols' => 1, 'imageborder' => 0, 'media' => 0, 'layout' => '0', 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'imagecaption_position' => '', 'image_link' => null, 'image_zoom' => 0, 'image_noRows' => 0, 'image_effects' => 0, 'image_compression' => 0, 'altText' => null, 'titleText' => null, 'longdescURL' => null, 'header_layout' => 'hidden', 'text_align' => '', 'text_face' => 0, 'text_size' => 0, 'text_color' => 0, 'text_properties' => 0, 'menu_type' => '0', 'list_type' => '', 'table_border' => 0, 'table_cellspacing' => 0, 'table_cellpadding' => 0, 'table_bgColor' => 0, 'select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'filelink_size' => 0, 'section_frame' => 'ce', 'date' => 0, 'splash_layout' => '0', 'multimedia' => '', 'image_frames' => 0, 'recursive' => 0, 'imageheight' => 0, 'rte_enabled' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'l18n_parent' => 0, 'l18n_diffsource' => 'a:1:{s:6:"hidden";N;}', 'target' => '', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'keywords' => null, 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '3', 'tx_gridelements_children' => 9, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'tx_jtfimgslide_images' => 0, 'rowDescription' => null, 'editlock' => 0, 'l10n_source' => 0, 'l10n_state' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'file_collections' => null, 'filelink_sorting' => '', 'filelink_sorting_direction' => '', 'selected_categories' => null, 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bodytext_size' => '', 'bodytext_align' => '', 'bodytext_position' => '', 'color' => '', 'bg_color' => '', 'content_link' => '0', 'tx_slider_slides' => 0, 'slider_slides' => 0, 'categories' => 0, 'tx_news_related_news' => 0, 'tx_jhmagnificpopup_irre_parentid' => 0))
in /homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3conf/ext/vhs/Classes/ViewHelpers/Content/AbstractContentViewHelper.php line 203
            $this->contentObject->cObjGetSingle('LOAD_REGISTER', $this->arguments['loadRegister']);
        }
        $elements = [];
        foreach ($rows as $row) {
            array_push($elements, static::renderRecord($row));
        }
        if (false === empty($this->arguments['loadRegister'])) {
            $this->contentObject->cObjGetSingle('RESTORE_REGISTER', '');
        }
at FluidTYPO3\Vhs\ViewHelpers\Content\AbstractContentViewHelper->getRenderedRecords(array(array('uid' => 908, 'pid' => 78, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 549, 'tstamp' => 1389661569, 'crdate' => 1389661293, 'cruser_id' => 1, 'hidden' => 0, 'sorting' => 5120, 'CType' => 'gridelements_pi1', 'header' => 'Layout', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 2, 'imagecaption' => null, 'imagecols' => 1, 'imageborder' => 0, 'media' => 0, 'layout' => '0', 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'imagecaption_position' => '', 'image_link' => null, 'image_zoom' => 0, 'image_noRows' => 0, 'image_effects' => 0, 'image_compression' => 0, 'altText' => null, 'titleText' => null, 'longdescURL' => null, 'header_layout' => 'hidden', 'text_align' => '', 'text_face' => 0, 'text_size' => 0, 'text_color' => 0, 'text_properties' => 0, 'menu_type' => '0', 'list_type' => '', 'table_border' => 0, 'table_cellspacing' => 0, 'table_cellpadding' => 0, 'table_bgColor' => 0, 'select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'filelink_size' => 0, 'section_frame' => 'ce', 'date' => 0, 'splash_layout' => '0', 'multimedia' => '', 'image_frames' => 0, 'recursive' => 0, 'imageheight' => 0, 'rte_enabled' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'l18n_parent' => 0, 'l18n_diffsource' => 'a:1:{s:6:"hidden";N;}', 'target' => '', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'keywords' => null, 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '3', 'tx_gridelements_children' => 9, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'tx_jtfimgslide_images' => 0, 'rowDescription' => null, 'editlock' => 0, 'l10n_source' => 0, 'l10n_state' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'file_collections' => null, 'filelink_sorting' => '', 'filelink_sorting_direction' => '', 'selected_categories' => null, 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bodytext_size' => '', 'bodytext_align' => '', 'bodytext_position' => '', 'color' => '', 'bg_color' => '', 'content_link' => '0', 'tx_slider_slides' => 0, 'slider_slides' => 0, 'categories' => 0, 'tx_news_related_news' => 0, 'tx_jhmagnificpopup_irre_parentid' => 0)))
in /homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3conf/ext/vhs/Classes/ViewHelpers/Content/AbstractContentViewHelper.php line 110
            $contentRecords = $this->getSlideRecords($pageUid, $limit);
        }

        if (true === (boolean) $this->arguments['render']) {
            $contentRecords = $this->getRenderedRecords($contentRecords);
        }

        return $contentRecords;
    }
at FluidTYPO3\Vhs\ViewHelpers\Content\AbstractContentViewHelper->getContentRecords()
in /homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3conf/ext/vhs/Classes/ViewHelpers/Content/RenderViewHelper.php line 49
        if ('BE' === TYPO3_MODE) {
            return '';
        }

        $content = $this->getContentRecords();
        if (false === $this->hasArgument('as')) {
            return implode(LF, $content);
        }

at FluidTYPO3\Vhs\ViewHelpers\Content\RenderViewHelper->render()
at call_user_func(array(object(FluidTYPO3\Vhs\ViewHelpers\Content\RenderViewHelper), 'render'))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 262
     */
    protected function callRenderMethod()
    {
        if (method_exists($this, 'render')) {
            return call_user_func([$this, 'render']);
        }
        if ((new \ReflectionMethod($this, 'renderStatic'))->getDeclaringClass()->getName() !== AbstractViewHelper::class) {
            // Method is safe to call - will not recurse through ViewHelperInvoker via the default
            // implementation of renderStatic() on this class.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->callRenderMethod()
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 250
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 79
            }
            $viewHelper->setRenderingContext($renderingContext);
            $viewHelper->setArguments($evaluatedArguments);
            $viewHelper->handleAdditionalArguments($undeclaredArguments);
            return $viewHelper->initializeArgumentsAndRender();
        } catch (Exception $error) {
            return $renderingContext->getErrorHandler()->handleViewHelperError($error);
        }
    }
at TYPO3Fluid\Fluid\Core\ViewHelper\ViewHelperInvoker->invoke('FluidTYPO3\\Vhs\\ViewHelpers\\Content\\RenderViewHelper', array('column' => 0, 'order' => 'sorting', 'sortDirection' => 'ASC', 'pageUid' => 0, 'contentUids' => null, 'sectionIndexOnly' => false, 'loadRegister' => null, 'render' => true, 'hideUntranslated' => false, 'limit' => null, 'slide' => 0, 'slideCollect' => 0, 'slideCollectReverse' => false, 'as' => null), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext), object(Closure))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 522
     */
    public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
    {
        $viewHelperClassName = get_called_class();
        return $renderingContext->getViewHelperInvoker()->invoke($viewHelperClassName, $arguments, $renderingContext, $renderChildrenClosure);
    }

    /**
     * Save the associated ViewHelper node in a static public class variable.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper::renderStatic(array('column' => 0, 'order' => 'sorting', 'sortDirection' => 'ASC', 'pageUid' => 0, 'contentUids' => null, 'sectionIndexOnly' => false, 'loadRegister' => null, 'render' => true, 'hideUntranslated' => false, 'limit' => null, 'slide' => 0, 'slideCollect' => 0, 'slideCollectReverse' => false, 'as' => null), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3temp/var/cache/code/fluid_template/partial_PageBody_88665fb91708378f2d5914d2bfb8978ea820b781.php line 80
$arguments4['slideCollectReverse'] = false;
$arguments4['as'] = NULL;
$arguments4['column'] = 0;

$output3 .= FluidTYPO3\Vhs\ViewHelpers\Content\RenderViewHelper::renderStatic($arguments4, $renderChildrenClosure5, $renderingContext);

$output3 .= '
     ';
// Rendering ViewHelper TYPO3Fluid\Fluid\ViewHelpers\CommentViewHelper
at partial_PageBody_88665fb91708378f2d5914d2bfb8978ea820b781->{closure}()
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 55
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', $childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic(array(), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3temp/var/cache/code/fluid_template/partial_PageBody_88665fb91708378f2d5914d2bfb8978ea820b781.php line 175
return $output3;
};
$arguments1 = array();

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

$output0 .= '

';
at partial_PageBody_88665fb91708378f2d5914d2bfb8978ea820b781->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 329
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
        return $output;
    }
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial('PageBody', null, array('data' => array('uid' => 78, 'pid' => 28, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1486501469, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 1, 'perms_groupid' => 7, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1388867063, 'cruser_id' => 1, 'hidden' => 0, 'title' => 'Deine Stimme zählt!', 'doktype' => 1, 'TSconfig' => '', 'storage_pid' => 0, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '_top', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'stimme,deine,zählt,brandenburg,bands,alle,song,sampler,download,könnt,können,[translate,2017,will,oder,berliner,2014,musiker*innen,brandenburger,toleranz,jury,land,release,party,potsdam,berlin,dass,bereitstehen,september,layout,format,erscheinen,wenn,aktiv,musiker,future,your,page,nothing,message,rock,punk,metal,that,back,from,musicians,contest,nichts,menu,this,datei,bild,facebook,musikalische,kreuzberger,zÄhlt,aktion,gegen,demokratie,ohne,rechte,darf,mitmachen,jahre,berlinfon,ersten,landesebene,jugendliche,163/4,neuer,fÜr,162mail,dürfen,10969,friedrichstr,bedeutet,focusing,mehr,songs,wählen,infos,themes,direkt,gibts,wahlab16[at]kma,democracy,antiracism,music,what,important,civil,courage,nonviolence,doesn\'t,matter,make,tolerance,besuche,sofort,hier,nbsp,here,eure,change,button,sprachwahl,herunterladen,and/or,statt,wurden,themen,antirassismus,zivilcourage,gewaltfreiheit,aufgerufen,daher,eurer,hand,dies,möglich,neuen,beizusteuern,innerhalb,einsendungen,weniger,wochen,erreicht,nahezu,verÄndern,egal,wichtig,gewählt,kann,submit,liegt,aufzunehmen,natürlich,beitrag,mitbestimmen,angibt,findet,dazu,zukunft,record,mitgestalten,auch,dagegenhalten,ihren,vorurteile,kmastudios,gewinner,tolerantes,wohlfühlen,wünschen,passt,eingeladen,euch,etwas,nicht,nachdem,voice,bedienen,sprache,solisten,chöre,musik,spaß,jeder,genre,nder,religion,maximal,lang,jedem,songtext,text,2017an,einsendeschluss,deinestimmezaehlt@kma,de bleib,laufenden,reichen,handymitschnitte,pages,word,open,office,proberaumaufnahmen,nationalität,herkunft,diskriminierung,nationalismus,verbreitung,nationalistischer,völkischer,erheb,also,präsentieren,bündnis,songcontest,vielfalt,geflüchtete,hetze,akteure,unterstützung,gesellschaftliche,erfahren,brauchen,unabhängig,gleichen,verschieden,zusammenhalt,miteinander,solidarität,welt,angst,com/deinestimmezaehlt2017 die,besten,tone,political,speak,when,with,disagree,decide,active,first,elections,time,means,have,decisions,being,everyone,where,live,comfortably,hands,stereotypes,negative,hope,made,tolerant,society,without,level,state,dabei,tonstudio,wirst,professionell,begleitet,einem,dann,produzenten,interpreten,ausgewählt,deinen,nimmst,anfang,veröffentlichung,year,starting,olds,able,vote,belrin,bundestagswahl,gemeinsam,feiern,rechten,keine,chance,calling', 'cache_timeout' => 0, 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1486501469, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'url_scheme' => 0, 'backend_layout' => '0', 'backend_layout_next_level' => '0', 'tx_jtfkeywordgenerator_disable' => 0, 'rowDescription' => null, 'l10n_source' => 0, 'l10n_state' => null, 'l10n_diffsource' => null, 'slug' => '/eva/startruck/deine-stimme-zaehlt', 'cache_tags' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'tx_csseo_title_only' => 0, 'tx_csseo_keyword' => '', 'tx_csseo_tw_creator' => '', 'tx_csseo_tw_site' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'twitter_card' => ''), 'current' => null), false)
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 141
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => null, 'partial' => 'PageBody', 'delegate' => null, 'renderable' => null, 'arguments' => array('data' => array('uid' => 78, 'pid' => 28, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1486501469, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 1, 'perms_groupid' => 7, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1388867063, 'cruser_id' => 1, 'hidden' => 0, 'title' => 'Deine Stimme zählt!', 'doktype' => 1, 'TSconfig' => '', 'storage_pid' => 0, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '_top', 'media' => 0, 'lastUpdated' => 0, 'keywords' => 'stimme,deine,zählt,brandenburg,bands,alle,song,sampler,download,könnt,können,[translate,2017,will,oder,berliner,2014,musiker*innen,brandenburger,toleranz,jury,land,release,party,potsdam,berlin,dass,bereitstehen,september,layout,format,erscheinen,wenn,aktiv,musiker,future,your,page,nothing,message,rock,punk,metal,that,back,from,musicians,contest,nichts,menu,this,datei,bild,facebook,musikalische,kreuzberger,zÄhlt,aktion,gegen,demokratie,ohne,rechte,darf,mitmachen,jahre,berlinfon,ersten,landesebene,jugendliche,163/4,neuer,fÜr,162mail,dürfen,10969,friedrichstr,bedeutet,focusing,mehr,songs,wählen,infos,themes,direkt,gibts,wahlab16[at]kma,democracy,antiracism,music,what,important,civil,courage,nonviolence,doesn\'t,matter,make,tolerance,besuche,sofort,hier,nbsp,here,eure,change,button,sprachwahl,herunterladen,and/or,statt,wurden,themen,antirassismus,zivilcourage,gewaltfreiheit,aufgerufen,daher,eurer,hand,dies,möglich,neuen,beizusteuern,innerhalb,einsendungen,weniger,wochen,erreicht,nahezu,verÄndern,egal,wichtig,gewählt,kann,submit,liegt,aufzunehmen,natürlich,beitrag,mitbestimmen,angibt,findet,dazu,zukunft,record,mitgestalten,auch,dagegenhalten,ihren,vorurteile,kmastudios,gewinner,tolerantes,wohlfühlen,wünschen,passt,eingeladen,euch,etwas,nicht,nachdem,voice,bedienen,sprache,solisten,chöre,musik,spaß,jeder,genre,nder,religion,maximal,lang,jedem,songtext,text,2017an,einsendeschluss,deinestimmezaehlt@kma,de bleib,laufenden,reichen,handymitschnitte,pages,word,open,office,proberaumaufnahmen,nationalität,herkunft,diskriminierung,nationalismus,verbreitung,nationalistischer,völkischer,erheb,also,präsentieren,bündnis,songcontest,vielfalt,geflüchtete,hetze,akteure,unterstützung,gesellschaftliche,erfahren,brauchen,unabhängig,gleichen,verschieden,zusammenhalt,miteinander,solidarität,welt,angst,com/deinestimmezaehlt2017 die,besten,tone,political,speak,when,with,disagree,decide,active,first,elections,time,means,have,decisions,being,everyone,where,live,comfortably,hands,stereotypes,negative,hope,made,tolerant,society,without,level,state,dabei,tonstudio,wirst,professionell,begleitet,einem,dann,produzenten,interpreten,ausgewählt,deinen,nimmst,anfang,veröffentlichung,year,starting,olds,able,vote,belrin,bundestagswahl,gemeinsam,feiern,rechten,keine,chance,calling', 'cache_timeout' => 0, 'newUntil' => 0, 'description' => '', 'no_search' => 0, 'SYS_LASTCHANGED' => 1486501469, 'abstract' => '', 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'url_scheme' => 0, 'backend_layout' => '0', 'backend_layout_next_level' => '0', 'tx_jtfkeywordgenerator_disable' => 0, 'rowDescription' => null, 'l10n_source' => 0, 'l10n_state' => null, 'l10n_diffsource' => null, 'slug' => '/eva/startruck/deine-stimme-zaehlt', 'cache_tags' => '', 'tsconfig_includes' => null, 'legacy_overlay_uid' => 0, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'canonical_link' => '', 'categories' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'tx_csseo_title_only' => 0, 'tx_csseo_keyword' => '', 'tx_csseo_tw_creator' => '', 'tx_csseo_tw_site' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'twitter_card' => ''), 'current' => null), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3temp/var/cache/code/fluid_template/Standard_action_Default_93a9bd6e65fb33a1f02f70b1bc74722113461f34.php line 96
$arguments5['debug'] = true;
$arguments5['partial'] = 'PageBody';
$arguments5['arguments'] = $renderingContext->getVariableProvider()->getAll();

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

$output4 .= '
 ';

at Standard_action_Default_93a9bd6e65fb33a1f02f70b1bc74722113461f34->section_ced19130e9804c4f7393e12126451d1eb126cd4a(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $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('PageBody', array(), false)
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 143
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'PageBody', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array(), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /homepages/13/d141231112/htdocs/TYPO3/kma_2020/typo3temp/var/cache/code/fluid_template/layout_PageDefault_html_c8f6864b6a593ecd0c82851391b0cec7177aa6c7.php line 90
$arguments3['contentAs'] = NULL;
$arguments3['debug'] = true;
$arguments3['section'] = 'PageBody';

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

$output0 .= '

  ';
at layout_PageDefault_html_c8f6864b6a593ecd0c82851391b0cec7177aa6c7->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 201
            } 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 /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 358
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 107

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield:-1, backend_layout_next_level, slide', 'override.' => array('field' => 'backend_layout')), 'pagets__default' => 'TEXT', 'pagets__default.' => array('value' => 'Default'), 'pagets__start' => 'TEXT', 'pagets__start.' => array('value' => 'Start'), 'default' => 'TEXT', 'default.' => array('value' => 'Default'), 'pagets__startpage' => 'TEXT', 'pagets__startpage.' => array('value' => 'Startpage')))), 'templateRootPaths.' => array('EXT:base/Resources/Private/View/Page/Templates/', 'EXT:template_provider/Resources/Private/View/Page/Templates'), 'partialRootPaths.' => array('EXT:base/Resources/Private/View/Page/Partials/', 'EXT:template_provider/Resources/Private/View/Page/Partials'), 'layoutRootPaths.' => array('EXT:base/Resources/Private/View/Page/Layouts/', 'EXT:template_provider/Resources/Private/View/Page/Layouts'), 'variables' => '< lib.fluidVariables', 'stdWrap.' => array('replacement.' => array('1.' => array('search' => 'http://[backend]/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '3.' => array('search' => '[br]', 'replace' => '<br />'), '4.' => array('search' => '[space]', 'replace.' => array('char' => '32')), '5.' => array('search' => '[trenner]', 'replace.' => array('char' => '&shy;')), '6.' => array('search' => '[check]', 'replace' => '&check;'), '11.' => array('search' => '[currentyear]', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '21.' => array('search' => '/\\[sup\\](.*?)\\[\\/sup\\]/', 'replace' => '<sup>\\1</sup>', 'useRegExp' => '1'), '22.' => array('search' => '/\\[sub\\](.*?)\\[\\/sub\\]/', 'replace' => '<sub>\\1</sub>', 'useRegExp' => '1'), '23.' => array('search' => '#(®|™|©)#i', 'replace' => '<sup>${1}</sup>', 'useRegExp' => '1'), '24.' => array('search' => '/\\[c\\](.*?)\\[\\/c\\]/', 'replace' => '<span class=“colored”>\\1</span>', 'useRegExp' => '1'), '25.' => array('search' => '/\\[strong\\](.*?)\\[\\/strong\\]/', 'replace' => '<strong>\\1</strong>', 'useRegExp' => '1')))))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield:-1, backend_layout_next_level, slide', 'override.' => array('field' => 'backend_layout')), 'pagets__default' => 'TEXT', 'pagets__default.' => array('value' => 'Default'), 'pagets__start' => 'TEXT', 'pagets__start.' => array('value' => 'Start'), 'default' => 'TEXT', 'default.' => array('value' => 'Default'), 'pagets__startpage' => 'TEXT', 'pagets__startpage.' => array('value' => 'Startpage')))), 'templateRootPaths.' => array('EXT:base/Resources/Private/View/Page/Templates/', 'EXT:template_provider/Resources/Private/View/Page/Templates'), 'partialRootPaths.' => array('EXT:base/Resources/Private/View/Page/Partials/', 'EXT:template_provider/Resources/Private/View/Page/Partials'), 'layoutRootPaths.' => array('EXT:base/Resources/Private/View/Page/Layouts/', 'EXT:template_provider/Resources/Private/View/Page/Layouts'), 'variables' => '< lib.fluidVariables', 'stdWrap.' => array('replacement.' => array('1.' => array('search' => 'http://[backend]/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '3.' => array('search' => '[br]', 'replace' => '<br />'), '4.' => array('search' => '[space]', 'replace.' => array('char' => '32')), '5.' => array('search' => '[trenner]', 'replace.' => array('char' => '&shy;')), '6.' => array('search' => '[check]', 'replace' => '&check;'), '11.' => array('search' => '[currentyear]', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '21.' => array('search' => '/\\[sup\\](.*?)\\[\\/sup\\]/', 'replace' => '<sup>\\1</sup>', 'useRegExp' => '1'), '22.' => array('search' => '/\\[sub\\](.*?)\\[\\/sub\\]/', 'replace' => '<sub>\\1</sub>', 'useRegExp' => '1'), '23.' => array('search' => '#(®|™|©)#i', 'replace' => '<sup>${1}</sup>', 'useRegExp' => '1'), '24.' => array('search' => '/\\[c\\](.*?)\\[\\/c\\]/', 'replace' => '<span class=“colored”>\\1</span>', 'useRegExp' => '1'), '25.' => array('search' => '/\\[strong\\](.*?)\\[\\/strong\\]/', 'replace' => '<strong>\\1</strong>', 'useRegExp' => '1')))))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 731
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield:-1, backend_layout_next_level, slide', 'override.' => array('field' => 'backend_layout')), 'pagets__default' => 'TEXT', 'pagets__default.' => array('value' => 'Default'), 'pagets__start' => 'TEXT', 'pagets__start.' => array('value' => 'Start'), 'default' => 'TEXT', 'default.' => array('value' => 'Default'), 'pagets__startpage' => 'TEXT', 'pagets__startpage.' => array('value' => 'Startpage')))), 'templateRootPaths.' => array('EXT:base/Resources/Private/View/Page/Templates/', 'EXT:template_provider/Resources/Private/View/Page/Templates'), 'partialRootPaths.' => array('EXT:base/Resources/Private/View/Page/Partials/', 'EXT:template_provider/Resources/Private/View/Page/Partials'), 'layoutRootPaths.' => array('EXT:base/Resources/Private/View/Page/Layouts/', 'EXT:template_provider/Resources/Private/View/Page/Layouts'), 'variables' => '< lib.fluidVariables', 'stdWrap.' => array('replacement.' => array('1.' => array('search' => 'http://[backend]/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '3.' => array('search' => '[br]', 'replace' => '<br />'), '4.' => array('search' => '[space]', 'replace.' => array('char' => '32')), '5.' => array('search' => '[trenner]', 'replace.' => array('char' => '&shy;')), '6.' => array('search' => '[check]', 'replace' => '&check;'), '11.' => array('search' => '[currentyear]', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '21.' => array('search' => '/\\[sup\\](.*?)\\[\\/sup\\]/', 'replace' => '<sup>\\1</sup>', 'useRegExp' => '1'), '22.' => array('search' => '/\\[sub\\](.*?)\\[\\/sub\\]/', 'replace' => '<sub>\\1</sub>', 'useRegExp' => '1'), '23.' => array('search' => '#(®|™|©)#i', 'replace' => '<sup>${1}</sup>', 'useRegExp' => '1'), '24.' => array('search' => '/\\[c\\](.*?)\\[\\/c\\]/', 'replace' => '<span class=“colored”>\\1</span>', 'useRegExp' => '1'), '25.' => array('search' => '/\\[strong\\](.*?)\\[\\/strong\\]/', 'replace' => '<strong>\\1</strong>', 'useRegExp' => '1')))), '20')
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 677
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('includeJSFooter.' => array('tx_rxshariff_shariff' => 'EXT:rx_shariff/Resources/Public/JavaScript/shariff.min.js', 'cookiecontrol' => 'EXT:cookiecontrol/Resources/Public/JavaScript/frontend.min.js', 'lightbox2' => 'EXT:ns_all_lightbox/Resources/Public/lightbox2/js/lightbox.js'), 'includeCSS.' => array('tx_rxshariff_shariff' => 'EXT:rx_shariff/Resources/Public/Css/shariff.complete.css', 'EXT:template_provider/Resources/Public/Css/templateprovider.css', '10.' => array('media' => 'screen'), 'EXT:rx_shariff/Resources/Public/Css/shariff.min.css', '40.' => array('media' => 'screen'), 'lightbox' => 'EXT:ns_all_lightbox/Resources/Public/lightbox2/css/lightbox.css'), 'typeNum' => '0', 'headerData.' => array('TEXT', '3.' => array('value' => ' <link rel="apple-touch-icon" sizes="180x180" href="typo3conf/ext/template_provider/Resources/Public/Icons/Favicons/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="typo3conf/ext/template_provider/Resources/Public/Icons/Favicons/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="typo3conf/ext/template_provider/Resources/Public/Icons/Favicons/favicon-16x16.png"> <link rel="manifest" href="typo3conf/ext/template_provider/Resources/Public/Icons/Favicons/site.webmanifest.json"> <link rel="mask-icon" href="typo3conf/ext/template_provider/Resources/Public/Icons/Favicons/safari-pinned-tab.svg" color="#ffd511"> <link rel="shortcut icon" href="typo3conf/ext/template_provider/Resources/Public/Icons/Favicons/favicon.ico">')), 'includeJSFooterlibs.' => array('EXT:template_provider/Resources/Public/JavaScript/templateprovider.js', '10.' => array('disableCompression' => '1', 'excludeFromConcatenation' => '1'), 'EXT:rx_shariff/Resources/Public/JavaScript/shariff.min.js', '30.' => array('async' => 'true')), 'meta.' => array('viewport' => 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0', 'X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('httpEquivalent' => '1'), 'msapplication-config' => 'typo3conf/ext/template_provider/Resources/Public/Icons/Favicons/browserconfig.xml', 'msapplication-TileColor' => '#da532c', 'theme-color' => '#ffffff'), 'includeCSSLibs.' => array('cookiecontrol' => 'EXT:cookiecontrol/Resources/Public/Css/frontend.min.css'), 'shortcutIcon' => 'EXT:template_provider/Resources/Public/Icons/Favicons/favicon.ico', 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('wrap' => '<body class = "|" >', 'COA', '10.' => array('TEXT', '1.' => array('value' => 'page'), 'TEXT', '10.' => array('field' => 'alias // uid', 'noTrimWrap' => '| page-||'), 'TEXT', '20.' => array('data' => 'level:1', 'noTrimWrap' => '| level-||'), 'TEXT', '30.' => array('data' => 'TSFE:sys_language_uid', 'noTrimWrap' => '| lang-||'), 'TEXT', '40.' => array('data' => 'levelfield:-1, backend_layout_next_level, slide', 'override.' => array('field' => 'backend_layout'), 'substring' => '8', 'noTrimWrap' => '| tmpl-||'), 'TEXT', '50.' => array('field' => 'layout', 'noTrimWrap' => '| layout-||'))), 'FLUIDTEMPLATE', '20.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield:-1, backend_layout_next_level, slide', 'override.' => array('field' => 'backend_layout')), 'pagets__default' => 'TEXT', 'pagets__default.' => array('value' => 'Default'), 'pagets__start' => 'TEXT', 'pagets__start.' => array('value' => 'Start'), 'default' => 'TEXT', 'default.' => array('value' => 'Default'), 'pagets__startpage' => 'TEXT', 'pagets__startpage.' => array('value' => 'Startpage')))), 'templateRootPaths.' => array('EXT:base/Resources/Private/View/Page/Templates/', 'EXT:template_provider/Resources/Private/View/Page/Templates'), 'partialRootPaths.' => array('EXT:base/Resources/Private/View/Page/Partials/', 'EXT:template_provider/Resources/Private/View/Page/Partials'), 'layoutRootPaths.' => array('EXT:base/Resources/Private/View/Page/Layouts/', 'EXT:template_provider/Resources/Private/View/Page/Layouts'), 'variables' => '< lib.fluidVariables', 'stdWrap.' => array('replacement.' => array('1.' => array('search' => 'http://[backend]/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '3.' => array('search' => '[br]', 'replace' => '<br />'), '4.' => array('search' => '[space]', 'replace.' => array('char' => '32')), '5.' => array('search' => '[trenner]', 'replace.' => array('char' => '&shy;')), '6.' => array('search' => '[check]', 'replace' => '&check;'), '11.' => array('search' => '[currentyear]', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '21.' => array('search' => '/\\[sup\\](.*?)\\[\\/sup\\]/', 'replace' => '<sup>\\1</sup>', 'useRegExp' => '1'), '22.' => array('search' => '/\\[sub\\](.*?)\\[\\/sub\\]/', 'replace' => '<sub>\\1</sub>', 'useRegExp' => '1'), '23.' => array('search' => '#(®|™|©)#i', 'replace' => '<sup>${1}</sup>', 'useRegExp' => '1'), '24.' => array('search' => '/\\[c\\](.*?)\\[\\/c\\]/', 'replace' => '<span class=“colored”>\\1</span>', 'useRegExp' => '1'), '25.' => array('search' => '/\\[strong\\](.*?)\\[\\/strong\\]/', 'replace' => '<strong>\\1</strong>', 'useRegExp' => '1'))))))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 246
     * @return string
     */
    protected function generatePageContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 268
     */
    protected function generatePageContentWithHeader(TypoScriptFrontendController $controller, ?SiteLanguage $siteLanguage): string
    {
        // Generate the page content, this has to be first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageContent($controller);
        $pageRenderer = $this->getPageRenderer();
        if ($controller->config['config']['moveJsFromHeaderToFooter'] ?? false) {
            $pageRenderer->enableMoveJsFromHeaderToFooter();
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContentWithHeader(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Site\Entity\SiteLanguage))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 168
            // If 'disableAllHeaderCode' is set, all the header-code is discarded
            if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
                $controller->content = $this->generatePageContent($controller);
            } else {
                $controller->content = $this->generatePageContentWithHeader($controller, $request->getAttribute('language', null));
            }

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

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 65
                return new RedirectResponse($externalUrl, 303);
            }
        }

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

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 118
                GeneralUtility::makeInstance($className)->checkDataSubmission($this->controller);
            }
        }

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

    /**
     * Small helper function to convert charsets for arrays to UTF-8
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 99
                    ['code' => PageAccessFailureReasons::CACHEHASH_COMPARISON_FAILED]
                );
            }
        }
        return $handler->handle($request);
    }

    /**
     * Calculates a hash string based on additional parameters in the url.
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 162
            }
            $this->controller->determineId();
        }

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

    /**
     * Provides ways to bypass the '?id=[xxx]&type=[xx]' format, using either PATH_INFO or Server Rewrites
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 70
                return $response;
            }
        }

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

    /**
     * Creates a PSR-7 compatible Response object
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 66

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

    /**
     * @param File $file
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

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

    /**
     * Creates the backend user object and returns it.
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 79

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

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

    /**
     * It's possible to transfer a frontend user session via a GET/POST parameter 'FE_SESSION_KEY'.
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 49
        );
        $timeTracker->start();
        $timeTracker->push('');

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x2b6396c3c056->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 67
     * @return ResponseInterface
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/core/Classes/Http/AbstractApplication.php line 98
    {
        $requestHandler = GeneralUtility::makeInstance($this->requestHandler);
        $dispatcher = $this->createMiddlewareDispatcher($requestHandler);

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

    /**
     * Set up the application and shut it down afterwards
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /homepages/13/d141231112/htdocs/TYPO3/typo3_src-9.5.8/typo3/sysext/frontend/Classes/Http/Application.php line 69
        if (!$this->checkIfEssentialConfigurationExists()) {
            return $this->installToolRedirect();
        }
        $this->initializeContext();
        return parent::handle($request);
    }

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