Whoops, looks like something went wrong.

(1/1) Error

Call to a member function getAttributes() on null

in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3conf/ext/goll/Classes/Utility/GollUtility.php line 24
     */
    public static function serienTitel($serie)
    {
        // Take SerName_Web
        $title = (string)($serie->getAttributes()['Serie_SerName_Web']??'');

        // If none, take SER_Code_Web of first article
        if (empty($title)) {
            $article = self::getFirstSerienAusfuehrung($serie);
at Goll\Website\Utility\GollUtility::serienTitel(null)
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3conf/ext/goll/Classes/ViewHelpers/SerienTitelViewHelper.php line 23
    public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
    {
        /** @var PimObject $object */
        $object = $arguments['object'];
        $title = GollUtility::serienTitel($object);
        $renderingContext->getVariableProvider()->add('src', 'test');
        $title .= $renderChildrenClosure();
        $renderingContext->getVariableProvider()->remove('src');
        return $title;
at Goll\Website\ViewHelpers\SerienTitelViewHelper::renderStatic(array('object' => null), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/home/www/helmutgoll.at/htdocs/shared/var/cache/code/fluid_template/Object_action_list_f14cea5ef3581cb417322185fc92134e8f2d6136.php line 286
$arguments21 = [
'object' => $renderingContext->getVariableProvider()->getByPath('object'),
];

$output0 .= call_user_func_array( function ($var) { return (is_string($var) || (is_object($var) && method_exists($var, '__toString')) ? htmlspecialchars((string) $var, ENT_QUOTES) : $var); }, [Goll\Website\ViewHelpers\SerienTitelViewHelper::renderStatic($arguments21, $renderChildrenClosure22, $renderingContext)]);

$output0 .= '</em></li>
</ul>';

at Object_action_list_f14cea5ef3581cb417322185fc92134e8f2d6136->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 184
        }

        if (!$parsedTemplate->hasLayout()) {
            $this->startRendering(self::RENDERING_TEMPLATE, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedTemplate->render($this->baseRenderingContext);
            $this->stopRendering();
        } else {
            $layoutName = $parsedTemplate->getLayoutName($this->baseRenderingContext);
            try {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 598
                // returned in their controller actions. The header, added below, may gets overwritten in
                // the Extbase bootstrap, depending on the context (FE/BE) and TypoScript configuration.
                $response = $response->withHeader('Content-Type', 'application/json; charset=utf-8');
            }
            $body->write($this->view->render());
        } elseif (is_string($actionResult) && $actionResult !== '') {
            $body->write($actionResult);
        } elseif (is_object($actionResult) && method_exists($actionResult, '__toString')) {
            $body->write((string)$actionResult);
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->callActionMethod(object(TYPO3\CMS\Extbase\Mvc\Request))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 488
        $this->view = $this->resolveView();
        if ($this->view !== null && method_exists($this, 'initializeView')) {
            $this->initializeView($this->view);
        }
        $response = $this->callActionMethod($request);
        $this->renderAssetsForRequest($request);

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

    /**
     * This request handler can handle any web request.
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest(object(TYPO3\CMS\Extbase\Mvc\Request))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 165
        }

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

    protected function handleFrontendRequest(ServerRequestInterface $request): string
    {
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Ms3CommerceFx', 'pluginName' => 'Pi1', 'settings.' => array('templateFile' => 'EXT:goll/Resources/Private/CommerceTemplates/Breadcrumb.html')), object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5431
                        // Extensions should either drop the property altogether if they don't need current instance
                        // of ContentObjectRenderer, or set the property to protected and use the setter above.
                        $classObj->cObj = $this;
                    }
                    $content = $callable($content, $conf, $this->getRequest());
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', LogLevel::ERROR);
                }
            } else {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Ms3CommerceFx', 'pluginName' => 'Pi1', 'settings.' => array('templateFile' => 'EXT:goll/Resources/Private/CommerceTemplates/Breadcrumb.html')), '')
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 44
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->processNonCacheableContentPartsAndSubstituteContentMarkers()!
            $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
        }
        $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
        if ($this->cObj->doConvertToUserIntObject) {
            $this->cObj->doConvertToUserIntObject = false;
            $content = $this->cObj->cObjGetSingle('USER_INT', $conf);
        } else {
at TYPO3\CMS\Frontend\ContentObject\UserContentObject->render(array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Ms3CommerceFx', 'pluginName' => 'Pi1', 'settings.' => array('templateFile' => 'EXT:goll/Resources/Private/CommerceTemplates/Breadcrumb.html')))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Ms3CommerceFx', 'pluginName' => 'Pi1', 'settings.' => array('templateFile' => 'EXT:goll/Resources/Private/CommerceTemplates/Breadcrumb.html')))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Ms3CommerceFx', 'pluginName' => 'Pi1', 'settings.' => array('templateFile' => 'EXT:goll/Resources/Private/CommerceTemplates/Breadcrumb.html')), '15')
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 713
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && !str_contains($theKey, '.')) {
                $conf = $setup[$theKey . '.'] ?? [];
                $contentObjects[] = $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $contentObjects;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSeparated(array('USER', '15.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Ms3CommerceFx', 'pluginName' => 'Pi1', 'settings.' => array('templateFile' => 'EXT:goll/Resources/Private/CommerceTemplates/Breadcrumb.html'))), '')
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 693
    {
        if (!is_array($setup)) {
            return '';
        }
        return implode('', $this->cObjGetSeparated($setup, $addKey));
    }

    /**
     * Rendering of a "numerical array" of cObjects from TypoScript
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('USER', '15.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Ms3CommerceFx', 'pluginName' => 'Pi1', 'settings.' => array('templateFile' => 'EXT:goll/Resources/Private/CommerceTemplates/Breadcrumb.html'))))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php line 43
        if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
            return '';
        }

        $content = $this->cObj->cObjGet($conf);
        $wrap = $this->cObj->stdWrapValue('wrap', $conf ?? []);
        if ($wrap) {
            $content = $this->cObj->wrap($content, $wrap);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject->render(array('USER', '15.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Ms3CommerceFx', 'pluginName' => 'Pi1', 'settings.' => array('templateFile' => 'EXT:goll/Resources/Private/CommerceTemplates/Breadcrumb.html'))))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject), array('USER', '15.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Ms3CommerceFx', 'pluginName' => 'Pi1', 'settings.' => array('templateFile' => 'EXT:goll/Resources/Private/CommerceTemplates/Breadcrumb.html'))))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('COA', array('USER', '15.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Ms3CommerceFx', 'pluginName' => 'Pi1', 'settings.' => array('templateFile' => 'EXT:goll/Resources/Private/CommerceTemplates/Breadcrumb.html'))), 'lib.breadcrumb')
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 197
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'EXT:ns_all_lightbox/Resources/Private/Partials/Lightbox/TYPO3/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1024', 'height' => '768', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')))), 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'parseFunc_RTE.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array('fixAttrib.' => array('class.' => array('default' => 'contenttable', 'always' => '1', 'list' => 'contenttable')))), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => '', 'innerStdWrap_all.' => array('ifBlank' => '')))))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'tx_form.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'gridelements.' => array('defaultGridSetup.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))))), 'tt_content.' => array('shortcut.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'))), 'cartMailHeader' => 'RECORDS', 'cartMailHeader.' => array('tables' => 'tt_content', 'dontCheckPid' => '1', 'conf.' => array('tt_content' => 'FLUIDTEMPLATE', 'tt_content.' => array('templateRootPaths.' => array('EXT:cart/Resources/Private/Templates/Mail/'), 'partialRootPaths.' => array('EXT:cart/Resources/Private/Partials/Mail/'), 'layoutRootPaths.' => array('EXT:cart/Resources/Private/Layouts/'), 'templateName' => 'ContentElement')), 'source' => '{$plugin.tx_cart.uids.lib.cartMailHeader}'), 'cartMailFooter' => 'RECORDS', 'cartMailFooter.' => array('tables' => 'tt_content', 'dontCheckPid' => '1', 'conf.' => array('tt_content' => 'FLUIDTEMPLATE', 'tt_content.' => array('templateRootPaths.' => array('EXT:cart/Resources/Private/Templates/Mail/'), 'partialRootPaths.' => array('EXT:cart/Resources/Private/Partials/Mail/'), 'layoutRootPaths.' => array('EXT:cart/Resources/Private/Layouts/'), 'templateName' => 'ContentElement')), 'source' => '{$plugin.tx_cart.uids.lib.cartMailFooter}'), 'cartMailFooterSignature' => 'RECORDS', 'cartMailFooterSignature.' => array('tables' => 'tt_content', 'dontCheckPid' => '1', 'conf.' => array('tt_content' => 'FLUIDTEMPLATE', 'tt_content.' => array('templateRootPaths.' => array('EXT:cart/Resources/Private/Templates/Mail/'), 'partialRootPaths.' => array('EXT:cart/Resources/Private/Partials/Mail/'), 'layoutRootPaths.' => array('EXT:cart/Resources/Private/Layouts/'), 'templateName' => 'ContentElement')), 'source' => '{$plugin.tx_cart.uids.lib.cartMailFooterSignature}'), 'cartMailFooterTermsOfService' => 'RECORDS', 'cartMailFooterTermsOfService.' => array('tables' => 'tt_content', 'dontCheckPid' => '1', 'conf.' => array('tt_content' => 'FLUIDTEMPLATE', 'tt_content.' => array('templateRootPaths.' => array('EXT:cart/Resources/Private/Templates/Mail/'), 'partialRootPaths.' => array('EXT:cart/Resources/Private/Partials/Mail/'), 'layoutRootPaths.' => array('EXT:cart/Resources/Private/Layouts/'), 'templateName' => 'ContentElement')), 'source' => '{$plugin.tx_cart.uids.lib.cartMailFooterTermsOfService}'), 'cartMailFooterRevocation' => 'RECORDS', 'cartMailFooterRevocation.' => array('tables' => 'tt_content', 'dontCheckPid' => '1', 'conf.' => array('tt_content' => 'FLUIDTEMPLATE', 'tt_content.' => array('templateRootPaths.' => array('EXT:cart/Resources/Private/Templates/Mail/'), 'partialRootPaths.' => array('EXT:cart/Resources/Private/Partials/Mail/'), 'layoutRootPaths.' => array('EXT:cart/Resources/Private/Layouts/'), 'templateName' => 'ContentElement')), 'source' => '{$plugin.tx_cart.uids.lib.cartMailFooterRevocation}'), 'cartMailFooterDataProtection' => 'RECORDS', 'cartMailFooterDataProtection.' => array('tables' => 'tt_content', 'dontCheckPid' => '1', 'conf.' => array('tt_content' => 'FLUIDTEMPLATE', 'tt_content.' => array('templateRootPaths.' => array('EXT:cart/Resources/Private/Templates/Mail/'), 'partialRootPaths.' => array('EXT:cart/Resources/Private/Partials/Mail/'), 'layoutRootPaths.' => array('EXT:cart/Resources/Private/Layouts/'), 'templateName' => 'ContentElement')), 'source' => '{$plugin.tx_cart.uids.lib.cartMailFooterDataProtection}'), 'cartMailFooterImpress' => 'RECORDS', 'cartMailFooterImpress.' => array('tables' => 'tt_content', 'dontCheckPid' => '1', 'conf.' => array('tt_content' => 'FLUIDTEMPLATE', 'tt_content.' => array('templateRootPaths.' => array('EXT:cart/Resources/Private/Templates/Mail/'), 'partialRootPaths.' => array('EXT:cart/Resources/Private/Partials/Mail/'), 'layoutRootPaths.' => array('EXT:cart/Resources/Private/Layouts/'), 'templateName' => 'ContentElement')), 'source' => '{$plugin.tx_cart.uids.lib.cartMailFooterImpress}'), 'fluidContent.' => array('settings.' => array('media.' => array('popup.' => array('width' => '1024', 'height' => '768')))), 'topNavigation' => 'HMENU', 'topNavigation.' => array('wrap' => '<nav id="#topMenu"><ul class="pagesul">|</ul></nav>', 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="dropdown dropdowncustom">|</li>', 'ATagParams' => 'class="nav-link " data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="dropdown">|</li>', 'ATagParams' => 'class="nav-link active" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"'), 'expAll' => '1'), 'TMENU', '2.' => array('wrap' => '<div class="dropdown-menu topdropdown "> | </div>', 'NO.' => array('ATagParams' => 'class="dropdown-item"'))), 'mobileNavigation' => 'HMENU', 'mobileNavigation.' => array('wrap' => '|', 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="hasChild">|</li>', 'allWrap' => '<a style="cursor:pointer">|</a>', 'doNotLinkIt' => '1'), 'expAll' => '1'), 'TMENU', '2.' => array('wrap' => '<ul class="submenu p-0">|</ul>', 'NO.' => array('ATagParams' => 'class="letztes"'))), 'productmenu' => 'COA', 'productmenu.' => array('USER', '15.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Ms3CommerceFx', 'pluginName' => 'Menu', 'vendorName' => 'Ms3', 'controller' => 'Menu', 'action' => 'menu', 'settings.' => array('includeUsageTypes' => '1,2,4', 'templateFile' => 'EXT:goll/Resources/Private/CommerceTemplates/Productmenu.html'))), 'productmenumobile' => 'COA', 'productmenumobile.' => array('USER', '15.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Ms3CommerceFx', 'pluginName' => 'Menu', 'vendorName' => 'Ms3', 'controller' => 'Menu', 'action' => 'menu', 'settings.' => array('includeUsageTypes' => '1,2,4', 'templateFile' => 'EXT:goll/Resources/Private/CommerceTemplates/Productmenumobile.html'))), 'language' => 'COA', 'language.' => array('HMENU', '20.' => array('special' => 'language', 'special.' => array('value' => '1,3,0', 'normalWhenNoLanguage' => '0'), 'wrap' => '', 'TMENU', '1.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('doNotLinkIt' => '1', 'linkWrap' => '<li class= " dropdowncountryli">|</li>', 'stdWrap.' => array('override' => 'Österreich || Deutschland || Schweiz', 'typolink.' => array('additionalParams' => '&L=0 || &L=1 || &L=3', 'ATagParams' => 'hreflang="de-AT" class="icon-at" || hreflang="de-DE" class="icon-de" || hreflang="de-CH" class="icon-ch"', 'no_cache' => '0', 'parameter' => '1', 'addQueryString' => '0'))), 'ACT' => '1', 'ACT.' => array('doNotLinkIt' => '1', 'linkWrap' => '<li class= " dropdowncountryli active">|</li>', 'stdWrap.' => array('override' => 'Österreich || Deutschland || Schweiz', 'typolink.' => array('additionalParams' => '&L=0 || &L=1 || &L=3', 'ATagParams' => 'hreflang="de-AT" class="icon-at" || hreflang="de-DE" class="icon-de" || hreflang="de-CH" class="icon-ch"', 'no_cache' => '0', 'parameter' => '1', 'addQueryString' => '0'))))), 'wrap' => '<ul id="language_menu" class="language-menu p-3">|</ul>'), 'currentlanguage' => 'TEXT', 'currentlanguage.' => array('value' => 'Deutschland'), 'legalLinks' => 'HMENU', 'legalLinks.' => array('special' => 'directory', 'special.' => array('value' => '10'), 'TMENU', '1.' => array('NO.' => array('ATagParams' => 'class="p-2"'))), 'footermidmidlinks' => 'HMENU', 'footermidmidlinks.' => array('special' => 'directory', 'special.' => array('value' => '14'), 'TMENU', '1.' => array('NO.' => array('ATagParams' => 'class="footermidmidlinks"'))), 'miniCart' => 'USER', 'miniCart.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Cart', 'pluginName' => 'MiniCart', 'vendorName' => 'Extcode', 'controller' => 'Cart\\CartPreview', 'action' => 'show', 'switchableControllerActions.' => array('Cart\CartPreview.' => array('show')), 'view.' => array('templateRootPaths.' => array('EXT:goll/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:goll/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:cart/Resources/Private/Layouts/')), 'persistence.' => array('storagePid' => '{$plugin.tx_cart.persistence.storagePid}'), 'settings.' => array('cart.' => array('pid' => '41', 'isNetCart' => '1', 'acceptTermsAndConditions.' => array('pid' => '{$plugin.tx_cart.settings.cart.acceptTermsAndConditions.pid}'), 'acceptRevocationInstruction.' => array('pid' => '{$plugin.tx_cart.settings.cart.acceptRevocationInstruction.pid}'), 'acceptPrivacyPolicy.' => array('pid' => '{$plugin.tx_cart.settings.cart.acceptPrivacyPolicy.pid}')), 'order.' => array('pid' => '42'), 'jsonResponseForPageTypes.' => array('addToCartByAjax' => '2278001'), 'allowedCountries.' => array('de' => 'Deutschland', 'at' => 'Österreich', 'ch' => 'Schweiz'), 'defaultCountry' => 'de', 'currencies.' => array('default' => '1', '1.' => array('code' => 'EUR', 'sign' => '&euro;', 'translation' => '1.00')), 'format.' => array('currency.' => array('currencySign' => '&euro;', 'decimalSeparator' => ',', 'thousandsSeparator' => '.', 'prependCurrency' => 'false', 'separateCurrency' => 'true', 'decimals' => '2')), 'showAction.' => array('media.' => array('image.' => array('size.' => array('small.' => array('maxWidth' => '100', 'maxHeight' => ''), 'medium.' => array('maxWidth' => '300', 'maxHeight' => ''), 'large.' => array('maxWidth' => '600', 'maxHeight' => ''))))), 'teaserAction.' => array('media.' => array('image.' => array('size.' => array('small.' => array('maxWidth' => '100', 'maxHeight' => ''), 'medium.' => array('maxWidth' => '300', 'maxHeight' => ''), 'large.' => array('maxWidth' => '600', 'maxHeight' => ''))))), 'listAction.' => array('media.' => array('image.' => array('size.' => array('small.' => array('maxWidth' => '100', 'maxHeight' => ''), 'medium.' => array('maxWidth' => '300', 'maxHeight' => ''), 'large.' => array('maxWidth' => '600', 'maxHeight' => ''))))), 'showCartAction.' => array('showPartials.' => array('couponForm' => 'false', 'shippingAddressForm' => 'true', 'shippingMethodForm' => 'false', 'paymentMethodForm' => 'false'), 'summary.' => array('fields.' => array('cart.' => array('net' => 'false', 'taxes' => 'false'), 'discount.' => array('gross' => 'false'), 'service.' => array('gross' => 'false'), 'total.' => array('gross' => 'true')))), 'validation.' => array('orderItem.' => array('fields.' => array('acceptTermsAndConditions.' => array('validator' => 'Boolean', 'options.' => array('is' => 'true')))), 'billingAddress.' => array('fields.' => array('salutation.' => array('validator' => 'NotEmpty'), 'firstName.' => array('validator' => 'NotEmpty'), 'lastName.' => array('validator' => 'NotEmpty'), 'email.' => array('validator' => 'NotEmpty'), 'phone.' => array('validator' => 'NotEmpty'), 'street.' => array('validator' => 'NotEmpty'), 'streetNumber.' => array('validator' => 'Empty'), 'addition.' => array('validator' => 'Empty'), 'zip.' => array('validator' => 'NotEmpty'), 'city.' => array('validator' => 'NotEmpty'), 'country.' => array('validator' => 'NotEmpty'))), 'shippingAddress.' => array('fields.' => array('salutation.' => array('validator' => 'Empty'), 'firstName.' => array('validator' => 'Empty'), 'lastName.' => array('validator' => 'NotEmpty'), 'email.' => array('validator' => 'Empty'), 'phone.' => array('validator' => 'Empty'), 'fax.' => array('validator' => 'Empty'), 'street.' => array('validator' => 'Empty'), 'streetNumber.' => array('validator' => 'Empty'), 'addition.' => array('validator' => 'Empty'), 'zip.' => array('validator' => 'NotEmpty'), 'city.' => array('validator' => 'NotEmpty'), 'country.' => array('validator' => 'NotEmpty')))), 'goll.' => array('currentcountry' => 'D', 'mandant' => 'Gol'), 'haendlersuchepid' => '18', 'addToCartByAjax' => '1', 'pidBasket' => '41')), 'breadcrumb' => 'COA', 'breadcrumb.' => array('USER', '15.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Ms3CommerceFx', 'pluginName' => 'Pi1', 'settings.' => array('templateFile' => 'EXT:goll/Resources/Private/CommerceTemplates/Breadcrumb.html')))), 'lib.breadcrumb', 'breadcrumb')
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 174
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => null, 'typoscriptObjectPath' => 'lib.breadcrumb', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/home/www/helmutgoll.at/htdocs/shared/var/cache/code/fluid_template/partial_Footer_58f6d6a644fb2c1c703b63126e4c86f4973b98fe.php line 63
'currentValueKey' => NULL,
'table' => '',
];
$renderChildrenClosure2 = ($arguments1['data'] !== null) ? function() use ($arguments1) { return $arguments1['data']; } : $renderChildrenClosure2;
$output0 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '
            </h4>
         </div>
at partial_Footer_58f6d6a644fb2c1c703b63126e4c86f4973b98fe->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 326
        $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('Footer', null, array('content' => ' <div id="c1" class="frame frame-default frame-type-list frame-layout-0"> <div class="backgroundoutside "> <form id="mS3Form_0" action="/de/produkte?no_cache=1&amp;type=159"> <div class="container mt-3 productfiltercontainer"> <div class="row toprow"> <div class="col-4 col-lg-3 resultcounter"> <div class="resultcounternumber pr-2" id="resultcounternumber"></div> Produkte </div> <div class="col-8 col-lg-9 topfilter"> </div> <div class="col-3 col-md-3 formaticons" style="display: none;"> <button type="submit" class="btn "> <img class="mysvg32 " src="typo3conf/ext/goll/Resources/Public/Template/Images/goll_icons/32/icon_gallery-32.svg" height="32"> </button> <button type="submit" class="btn "> <img class="mysvg32" src="typo3conf/ext/goll/Resources/Public/Template/Images/goll_icons/32/icon_menu2-32.svg" height="32"> </button> </div> </div> <div class="row pl-3 pb-3"> <div class="col-md-3 p-0"> <div class="leftfilter"> <div class="row"> <div class="filter col-6"> FILTER </div> <div class="col-6"> <button type="submit" class="btn btn1 "> <img class="mysvg32" id="" src="typo3conf/ext/goll/Resources/Public/Template/Images/goll_icons/32/icon_filter-32white.svg" height="32"> </button> </div> </div> <div class="pb-3"> <diV class="bordertop"></diV> </div> <div class="row filterrow" id="filterrow"> <div class="col"><a onclick="removeAllFilters()" href="javascript:void(0);"> <div class="removefilters"> <img src="typo3conf/ext/goll/Resources/Public/Template/Images/goll_icons/24/icon_close-24red.svg" height="24" width="24" class=""><div class="removefilterstext">Filter zurücksetzen</div> </div></a></div></div> </div> </div> <div class="col-md-9 results" id="mS3Result_0"><script>upDateResultCounter("0")</script><div class="row pagination p-0 m-0 mt-5 mb-5"> <div class="col-4 col-lg-4 p-0 m-0"> <div class="text-center"> </div> </div> <div class="col-4 col-lg-4 p-0 m-0"> <div class="d-flex"> <ul class="paginationnumbers d-flex mx-auto p-0"> <li class="current"></li> </ul> </div> </div> <div class="col-4 col-lg-4 p-0 m-0"> <div class="text-center"> </div> </div></div></div> </div> </div> <script type="text/javascript">var ms3Control = null;jQuery(document).ready(function() { ms3Control = new Ms3CAjaxSearchController(\'mS3Form_0\'); ms3Control.init({"resultElement":"mS3Result_0"}); ms3Control.initializeFilters([]);});</script></form></div> </div> ', 'pidHomepage' => '1', 'productpage' => '5', 'autocompletepage' => '39', 'standortepid' => '34', 'beratungsterminpid' => '17', 'katalogbestellungpid' => '21', 'haendlersuchepid' => '18', 'pidBasket' => '41', 'isAnuba' => '0', 'data' => array('uid' => 5, 'pid' => 1, 'tstamp' => 1579168270, 'crdate' => 1574931485, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 128, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:47:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 'perms_userid' => 1, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'title' => 'Produkte', 'slug' => '/produkte', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 1, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1579625050, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 1, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'tx_impexp_origuid' => 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, 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'twitter_card' => ''), 'current' => null), false)
in /usr/home/www/helmutgoll.at/htdocs/releases/82/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 164
            $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 or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => null, 'partial' => 'Footer', 'delegate' => null, 'arguments' => array('content' => ' <div id="c1" class="frame frame-default frame-type-list frame-layout-0"> <div class="backgroundoutside "> <form id="mS3Form_0" action="/de/produkte?no_cache=1&amp;type=159"> <div class="container mt-3 productfiltercontainer"> <div class="row toprow"> <div class="col-4 col-lg-3 resultcounter"> <div class="resultcounternumber pr-2" id="resultcounternumber"></div> Produkte </div> <div class="col-8 col-lg-9 topfilter"> </div> <div class="col-3 col-md-3 formaticons" style="display: none;"> <button type="submit" class="btn "> <img class="mysvg32 " src="typo3conf/ext/goll/Resources/Public/Template/Images/goll_icons/32/icon_gallery-32.svg" height="32"> </button> <button type="submit" class="btn "> <img class="mysvg32" src="typo3conf/ext/goll/Resources/Public/Template/Images/goll_icons/32/icon_menu2-32.svg" height="32"> </button> </div> </div> <div class="row pl-3 pb-3"> <div class="col-md-3 p-0"> <div class="leftfilter"> <div class="row"> <div class="filter col-6"> FILTER </div> <div class="col-6"> <button type="submit" class="btn btn1 "> <img class="mysvg32" id="" src="typo3conf/ext/goll/Resources/Public/Template/Images/goll_icons/32/icon_filter-32white.svg" height="32"> </button> </div> </div> <div class="pb-3"> <diV class="bordertop"></diV> </div> <div class="row filterrow" id="filterrow"> <div class="col"><a onclick="removeAllFilters()" href="javascript:void(0);"> <div class="removefilters"> <img src="typo3conf/ext/goll/Resources/Public/Template/Images/goll_icons/24/icon_close-24red.svg" height="24" width="24" class=""><div class="removefilterstext">Filter zurücksetzen</div> </div></a></div></div> </div> </div> <div class="col-md-9 results" id="mS3Result_0"><script>upDateResultCounter("0")</script><div class="row pagination p-0 m-0 mt-5 mb-5"> <div class="col-4 col-lg-4 p-0 m-0"> <div class="text-center"> </div> </div> <div class="col-4 col-lg-4 p-0 m-0"> <div class="d-flex"> <ul class="paginationnumbers d-flex mx-auto p-0"> <li class="current"></li> </ul> </div> </div> <div class="col-4 col-lg-4 p-0 m-0"> <div class="text-center"> </div> </div></div></div> </div> </div> <script type="text/javascript">var ms3Control = null;jQuery(document).ready(function() { ms3Control = new Ms3CAjaxSearchController(\'mS3Form_0\'); ms3Control.init({"resultElement":"mS3Result_0"}); ms3Control.initializeFilters([]);});</script></form></div> </div> ', 'pidHomepage' => '1', 'productpage' => '5', 'autocompletepage' => '39', 'standortepid' => '34', 'beratungsterminpid' => '17', 'katalogbestellungpid' => '21', 'haendlersuchepid' => '18', 'pidBasket' => '41', 'isAnuba' => '0', 'data' => array('uid' => 5, 'pid' => 1, 'tstamp' => 1579168270, 'crdate' => 1574931485, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 128, 'rowDescription' => null, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l10n_diffsource' => 'a:47:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:9:"seo_title";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:8:"abstract";N;s:8:"keywords";N;s:11:"description";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 'perms_userid' => 1, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'title' => 'Produkte', 'slug' => '/produkte', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'shortcut' => 0, 'shortcut_mode' => 0, 'subtitle' => '', 'layout' => 1, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => null, 'no_search' => 0, 'SYS_LASTCHANGED' => 1579625050, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 1, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'tsconfig_includes' => null, 'tx_impexp_origuid' => 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, '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 /usr/home/www/helmutgoll.at/htdocs/shared/var/cache/code/fluid_template/Standard_action_default_396398fc47644e116a50e22b3d37f881436c37b3.php line 363
'contentAs' => NULL,
'debug' => true,
];

$output34 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments35, $renderChildrenClosure36, $renderingContext);

$output34 .= '
      ';
return $output34;
at Standard_action_default_396398fc47644e116a50e22b3d37f881436c37b3->{closure}()
in /usr/home/www/helmutgoll.at/htdocs/releases/82/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__then'])) {
                return $arguments['__then']();
            }
            return '';
        }
        if (!empty($arguments['__elseIf'])) {
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__then' => object(Closure), '__else' => object(Closure)), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/home/www/helmutgoll.at/htdocs/shared/var/cache/code/fluid_template/Standard_action_default_396398fc47644e116a50e22b3d37f881436c37b3.php line 398
return $output37;
},
];

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

$output0 .= '
</div>';
at Standard_action_default_396398fc47644e116a50e22b3d37f881436c37b3->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 184
        }

        if (!$parsedTemplate->hasLayout()) {
            $this->startRendering(self::RENDERING_TEMPLATE, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedTemplate->render($this->baseRenderingContext);
            $this->stopRendering();
        } else {
            $layoutName = $parsedTemplate->getLayoutName($this->baseRenderingContext);
            try {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 340
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 106

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:goll/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:goll/Resources/Private/Partials'), 'layoutRootPaths.' => array('EXT:goll/Resources/Private/Layouts'), 'variables.' => array('content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0')), 'pidHomepage' => 'TEXT', 'pidHomepage.' => array('value' => '1'), 'productpage' => 'TEXT', 'productpage.' => array('value' => '5'), 'autocompletepage' => 'TEXT', 'autocompletepage.' => array('value' => '39'), 'standortepid' => 'TEXT', 'standortepid.' => array('value' => '34'), 'beratungsterminpid' => 'TEXT', 'beratungsterminpid.' => array('value' => '17'), 'katalogbestellungpid' => 'TEXT', 'katalogbestellungpid.' => array('value' => '21'), 'haendlersuchepid' => 'TEXT', 'haendlersuchepid.' => array('value' => '18'), 'pidBasket' => 'TEXT', 'pidBasket.' => array('value' => '41'), 'isAnuba' => 'TEXT', 'isAnuba.' => array('value' => '0'))))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:goll/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:goll/Resources/Private/Partials'), 'layoutRootPaths.' => array('EXT:goll/Resources/Private/Layouts'), 'variables.' => array('content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0')), 'pidHomepage' => 'TEXT', 'pidHomepage.' => array('value' => '1'), 'productpage' => 'TEXT', 'productpage.' => array('value' => '5'), 'autocompletepage' => 'TEXT', 'autocompletepage.' => array('value' => '39'), 'standortepid' => 'TEXT', 'standortepid.' => array('value' => '34'), 'beratungsterminpid' => 'TEXT', 'beratungsterminpid.' => array('value' => '17'), 'katalogbestellungpid' => 'TEXT', 'katalogbestellungpid.' => array('value' => '21'), 'haendlersuchepid' => 'TEXT', 'haendlersuchepid.' => array('value' => '18'), 'pidBasket' => 'TEXT', 'pidBasket.' => array('value' => '41'), 'isAnuba' => 'TEXT', 'isAnuba.' => array('value' => '0'))))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:goll/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:goll/Resources/Private/Partials'), 'layoutRootPaths.' => array('EXT:goll/Resources/Private/Layouts'), 'variables.' => array('content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0')), 'pidHomepage' => 'TEXT', 'pidHomepage.' => array('value' => '1'), 'productpage' => 'TEXT', 'productpage.' => array('value' => '5'), 'autocompletepage' => 'TEXT', 'autocompletepage.' => array('value' => '39'), 'standortepid' => 'TEXT', 'standortepid.' => array('value' => '34'), 'beratungsterminpid' => 'TEXT', 'beratungsterminpid.' => array('value' => '17'), 'katalogbestellungpid' => 'TEXT', 'katalogbestellungpid.' => array('value' => '21'), 'haendlersuchepid' => 'TEXT', 'haendlersuchepid.' => array('value' => '18'), 'pidBasket' => 'TEXT', 'pidBasket.' => array('value' => '41'), 'isAnuba' => 'TEXT', 'isAnuba.' => array('value' => '0'))), '10')
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 713
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && !str_contains($theKey, '.')) {
                $conf = $setup[$theKey . '.'] ?? [];
                $contentObjects[] = $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $contentObjects;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSeparated(array('includeCSS.' => array('slickcarousel' => 'EXT:slickcarousel/Resources/Public/Css/slick.min.css', 'tx_cart' => 'EXT:cart/Resources/Public/Stylesheets/cart.css', 'lightbox' => 'EXT:ns_all_lightbox/Resources/Public/lightbox2/css/lightbox.css', 'mainCSS' => 'EXT:goll/Resources/Public/Template/css/app.css', 'mainCSS.' => array('media' => 'screen,print'), 'mobilmenu' => 'EXT:goll/Resources/Public/Template/css/jquery-simple-mobilemenu.css'), 'includeJSFooterlibs.' => array('jQuery' => 'EXT:slickcarousel/Resources/Public/JavaScript/jquery.min.js', 'jQuery.' => array('forceOnTop' => 'true'), 'slick' => 'EXT:slickcarousel/Resources/Public/JavaScript/slick.min.js', 'progressbar' => 'EXT:slickcarousel/Resources/Public/JavaScript/progressbar.min.js'), 'includeJSFooter.' => array('tx_cart' => 'EXT:cart/Resources/Public/JavaScripts/cart.js', 'lightbox2' => 'EXT:ns_all_lightbox/Resources/Public/lightbox2/js/lightbox.js', 'file1' => 'EXT:goll/Resources/Public/Template/js/footer.js', 'file1.' => array('type' => 'text/javascript')), 'includeJSLibs.' => array('nsfjquery' => 'EXT:ns_all_lightbox/Resources/Public/jQuery/jQuery.js', 'nsfjquery.' => array('if.' => array('isTrue' => '0')), 'jquery' => '//code.jquery.com/jquery-3.4.1.min.js', 'jquery.' => array('external' => '1'), 'popper' => '//cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js', 'popper.' => array('external' => '1', 'integrity' => 'sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q'), 'bootstrap' => '//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js', 'bootstrap.' => array('external' => '1', 'integrity' => 'sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl')), 'headerData.' => array('USER', '935.' => array('userFunc' => 'SGalinski\\SgCookieOptin\\UserFunction\\AddCookieOptinJsAndCss->addCSS'), 'USER', '945.' => array('userFunc' => 'SGalinski\\SgCookieOptin\\UserFunction\\AddCookieOptinJsAndCss->addJavaScript')), 'FLUIDTEMPLATE', '10.' => array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:goll/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:goll/Resources/Private/Partials'), 'layoutRootPaths.' => array('EXT:goll/Resources/Private/Layouts'), 'variables.' => array('content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0')), 'pidHomepage' => 'TEXT', 'pidHomepage.' => array('value' => '1'), 'productpage' => 'TEXT', 'productpage.' => array('value' => '5'), 'autocompletepage' => 'TEXT', 'autocompletepage.' => array('value' => '39'), 'standortepid' => 'TEXT', 'standortepid.' => array('value' => '34'), 'beratungsterminpid' => 'TEXT', 'beratungsterminpid.' => array('value' => '17'), 'katalogbestellungpid' => 'TEXT', 'katalogbestellungpid.' => array('value' => '21'), 'haendlersuchepid' => 'TEXT', 'haendlersuchepid.' => array('value' => '18'), 'pidBasket' => 'TEXT', 'pidBasket.' => array('value' => '41'), 'isAnuba' => 'TEXT', 'isAnuba.' => array('value' => '0'))), 'includeJS.' => array('file3' => 'EXT:ms3commercefx/Resources/Public/Template/js/mS3CAjaxSearch.js', 'file3.' => array('type' => 'text/javascript'), 'file4' => 'EXT:goll/Resources/Public/Template/js/jquery-simple-mobilemenu.js', 'file4.' => array('type' => 'text/x-javascript'), 'file5' => 'EXT:goll/Resources/Public/Template/js/goll.js', 'file5.' => array('type' => 'text/javascript')), 'shortcutIcon' => 'fileadmin/user_upload/index.ico'), '')
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 693
    {
        if (!is_array($setup)) {
            return '';
        }
        return implode('', $this->cObjGetSeparated($setup, $addKey));
    }

    /**
     * Rendering of a "numerical array" of cObjects from TypoScript
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('includeCSS.' => array('slickcarousel' => 'EXT:slickcarousel/Resources/Public/Css/slick.min.css', 'tx_cart' => 'EXT:cart/Resources/Public/Stylesheets/cart.css', 'lightbox' => 'EXT:ns_all_lightbox/Resources/Public/lightbox2/css/lightbox.css', 'mainCSS' => 'EXT:goll/Resources/Public/Template/css/app.css', 'mainCSS.' => array('media' => 'screen,print'), 'mobilmenu' => 'EXT:goll/Resources/Public/Template/css/jquery-simple-mobilemenu.css'), 'includeJSFooterlibs.' => array('jQuery' => 'EXT:slickcarousel/Resources/Public/JavaScript/jquery.min.js', 'jQuery.' => array('forceOnTop' => 'true'), 'slick' => 'EXT:slickcarousel/Resources/Public/JavaScript/slick.min.js', 'progressbar' => 'EXT:slickcarousel/Resources/Public/JavaScript/progressbar.min.js'), 'includeJSFooter.' => array('tx_cart' => 'EXT:cart/Resources/Public/JavaScripts/cart.js', 'lightbox2' => 'EXT:ns_all_lightbox/Resources/Public/lightbox2/js/lightbox.js', 'file1' => 'EXT:goll/Resources/Public/Template/js/footer.js', 'file1.' => array('type' => 'text/javascript')), 'includeJSLibs.' => array('nsfjquery' => 'EXT:ns_all_lightbox/Resources/Public/jQuery/jQuery.js', 'nsfjquery.' => array('if.' => array('isTrue' => '0')), 'jquery' => '//code.jquery.com/jquery-3.4.1.min.js', 'jquery.' => array('external' => '1'), 'popper' => '//cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js', 'popper.' => array('external' => '1', 'integrity' => 'sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q'), 'bootstrap' => '//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js', 'bootstrap.' => array('external' => '1', 'integrity' => 'sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl')), 'headerData.' => array('USER', '935.' => array('userFunc' => 'SGalinski\\SgCookieOptin\\UserFunction\\AddCookieOptinJsAndCss->addCSS'), 'USER', '945.' => array('userFunc' => 'SGalinski\\SgCookieOptin\\UserFunction\\AddCookieOptinJsAndCss->addJavaScript')), 'FLUIDTEMPLATE', '10.' => array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:goll/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:goll/Resources/Private/Partials'), 'layoutRootPaths.' => array('EXT:goll/Resources/Private/Layouts'), 'variables.' => array('content' => 'CONTENT', 'content.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => '{#colPos}=0')), 'pidHomepage' => 'TEXT', 'pidHomepage.' => array('value' => '1'), 'productpage' => 'TEXT', 'productpage.' => array('value' => '5'), 'autocompletepage' => 'TEXT', 'autocompletepage.' => array('value' => '39'), 'standortepid' => 'TEXT', 'standortepid.' => array('value' => '34'), 'beratungsterminpid' => 'TEXT', 'beratungsterminpid.' => array('value' => '17'), 'katalogbestellungpid' => 'TEXT', 'katalogbestellungpid.' => array('value' => '21'), 'haendlersuchepid' => 'TEXT', 'haendlersuchepid.' => array('value' => '18'), 'pidBasket' => 'TEXT', 'pidBasket.' => array('value' => '41'), 'isAnuba' => 'TEXT', 'isAnuba.' => array('value' => '0'))), 'includeJS.' => array('file3' => 'EXT:ms3commercefx/Resources/Public/Template/js/mS3CAjaxSearch.js', 'file3.' => array('type' => 'text/javascript'), 'file4' => 'EXT:goll/Resources/Public/Template/js/jquery-simple-mobilemenu.js', 'file4.' => array('type' => 'text/x-javascript'), 'file5' => 'EXT:goll/Resources/Public/Template/js/goll.js', 'file5.' => array('type' => 'text/javascript')), 'shortcutIcon' => 'fileadmin/user_upload/index.ico'))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 223
     * @return string
     */
    protected function generatePageBodyContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageBodyContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 189
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 141
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push($controller->sPre, 'PAGE');

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

            $this->timeTracker->pull($this->timeTracker->LR ? $controller->content : '');
            $this->timeTracker->decStackPointer();

at TYPO3\CMS\Frontend\Http\RequestHandler->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3conf/ext/vhs/Classes/Middleware/AssetInclusion.php line 20
class AssetInclusion implements MiddlewareInterface
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);

        $body = $response->getBody();
        $body->rewind();
        $contents = $body->getContents();
at FluidTYPO3\Vhs\Middleware\AssetInclusion->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Middleware/ResponsePropagation.php line 34
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        try {
            $response = $handler->handle($request);
        } catch (PropagateResponseException $e) {
            $response = $e->getResponse();
        }

at TYPO3\CMS\Core\Middleware\ResponsePropagation->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 48
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3conf/ext/dp_cookieconsent/Classes/Middleware/PlainRenderingMiddleware.php line 30
    {
        $frontendController = $GLOBALS['TSFE'];
        // check for default handling
        if (!$frontendController->isGeneratePage() || !isset($request->getQueryParams()[self::namespace])) {
            return $handler->handle($request);
        }
        // prepare rendering overwrite
        $frontendController->config['config']['debug'] = 0;
        $frontendController->config['config']['disableAllHeaderCode'] = 1;
at DirkPersky\DpCookieconsent\Middleware\PlainRenderingMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 44
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && StateUtility::isActivatedForUser()
            && StateUtility::isActivatedInTypoScript()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelDataPersister->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelRenderer.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && StateUtility::isActivatedForUser()
            && StateUtility::isActivatedInTypoScript()
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelRenderer->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if ($GLOBALS['TSFE'] instanceof TypoScriptFrontendController) {
            if (
                (!isset($GLOBALS['TSFE']->config['config']['enableContentLengthHeader']) || $GLOBALS['TSFE']->config['config']['enableContentLengthHeader'])
                && !$GLOBALS['TSFE']->isBackendUserLoggedIn() && !($GLOBALS['TYPO3_CONF_VARS']['FE']['debug'] ?? false)
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

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

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

    /**
     * Filters out the arguments that are necessary for calculating cHash
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/adminpanel/Classes/Middleware/SqlLogging.php line 58
        if (StateUtility::isActivatedForUser() && StateUtility::isOpen()) {
            $connection = $this->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(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 94
                $uri = $requestedUri->withPath(rtrim($requestedUri->getPath(), '/'));
                return new RedirectResponse($uri, 307);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3conf/ext/sg_cookie_optin/Classes/Middlewares/SaveOptinHistory.php line 54
  * @param RequestHandlerInterface $handler
  * @return ResponseInterface
  */
 public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface {
  $response = $handler->handle($request);
  if (!isset($request->getQueryParams()['saveOptinHistory'], $request->getParsedBody()['lastPreferences'])) {
   return $response;
  }

at SGalinski\SgCookieOptin\Middlewares\SaveOptinHistory->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelInitiator.php line 55
                MainController::class
            );
            $request = $adminPanelController->initialize($request);
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelInitiator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

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

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

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

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

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 64
    {
        $eID = $request->getParsedBody()['eID'] ?? $request->getQueryParams()['eID'] ?? null;

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

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

    /**
     * Checks if the provided host header value matches the trusted hosts pattern.
at TYPO3\CMS\Core\Middleware\VerifyHostHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$4b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 78
     * @return ResponseInterface
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/AbstractApplication.php line 86
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        try {
            $response = $this->requestHandler->handle($request);
        } catch (ImmediateResponseException $exception) {
            $response = $exception->getResponse();
        }
        return $response;
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/frontend/Classes/Http/Application.php line 69
        // Create new request object having applicationType "I am a frontend request" attribute.
        $request = $request->withAttribute('applicationType', SystemEnvironmentBuilder::REQUESTTYPE_FE);

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

    /**
     * Create a PSR-7 Response that redirects to the install tool
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/typo3/sysext/core/Classes/Http/AbstractApplication.php line 100
     * @param callable $execute Deprecated, will be removed in TYPO3 v12.0
     */
    final public function run(callable $execute = null)
    {
        $response = $this->handle(ServerRequestFactory::fromGlobals());
        if ($execute !== null) {
            trigger_error('Custom execution of Application code will be removed in TYPO3 v12.0, use PSR-15 Middlewares instead.', E_USER_DEPRECATED);
            $execute();
        }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/index.php line 20
// Set up the application for the frontend
call_user_func(static function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /usr/home/www/helmutgoll.at/htdocs/releases/82/public/index.php line 21
call_user_func(static function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});