Whoops, looks like something went wrong.

(1/1) Error

Call to undefined method TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController::pageNotFoundAndExit()

in /usr/www/users/herzog/webseite_2022/packages/veranstaltungen/Classes/Controller/VeranstaltungController.php line 194
     */
    public function showAction(\Triebwerk\Veranstaltungen\Domain\Model\Veranstaltung $veranstaltung = null)
    {
        if ($veranstaltung === null) {
            $GLOBALS['TSFE']->pageNotFoundAndExit('Entity not found.');
        }
        $this->view->assign('veranstaltung', $veranstaltung);
    }
    
at Triebwerk\Veranstaltungen\Controller\VeranstaltungController->showAction(null)
in /usr/www/users/herzog/webseite_2022/public/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 571
        }
        $validationResult = $this->arguments->validate();
        if (!$validationResult->hasErrors()) {
            $this->eventDispatcher->dispatch(new BeforeActionCallEvent(static::class, $this->actionMethodName, $preparedArguments));
            $actionResult = $this->{$this->actionMethodName}(...$preparedArguments);
        } else {
            $actionResult = $this->{$this->errorMethodName}();
        }

at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->callActionMethod(object(TYPO3\CMS\Extbase\Mvc\Request))
in /usr/www/users/herzog/webseite_2022/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/www/users/herzog/webseite_2022/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/www/users/herzog/webseite_2022/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/www/users/herzog/webseite_2022/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/www/users/herzog/webseite_2022/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' => 'Veranstaltungen', 'pluginName' => 'Veranstaltungen'), object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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' => 'Veranstaltungen', 'pluginName' => 'Veranstaltungen'), '')
in /usr/www/users/herzog/webseite_2022/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' => 'Veranstaltungen', 'pluginName' => 'Veranstaltungen'))
in /usr/www/users/herzog/webseite_2022/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' => 'Veranstaltungen', 'pluginName' => 'Veranstaltungen'))
in /usr/www/users/herzog/webseite_2022/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' => 'Veranstaltungen', 'pluginName' => 'Veranstaltungen'))
in /usr/www/users/herzog/webseite_2022/public/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php line 2853
                        case 'COA':
                            $nonCacheableContent = $contentObjectRendererForNonCacheable->cObjGetSingle('COA', $nonCacheableData[$nonCacheableKey]['conf']);
                            break;
                        case 'FUNC':
                            $nonCacheableContent = $contentObjectRendererForNonCacheable->cObjGetSingle('USER', $nonCacheableData[$nonCacheableKey]['conf']);
                            break;
                        case 'POSTUSERFUNC':
                            $nonCacheableContent = $contentObjectRendererForNonCacheable->callUserFunction($nonCacheableData[$nonCacheableKey]['postUserFunc'], $nonCacheableData[$nonCacheableKey]['conf'], $nonCacheableData[$nonCacheableKey]['content']);
                            break;
at TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController->processNonCacheableContentPartsAndSubstituteContentMarkers(array('INT_SCRIPT.ad6fec797f5d032c0c78f4792b32a6e7' => array('conf' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Veranstaltungen', 'pluginName' => 'Veranstaltungen'), 'cObj' => 'O:54:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectRenderer":27:{s:5:"align";a:3:{i:0;s:6:"center";i:1;s:5:"right";i:2;s:4:"left";}s:12:"stdWrapOrder";a:148:{s:17:"stdWrapPreProcess";s:4:"hook";s:9:"cacheRead";s:4:"hook";s:19:"setContentToCurrent";s:7:"boolean";s:20:"setContentToCurrent.";s:5:"array";s:16:"addPageCacheTags";s:6:"string";s:17:"addPageCacheTags.";s:5:"array";s:10:"setCurrent";s:6:"string";s:11:"setCurrent.";s:5:"array";s:5:"lang.";s:5:"array";s:4:"data";s:7:"getText";s:5:"data.";s:5:"array";s:5:"field";s:9:"fieldName";s:6:"field.";s:5:"array";s:7:"current";s:7:"boolean";s:8:"current.";s:5:"array";s:7:"cObject";s:7:"cObject";s:8:"cObject.";s:5:"array";s:8:"numRows.";s:5:"array";s:11:"preUserFunc";s:12:"functionName";s:15:"stdWrapOverride";s:4:"hook";s:8:"override";s:6:"string";s:9:"override.";s:5:"array";s:17:"preIfEmptyListNum";s:7:"listNum";s:18:"preIfEmptyListNum.";s:5:"array";s:6:"ifNull";s:6:"string";s:7:"ifNull.";s:5:"array";s:7:"ifEmpty";s:6:"string";s:8:"ifEmpty.";s:5:"array";s:7:"ifBlank";s:6:"string";s:8:"ifBlank.";s:5:"array";s:7:"listNum";s:7:"listNum";s:8:"listNum.";s:5:"array";s:4:"trim";s:7:"boolean";s:5:"trim.";s:5:"array";s:7:"strPad.";s:5:"array";s:7:"stdWrap";s:7:"stdWrap";s:8:"stdWrap.";s:5:"array";s:14:"stdWrapProcess";s:4:"hook";s:8:"required";s:7:"boolean";s:9:"required.";s:5:"array";s:3:"if.";s:5:"array";s:13:"fieldRequired";s:9:"fieldName";s:14:"fieldRequired.";s:5:"array";s:6:"csConv";s:6:"string";s:7:"csConv.";s:5:"array";s:9:"parseFunc";s:10:"objectpath";s:10:"parseFunc.";s:5:"array";s:10:"HTMLparser";s:7:"boolean";s:11:"HTMLparser.";s:5:"array";s:6:"split.";s:5:"array";s:12:"replacement.";s:5:"array";s:10:"prioriCalc";s:7:"boolean";s:11:"prioriCalc.";s:5:"array";s:4:"char";s:7:"integer";s:5:"char.";s:5:"array";s:6:"intval";s:7:"boolean";s:7:"intval.";s:5:"array";s:4:"hash";s:6:"string";s:5:"hash.";s:5:"array";s:5:"round";s:7:"boolean";s:6:"round.";s:5:"array";s:13:"numberFormat.";s:5:"array";s:10:"expandList";s:7:"boolean";s:11:"expandList.";s:5:"array";s:4:"date";s:8:"dateconf";s:5:"date.";s:5:"array";s:9:"strtotime";s:13:"strtotimeconf";s:10:"strtotime.";s:5:"array";s:8:"strftime";s:12:"strftimeconf";s:9:"strftime.";s:5:"array";s:3:"age";s:7:"boolean";s:4:"age.";s:5:"array";s:4:"case";s:4:"case";s:5:"case.";s:5:"array";s:5:"bytes";s:7:"boolean";s:6:"bytes.";s:5:"array";s:9:"substring";s:10:"parameters";s:10:"substring.";s:5:"array";s:8:"cropHTML";s:4:"crop";s:9:"cropHTML.";s:5:"array";s:9:"stripHtml";s:7:"boolean";s:10:"stripHtml.";s:5:"array";s:4:"crop";s:4:"crop";s:5:"crop.";s:5:"array";s:12:"rawUrlEncode";s:7:"boolean";s:13:"rawUrlEncode.";s:5:"array";s:16:"htmlSpecialChars";s:7:"boolean";s:17:"htmlSpecialChars.";s:5:"array";s:24:"encodeForJavaScriptValue";s:7:"boolean";s:25:"encodeForJavaScriptValue.";s:5:"array";s:11:"doubleBrTag";s:6:"string";s:12:"doubleBrTag.";s:5:"array";s:2:"br";s:7:"boolean";s:3:"br.";s:5:"array";s:5:"brTag";s:6:"string";s:6:"brTag.";s:5:"array";s:12:"encapsLines.";s:5:"array";s:8:"keywords";s:7:"boolean";s:9:"keywords.";s:5:"array";s:9:"innerWrap";s:4:"wrap";s:10:"innerWrap.";s:5:"array";s:10:"innerWrap2";s:4:"wrap";s:11:"innerWrap2.";s:5:"array";s:10:"preCObject";s:7:"cObject";s:11:"preCObject.";s:5:"array";s:11:"postCObject";s:7:"cObject";s:12:"postCObject.";s:5:"array";s:9:"wrapAlign";s:5:"align";s:10:"wrapAlign.";s:5:"array";s:9:"typolink.";s:5:"array";s:4:"wrap";s:4:"wrap";s:5:"wrap.";s:5:"array";s:10:"noTrimWrap";s:4:"wrap";s:11:"noTrimWrap.";s:5:"array";s:5:"wrap2";s:4:"wrap";s:6:"wrap2.";s:5:"array";s:8:"dataWrap";s:8:"dataWrap";s:9:"dataWrap.";s:5:"array";s:7:"prepend";s:7:"cObject";s:8:"prepend.";s:5:"array";s:6:"append";s:7:"cObject";s:7:"append.";s:5:"array";s:5:"wrap3";s:4:"wrap";s:6:"wrap3.";s:5:"array";s:14:"orderedStdWrap";s:7:"stdWrap";s:15:"orderedStdWrap.";s:5:"array";s:9:"outerWrap";s:4:"wrap";s:10:"outerWrap.";s:5:"array";s:10:"insertData";s:7:"boolean";s:11:"insertData.";s:5:"array";s:12:"postUserFunc";s:12:"functionName";s:15:"postUserFuncInt";s:12:"functionName";s:13:"prefixComment";s:6:"string";s:14:"prefixComment.";s:5:"array";s:9:"editIcons";s:6:"string";s:10:"editIcons.";s:5:"array";s:9:"editPanel";s:7:"boolean";s:10:"editPanel.";s:5:"array";s:12:"htmlSanitize";s:7:"boolean";s:13:"htmlSanitize.";s:5:"array";s:10:"cacheStore";s:4:"hook";s:18:"stdWrapPostProcess";s:4:"hook";s:5:"debug";s:7:"boolean";s:6:"debug.";s:5:"array";s:9:"debugFunc";s:7:"boolean";s:10:"debugFunc.";s:5:"array";s:9:"debugData";s:7:"boolean";s:10:"debugData.";s:5:"array";}s:24:"' . "\0" . '*' . "\0" . 'contentObjectClassMap";a:22:{s:4:"TEXT";s:50:"TYPO3\\CMS\\Frontend\\ContentObject\\TextContentObject";s:4:"CASE";s:50:"TYPO3\\CMS\\Frontend\\ContentObject\\CaseContentObject";s:3:"COA";s:64:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectArrayContentObject";s:7:"COA_INT";s:72:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectArrayInternalContentObject";s:4:"USER";s:50:"TYPO3\\CMS\\Frontend\\ContentObject\\UserContentObject";s:8:"USER_INT";s:58:"TYPO3\\CMS\\Frontend\\ContentObject\\UserInternalContentObject";s:5:"FILES";s:51:"TYPO3\\CMS\\Frontend\\ContentObject\\FilesContentObject";s:5:"IMAGE";s:51:"TYPO3\\CMS\\Frontend\\ContentObject\\ImageContentObject";s:12:"IMG_RESOURCE";s:59:"TYPO3\\CMS\\Frontend\\ContentObject\\ImageResourceContentObject";s:7:"CONTENT";s:53:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentContentObject";s:7:"RECORDS";s:53:"TYPO3\\CMS\\Frontend\\ContentObject\\RecordsContentObject";s:5:"HMENU";s:62:"TYPO3\\CMS\\Frontend\\ContentObject\\HierarchicalMenuContentObject";s:13:"LOAD_REGISTER";s:58:"TYPO3\\CMS\\Frontend\\ContentObject\\LoadRegisterContentObject";s:16:"RESTORE_REGISTER";s:61:"TYPO3\\CMS\\Frontend\\ContentObject\\RestoreRegisterContentObject";s:13:"FLUIDTEMPLATE";s:59:"TYPO3\\CMS\\Frontend\\ContentObject\\FluidTemplateContentObject";s:3:"SVG";s:68:"TYPO3\\CMS\\Frontend\\ContentObject\\ScalableVectorGraphicsContentObject";s:9:"EDITPANEL";s:55:"TYPO3\\CMS\\Frontend\\ContentObject\\EditPanelContentObject";s:15:"SOLR_MULTIVALUE";s:48:"ApacheSolrForTypo3\\Solr\\ContentObject\\Multivalue";s:12:"SOLR_CONTENT";s:45:"ApacheSolrForTypo3\\Solr\\ContentObject\\Content";s:13:"SOLR_RELATION";s:46:"ApacheSolrForTypo3\\Solr\\ContentObject\\Relation";s:19:"SOLR_CLASSIFICATION";s:52:"ApacheSolrForTypo3\\Solr\\ContentObject\\Classification";s:20:"TYPOSCRIPT_RENDERING";s:73:"Helhum\\TyposcriptRendering\\ContentObject\\TypoScriptRenderingContentObject";}s:4:"data";a:136:{s:3:"uid";i:248;s:3:"pid";i:69;s:9:"t3ver_oid";i:0;s:10:"t3ver_wsid";i:0;s:11:"t3ver_state";i:0;s:11:"t3ver_stage";i:0;s:10:"t3_origuid";i:0;s:6:"tstamp";i:1474370345;s:6:"crdate";i:1464860167;s:9:"cruser_id";i:2;s:8:"editlock";i:0;s:6:"hidden";i:0;s:7:"sorting";i:384;s:5:"CType";s:4:"list";s:6:"header";s:0:"";s:14:"rowDescription";s:0:"";s:8:"bodytext";N;s:5:"image";i:0;s:10:"imagewidth";i:0;s:11:"imageorient";i:0;s:9:"imagecols";i:2;s:11:"imageborder";i:0;s:5:"media";i:0;s:6:"layout";s:1:"0";s:7:"deleted";i:0;s:4:"cols";i:0;s:7:"records";N;s:5:"pages";s:0:"";s:9:"starttime";i:0;s:7:"endtime";i:0;s:6:"colPos";i:1;s:9:"subheader";s:0:"";s:8:"fe_group";s:0:"";s:11:"header_link";s:0:"";s:10:"image_zoom";i:0;s:13:"header_layout";s:1:"0";s:9:"list_type";s:31:"veranstaltungen_veranstaltungen";s:12:"sectionIndex";i:1;s:9:"linkToTop";i:0;s:16:"file_collections";N;s:13:"filelink_size";i:0;s:16:"filelink_sorting";s:0:"";s:6:"target";s:0:"";s:4:"date";i:0;s:9:"recursive";i:0;s:11:"imageheight";i:0;s:16:"sys_language_uid";i:0;s:11:"pi_flexform";s:4135:"<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.detail"> <value index="vDEF"></value> </field> <field index="settings.list"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="main"> <language index="lDEF"> <field index="switchableControllerActions"> <value index="vDEF">Veranstaltung-&gt;datepickerheader</value> </field> </language> </sheet> <sheet index="calendar"> <language index="lDEF"> <field index="settings.category"> <value index="vDEF">Veranstaltung-&gt;list</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.pagerabove"> <value index="vDEF">0</value> </field> <field index="settings.pagerbelow"> <value index="vDEF">0</value> </field> <field index="settings.detail"> <value index="vDEF"></value> </field> <field index="settings.list"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="list"> <language index="lDEF"> <field index="settings.category"> <value index="vDEF">Veranstaltung-&gt;list</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.pagerabove"> <value index="vDEF">0</value> </field> <field index="settings.pagerbelow"> <value index="vDEF">0</value> </field> <field index="settings.detail"> <value index="vDEF"></value> </field> <field index="settings.list"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="widget"> <language index="lDEF"> <field index="settings.category"> <value index="vDEF">Veranstaltung-&gt;list</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.pagerabove"> <value index="vDEF">0</value> </field> <field index="settings.pagerbelow"> <value index="vDEF">0</value> </field> <field index="settings.detail"> <value index="vDEF"></value> </field> <field index="settings.list"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="header"> <language index="lDEF"> <field index="settings.detail"> <value index="vDEF"></value> </field> <field index="settings.list"> <value index="vDEF"></value> </field> <field index="settings.header_image"> <value index="vDEF">1124</value> </field> <field index="settings.headertext"> <value index="vDEF">Finden Sie Veranstaltungen in Herzogenaurach:</value> </field> <field index="settings.headerorientation"> <value index="vDEF">center</value> </field> </language> </sheet> </data></T3FlexForms>";s:19:"accessibility_title";s:0:"";s:20:"accessibility_bypass";i:0;s:25:"accessibility_bypass_text";s:0:"";s:11:"l18n_parent";i:0;s:15:"l18n_diffsource";s:356:"{"CType":null,"colPos":null,"sys_language_uid":null,"header":null,"header_layout":null,"date":null,"header_link":null,"rowDescription":null,"list_type":null,"pi_flexform":null,"layout":null,"sectionIndex":null,"linkToTop":null,"hidden":null,"starttime":null,"endtime":null,"fe_group":null,"editlock":null,"categories":null,"tx_gridelements_container":null}";s:19:"selected_categories";N;s:14:"category_field";s:0:"";s:13:"table_caption";N;s:15:"table_delimiter";i:124;s:15:"table_enclosure";i:0;s:21:"table_header_position";i:0;s:11:"table_tfoot";i:0;s:12:"bullets_type";i:0;s:19:"uploads_description";i:0;s:12:"uploads_type";i:0;s:6:"assets";i:0;s:10:"categories";i:0;s:28:"tx_mask_vertical_orientation";N;s:20:"tx_news_related_news";i:0;s:24:"tx_mask_accordion_rahmen";i:0;s:15:"tx_mask_kontakt";N;s:23:"tx_mask_oeffnungszeiten";N;s:17:"tx_mask_linkitems";i:0;s:16:"tx_mask_headline";s:7:"Partner";s:17:"tx_mask_subhead_1";s:34:"Partnerschaften & Zertifizierungen";s:17:"tx_mask_subhead_2";s:16:"Services & ÖPNV";s:22:"tx_mask_partner1_image";i:0;s:22:"tx_mask_partner2_image";i:0;s:23:"tx_mask_infoblock_image";i:0;s:29:"tx_mask_infoblock_secondimage";i:0;s:21:"tx_mask_subnav_header";N;s:20:"tx_mask_infoheadline";s:25:"Kontakt & Öffnungszeiten";s:22:"tx_mask_teaserheadline";N;s:12:"tx_mask_icon";N;s:18:"tx_mask_dllinkitem";i:0;s:20:"tx_mask_top_headline";s:10:"Top-Themen";s:19:"tx_mask_top_buerger";i:0;s:18:"tx_mask_top_gaeste";i:0;s:12:"backupColPos";i:-2;s:30:"tx_gridelements_backend_layout";s:0:"";s:24:"tx_gridelements_children";i:0;s:25:"tx_gridelements_container";i:0;s:23:"tx_gridelements_columns";i:0;s:24:"tx_mask_gallery_headline";s:13:"Bildergalerie";s:22:"tx_mask_gallery_images";i:0;s:25:"tx_mask_gallery_maximages";i:0;s:26:"tx_mask_outletheader_image";i:0;s:25:"tx_mask_outletheader_item";i:0;s:24:"tx_mask_outlet_headline1";N;s:24:"tx_mask_outlet_headline2";N;s:24:"tx_mask_outletitem_title";N;s:26:"tx_mask_outletitem_strasse";N;s:22:"tx_mask_outletitem_plz";N;s:22:"tx_mask_outletitem_ort";N;s:22:"tx_mask_outletitem_fon";N;s:22:"tx_mask_outletitem_fax";N;s:25:"tx_mask_outletitem_images";i:0;s:34:"tx_mask_outletitem_oeffnungszeiten";N;s:26:"tx_mask_outletitem_angebot";N;s:35:"tx_mask_outletitem_customaccordions";i:0;s:23:"tx_mask_outletitem_logo";i:0;s:29:"tx_mask_outletslider_headline";N;s:25:"tx_mask_outletslider_item";i:0;s:25:"tx_mask_outletdatecontent";i:0;s:32:"tx_mask_outletdatecontent_parent";i:0;s:22:"tx_mask_outletitem_map";i:0;s:23:"tx_mask_teaser_headline";N;s:30:"tx_mask_teaser_newsletter_text";N;s:30:"tx_mask_teaser_newsletter_link";N;s:36:"tx_mask_teaser_newsletter_link_title";N;s:33:"tx_mask_newsletter_optin_headline";N;s:29:"tx_mask_newsletter_optin_text";N;s:15:"header_position";s:0:"";s:11:"frame_class";s:7:"default";s:18:"space_before_class";s:0:"";s:17:"space_after_class";s:0:"";s:11:"l10n_source";i:0;s:11:"table_class";s:0:"";s:10:"l10n_state";N;s:26:"filelink_sorting_direction";s:0:"";s:17:"tx_impexp_origuid";i:0;s:35:"gridelements_shortcut_page_order_by";i:0;s:40:"tx_paginatedprocessors_paginationenabled";i:0;s:35:"tx_paginatedprocessors_itemsperpage";N;s:37:"tx_paginatedprocessors_pagelinksshown";N;s:33:"tx_paginatedprocessors_urlsegment";N;s:29:"tx_paginatedprocessors_anchor";i:0;s:31:"tx_paginatedprocessors_anchorid";i:0;}s:8:"' . "\0" . '*' . "\0" . 'table";s:10:"tt_content";s:7:"oldData";a:0:{}s:15:"alternativeData";s:0:"";s:10:"parameters";a:0:{}s:13:"currentValKey";s:26:"currentValue_kidjls9dksoje";s:13:"currentRecord";s:14:"tt_content:248";s:18:"currentRecordTotal";i:0;s:19:"currentRecordNumber";i:0;s:18:"parentRecordNumber";i:0;s:12:"parentRecord";a:0:{}s:23:"checkPid_badDoktypeList";i:255;s:15:"lastTypoLinkUrl";s:0:"";s:18:"lastTypoLinkTarget";s:0:"";s:14:"lastTypoLinkLD";a:0:{}s:18:"lastTypoLinkResult";N;s:14:"recordRegister";a:0:{}s:21:"' . "\0" . '*' . "\0" . 'stdWrapHookObjects";a:0:{}s:28:"' . "\0" . '*' . "\0" . 'getImgResourceHookObjects";N;s:24:"doConvertToUserIntObject";b:0;s:17:"' . "\0" . '*' . "\0" . 'userObjectType";i:1;s:16:"' . "\0" . '*' . "\0" . 'stopRendering";a:0:{}s:24:"' . "\0" . '*' . "\0" . 'stdWrapRecursionLevel";i:0;s:32:"' . "\0" . '*' . "\0" . 'defaultFrontendJavaScriptFile";s:60:"EXT:frontend/Resources/Public/JavaScript/default_frontend.js";}', 'type' => 'FUNC'), 'INT_SCRIPT.732ad100204f74035089a7930fafdd08' => array('conf' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login'), 'cObj' => 'O:54:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectRenderer":27:{s:5:"align";a:3:{i:0;s:6:"center";i:1;s:5:"right";i:2;s:4:"left";}s:12:"stdWrapOrder";a:148:{s:17:"stdWrapPreProcess";s:4:"hook";s:9:"cacheRead";s:4:"hook";s:19:"setContentToCurrent";s:7:"boolean";s:20:"setContentToCurrent.";s:5:"array";s:16:"addPageCacheTags";s:6:"string";s:17:"addPageCacheTags.";s:5:"array";s:10:"setCurrent";s:6:"string";s:11:"setCurrent.";s:5:"array";s:5:"lang.";s:5:"array";s:4:"data";s:7:"getText";s:5:"data.";s:5:"array";s:5:"field";s:9:"fieldName";s:6:"field.";s:5:"array";s:7:"current";s:7:"boolean";s:8:"current.";s:5:"array";s:7:"cObject";s:7:"cObject";s:8:"cObject.";s:5:"array";s:8:"numRows.";s:5:"array";s:11:"preUserFunc";s:12:"functionName";s:15:"stdWrapOverride";s:4:"hook";s:8:"override";s:6:"string";s:9:"override.";s:5:"array";s:17:"preIfEmptyListNum";s:7:"listNum";s:18:"preIfEmptyListNum.";s:5:"array";s:6:"ifNull";s:6:"string";s:7:"ifNull.";s:5:"array";s:7:"ifEmpty";s:6:"string";s:8:"ifEmpty.";s:5:"array";s:7:"ifBlank";s:6:"string";s:8:"ifBlank.";s:5:"array";s:7:"listNum";s:7:"listNum";s:8:"listNum.";s:5:"array";s:4:"trim";s:7:"boolean";s:5:"trim.";s:5:"array";s:7:"strPad.";s:5:"array";s:7:"stdWrap";s:7:"stdWrap";s:8:"stdWrap.";s:5:"array";s:14:"stdWrapProcess";s:4:"hook";s:8:"required";s:7:"boolean";s:9:"required.";s:5:"array";s:3:"if.";s:5:"array";s:13:"fieldRequired";s:9:"fieldName";s:14:"fieldRequired.";s:5:"array";s:6:"csConv";s:6:"string";s:7:"csConv.";s:5:"array";s:9:"parseFunc";s:10:"objectpath";s:10:"parseFunc.";s:5:"array";s:10:"HTMLparser";s:7:"boolean";s:11:"HTMLparser.";s:5:"array";s:6:"split.";s:5:"array";s:12:"replacement.";s:5:"array";s:10:"prioriCalc";s:7:"boolean";s:11:"prioriCalc.";s:5:"array";s:4:"char";s:7:"integer";s:5:"char.";s:5:"array";s:6:"intval";s:7:"boolean";s:7:"intval.";s:5:"array";s:4:"hash";s:6:"string";s:5:"hash.";s:5:"array";s:5:"round";s:7:"boolean";s:6:"round.";s:5:"array";s:13:"numberFormat.";s:5:"array";s:10:"expandList";s:7:"boolean";s:11:"expandList.";s:5:"array";s:4:"date";s:8:"dateconf";s:5:"date.";s:5:"array";s:9:"strtotime";s:13:"strtotimeconf";s:10:"strtotime.";s:5:"array";s:8:"strftime";s:12:"strftimeconf";s:9:"strftime.";s:5:"array";s:3:"age";s:7:"boolean";s:4:"age.";s:5:"array";s:4:"case";s:4:"case";s:5:"case.";s:5:"array";s:5:"bytes";s:7:"boolean";s:6:"bytes.";s:5:"array";s:9:"substring";s:10:"parameters";s:10:"substring.";s:5:"array";s:8:"cropHTML";s:4:"crop";s:9:"cropHTML.";s:5:"array";s:9:"stripHtml";s:7:"boolean";s:10:"stripHtml.";s:5:"array";s:4:"crop";s:4:"crop";s:5:"crop.";s:5:"array";s:12:"rawUrlEncode";s:7:"boolean";s:13:"rawUrlEncode.";s:5:"array";s:16:"htmlSpecialChars";s:7:"boolean";s:17:"htmlSpecialChars.";s:5:"array";s:24:"encodeForJavaScriptValue";s:7:"boolean";s:25:"encodeForJavaScriptValue.";s:5:"array";s:11:"doubleBrTag";s:6:"string";s:12:"doubleBrTag.";s:5:"array";s:2:"br";s:7:"boolean";s:3:"br.";s:5:"array";s:5:"brTag";s:6:"string";s:6:"brTag.";s:5:"array";s:12:"encapsLines.";s:5:"array";s:8:"keywords";s:7:"boolean";s:9:"keywords.";s:5:"array";s:9:"innerWrap";s:4:"wrap";s:10:"innerWrap.";s:5:"array";s:10:"innerWrap2";s:4:"wrap";s:11:"innerWrap2.";s:5:"array";s:10:"preCObject";s:7:"cObject";s:11:"preCObject.";s:5:"array";s:11:"postCObject";s:7:"cObject";s:12:"postCObject.";s:5:"array";s:9:"wrapAlign";s:5:"align";s:10:"wrapAlign.";s:5:"array";s:9:"typolink.";s:5:"array";s:4:"wrap";s:4:"wrap";s:5:"wrap.";s:5:"array";s:10:"noTrimWrap";s:4:"wrap";s:11:"noTrimWrap.";s:5:"array";s:5:"wrap2";s:4:"wrap";s:6:"wrap2.";s:5:"array";s:8:"dataWrap";s:8:"dataWrap";s:9:"dataWrap.";s:5:"array";s:7:"prepend";s:7:"cObject";s:8:"prepend.";s:5:"array";s:6:"append";s:7:"cObject";s:7:"append.";s:5:"array";s:5:"wrap3";s:4:"wrap";s:6:"wrap3.";s:5:"array";s:14:"orderedStdWrap";s:7:"stdWrap";s:15:"orderedStdWrap.";s:5:"array";s:9:"outerWrap";s:4:"wrap";s:10:"outerWrap.";s:5:"array";s:10:"insertData";s:7:"boolean";s:11:"insertData.";s:5:"array";s:12:"postUserFunc";s:12:"functionName";s:15:"postUserFuncInt";s:12:"functionName";s:13:"prefixComment";s:6:"string";s:14:"prefixComment.";s:5:"array";s:9:"editIcons";s:6:"string";s:10:"editIcons.";s:5:"array";s:9:"editPanel";s:7:"boolean";s:10:"editPanel.";s:5:"array";s:12:"htmlSanitize";s:7:"boolean";s:13:"htmlSanitize.";s:5:"array";s:10:"cacheStore";s:4:"hook";s:18:"stdWrapPostProcess";s:4:"hook";s:5:"debug";s:7:"boolean";s:6:"debug.";s:5:"array";s:9:"debugFunc";s:7:"boolean";s:10:"debugFunc.";s:5:"array";s:9:"debugData";s:7:"boolean";s:10:"debugData.";s:5:"array";}s:24:"' . "\0" . '*' . "\0" . 'contentObjectClassMap";a:22:{s:4:"TEXT";s:50:"TYPO3\\CMS\\Frontend\\ContentObject\\TextContentObject";s:4:"CASE";s:50:"TYPO3\\CMS\\Frontend\\ContentObject\\CaseContentObject";s:3:"COA";s:64:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectArrayContentObject";s:7:"COA_INT";s:72:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectArrayInternalContentObject";s:4:"USER";s:50:"TYPO3\\CMS\\Frontend\\ContentObject\\UserContentObject";s:8:"USER_INT";s:58:"TYPO3\\CMS\\Frontend\\ContentObject\\UserInternalContentObject";s:5:"FILES";s:51:"TYPO3\\CMS\\Frontend\\ContentObject\\FilesContentObject";s:5:"IMAGE";s:51:"TYPO3\\CMS\\Frontend\\ContentObject\\ImageContentObject";s:12:"IMG_RESOURCE";s:59:"TYPO3\\CMS\\Frontend\\ContentObject\\ImageResourceContentObject";s:7:"CONTENT";s:53:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentContentObject";s:7:"RECORDS";s:53:"TYPO3\\CMS\\Frontend\\ContentObject\\RecordsContentObject";s:5:"HMENU";s:62:"TYPO3\\CMS\\Frontend\\ContentObject\\HierarchicalMenuContentObject";s:13:"LOAD_REGISTER";s:58:"TYPO3\\CMS\\Frontend\\ContentObject\\LoadRegisterContentObject";s:16:"RESTORE_REGISTER";s:61:"TYPO3\\CMS\\Frontend\\ContentObject\\RestoreRegisterContentObject";s:13:"FLUIDTEMPLATE";s:59:"TYPO3\\CMS\\Frontend\\ContentObject\\FluidTemplateContentObject";s:3:"SVG";s:68:"TYPO3\\CMS\\Frontend\\ContentObject\\ScalableVectorGraphicsContentObject";s:9:"EDITPANEL";s:55:"TYPO3\\CMS\\Frontend\\ContentObject\\EditPanelContentObject";s:15:"SOLR_MULTIVALUE";s:48:"ApacheSolrForTypo3\\Solr\\ContentObject\\Multivalue";s:12:"SOLR_CONTENT";s:45:"ApacheSolrForTypo3\\Solr\\ContentObject\\Content";s:13:"SOLR_RELATION";s:46:"ApacheSolrForTypo3\\Solr\\ContentObject\\Relation";s:19:"SOLR_CLASSIFICATION";s:52:"ApacheSolrForTypo3\\Solr\\ContentObject\\Classification";s:20:"TYPOSCRIPT_RENDERING";s:73:"Helhum\\TyposcriptRendering\\ContentObject\\TypoScriptRenderingContentObject";}s:4:"data";a:136:{s:3:"uid";i:160;s:3:"pid";i:69;s:9:"t3ver_oid";i:0;s:10:"t3ver_wsid";i:0;s:11:"t3ver_state";i:0;s:11:"t3ver_stage";i:0;s:10:"t3_origuid";i:0;s:6:"tstamp";i:1675152876;s:6:"crdate";i:1461765635;s:9:"cruser_id";i:2;s:8:"editlock";i:0;s:6:"hidden";i:0;s:7:"sorting";i:448;s:5:"CType";s:13:"felogin_login";s:6:"header";s:0:"";s:14:"rowDescription";s:0:"";s:8:"bodytext";N;s:5:"image";i:0;s:10:"imagewidth";i:0;s:11:"imageorient";i:0;s:9:"imagecols";i:2;s:11:"imageborder";i:0;s:5:"media";i:0;s:6:"layout";s:1:"0";s:7:"deleted";i:0;s:4:"cols";i:0;s:7:"records";N;s:5:"pages";N;s:9:"starttime";i:0;s:7:"endtime";i:0;s:6:"colPos";i:1;s:9:"subheader";s:0:"";s:8:"fe_group";s:0:"";s:11:"header_link";s:0:"";s:10:"image_zoom";i:0;s:13:"header_layout";s:1:"0";s:9:"list_type";s:0:"";s:12:"sectionIndex";i:1;s:9:"linkToTop";i:0;s:16:"file_collections";N;s:13:"filelink_size";i:0;s:16:"filelink_sorting";s:0:"";s:6:"target";s:0:"";s:4:"date";i:0;s:9:"recursive";i:0;s:11:"imageheight";i:0;s:16:"sys_language_uid";i:0;s:11:"pi_flexform";s:3582:"<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.showForgotPassword"> <value index="vDEF">0</value> </field> <field index="settings.showPermaLogin"> <value index="vDEF">1</value> </field> <field index="settings.showLogoutFormAfterLogin"> <value index="vDEF">0</value> </field> <field index="settings.pages"> <value index="vDEF">238</value> </field> <field index="settings.recursive"> <value index="vDEF"></value> </field> <field index="templateFile"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="s_redirect"> <language index="lDEF"> <field index="settings.redirectMode"> <value index="vDEF"></value> </field> <field index="settings.redirectFirstMethod"> <value index="vDEF">0</value> </field> <field index="settings.redirectPageLogin"> <value index="vDEF">237</value> </field> <field index="settings.redirectPageLoginError"> <value index="vDEF">237</value> </field> <field index="settings.redirectPageLogout"> <value index="vDEF"></value> </field> <field index="settings.redirectDisable"> <value index="vDEF">0</value> </field> </language> </sheet> <sheet index="s_messages"> <language index="lDEF"> <field index="settings.welcome_header"> <value index="vDEF"></value> </field> <field index="settings.welcome_message"> <value index="vDEF"></value> </field> <field index="settings.success_header"> <value index="vDEF"></value> </field> <field index="settings.success_message"> <value index="vDEF"></value> </field> <field index="settings.error_header"> <value index="vDEF"></value> </field> <field index="settings.error_message"> <value index="vDEF"></value> </field> <field index="settings.status_header"> <value index="vDEF"></value> </field> <field index="settings.status_message"> <value index="vDEF"></value> </field> <field index="settings.logout_header"> <value index="vDEF"></value> </field> <field index="settings.logout_message"> <value index="vDEF"></value> </field> <field index="settings.forgot_header"> <value index="vDEF"></value> </field> <field index="settings.forgot_reset_message"> <value index="vDEF"></value> </field> </language> </sheet> </data></T3FlexForms>";s:19:"accessibility_title";s:0:"";s:20:"accessibility_bypass";i:0;s:25:"accessibility_bypass_text";s:0:"";s:11:"l18n_parent";i:0;s:15:"l18n_diffsource";s:13:"{"hidden":""}";s:19:"selected_categories";N;s:14:"category_field";s:0:"";s:13:"table_caption";N;s:15:"table_delimiter";i:124;s:15:"table_enclosure";i:0;s:21:"table_header_position";i:0;s:11:"table_tfoot";i:0;s:12:"bullets_type";i:0;s:19:"uploads_description";i:0;s:12:"uploads_type";i:0;s:6:"assets";i:0;s:10:"categories";i:0;s:28:"tx_mask_vertical_orientation";N;s:20:"tx_news_related_news";i:0;s:24:"tx_mask_accordion_rahmen";i:0;s:15:"tx_mask_kontakt";N;s:23:"tx_mask_oeffnungszeiten";N;s:17:"tx_mask_linkitems";i:0;s:16:"tx_mask_headline";s:7:"Partner";s:17:"tx_mask_subhead_1";s:34:"Partnerschaften & Zertifizierungen";s:17:"tx_mask_subhead_2";s:16:"Services & ÖPNV";s:22:"tx_mask_partner1_image";i:0;s:22:"tx_mask_partner2_image";i:0;s:23:"tx_mask_infoblock_image";i:0;s:29:"tx_mask_infoblock_secondimage";i:0;s:21:"tx_mask_subnav_header";N;s:20:"tx_mask_infoheadline";s:25:"Kontakt & Öffnungszeiten";s:22:"tx_mask_teaserheadline";N;s:12:"tx_mask_icon";N;s:18:"tx_mask_dllinkitem";i:0;s:20:"tx_mask_top_headline";s:10:"Top-Themen";s:19:"tx_mask_top_buerger";i:0;s:18:"tx_mask_top_gaeste";i:0;s:12:"backupColPos";i:-2;s:30:"tx_gridelements_backend_layout";s:0:"";s:24:"tx_gridelements_children";i:0;s:25:"tx_gridelements_container";i:0;s:23:"tx_gridelements_columns";i:0;s:24:"tx_mask_gallery_headline";N;s:22:"tx_mask_gallery_images";i:0;s:25:"tx_mask_gallery_maximages";i:0;s:26:"tx_mask_outletheader_image";i:0;s:25:"tx_mask_outletheader_item";i:0;s:24:"tx_mask_outlet_headline1";N;s:24:"tx_mask_outlet_headline2";N;s:24:"tx_mask_outletitem_title";N;s:26:"tx_mask_outletitem_strasse";N;s:22:"tx_mask_outletitem_plz";N;s:22:"tx_mask_outletitem_ort";N;s:22:"tx_mask_outletitem_fon";N;s:22:"tx_mask_outletitem_fax";N;s:25:"tx_mask_outletitem_images";i:0;s:34:"tx_mask_outletitem_oeffnungszeiten";N;s:26:"tx_mask_outletitem_angebot";N;s:35:"tx_mask_outletitem_customaccordions";i:0;s:23:"tx_mask_outletitem_logo";i:0;s:29:"tx_mask_outletslider_headline";N;s:25:"tx_mask_outletslider_item";i:0;s:25:"tx_mask_outletdatecontent";i:0;s:32:"tx_mask_outletdatecontent_parent";i:0;s:22:"tx_mask_outletitem_map";i:0;s:23:"tx_mask_teaser_headline";N;s:30:"tx_mask_teaser_newsletter_text";N;s:30:"tx_mask_teaser_newsletter_link";N;s:36:"tx_mask_teaser_newsletter_link_title";N;s:33:"tx_mask_newsletter_optin_headline";N;s:29:"tx_mask_newsletter_optin_text";N;s:15:"header_position";s:0:"";s:11:"frame_class";s:7:"default";s:18:"space_before_class";s:0:"";s:17:"space_after_class";s:0:"";s:11:"l10n_source";i:0;s:11:"table_class";s:0:"";s:10:"l10n_state";N;s:26:"filelink_sorting_direction";s:0:"";s:17:"tx_impexp_origuid";i:0;s:35:"gridelements_shortcut_page_order_by";i:0;s:40:"tx_paginatedprocessors_paginationenabled";i:0;s:35:"tx_paginatedprocessors_itemsperpage";N;s:37:"tx_paginatedprocessors_pagelinksshown";N;s:33:"tx_paginatedprocessors_urlsegment";N;s:29:"tx_paginatedprocessors_anchor";i:0;s:31:"tx_paginatedprocessors_anchorid";i:0;}s:8:"' . "\0" . '*' . "\0" . 'table";s:10:"tt_content";s:7:"oldData";a:0:{}s:15:"alternativeData";s:0:"";s:10:"parameters";a:0:{}s:13:"currentValKey";s:26:"currentValue_kidjls9dksoje";s:13:"currentRecord";s:14:"tt_content:160";s:18:"currentRecordTotal";i:0;s:19:"currentRecordNumber";i:0;s:18:"parentRecordNumber";i:0;s:12:"parentRecord";a:0:{}s:23:"checkPid_badDoktypeList";i:255;s:15:"lastTypoLinkUrl";s:0:"";s:18:"lastTypoLinkTarget";s:0:"";s:14:"lastTypoLinkLD";a:0:{}s:18:"lastTypoLinkResult";N;s:14:"recordRegister";a:0:{}s:21:"' . "\0" . '*' . "\0" . 'stdWrapHookObjects";a:0:{}s:28:"' . "\0" . '*' . "\0" . 'getImgResourceHookObjects";N;s:24:"doConvertToUserIntObject";b:0;s:17:"' . "\0" . '*' . "\0" . 'userObjectType";i:1;s:16:"' . "\0" . '*' . "\0" . 'stopRendering";a:0:{}s:24:"' . "\0" . '*' . "\0" . 'stdWrapRecursionLevel";i:0;s:32:"' . "\0" . '*' . "\0" . 'defaultFrontendJavaScriptFile";s:60:"EXT:frontend/Resources/Public/JavaScript/default_frontend.js";}', 'type' => 'FUNC'), 'INT_SCRIPT.b03ddd73aa63da5223d6d1cfcc1ffad9' => array('conf' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Veranstaltungen', 'pluginName' => 'Veranstaltungen'), 'cObj' => 'O:54:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectRenderer":27:{s:5:"align";a:3:{i:0;s:6:"center";i:1;s:5:"right";i:2;s:4:"left";}s:12:"stdWrapOrder";a:148:{s:17:"stdWrapPreProcess";s:4:"hook";s:9:"cacheRead";s:4:"hook";s:19:"setContentToCurrent";s:7:"boolean";s:20:"setContentToCurrent.";s:5:"array";s:16:"addPageCacheTags";s:6:"string";s:17:"addPageCacheTags.";s:5:"array";s:10:"setCurrent";s:6:"string";s:11:"setCurrent.";s:5:"array";s:5:"lang.";s:5:"array";s:4:"data";s:7:"getText";s:5:"data.";s:5:"array";s:5:"field";s:9:"fieldName";s:6:"field.";s:5:"array";s:7:"current";s:7:"boolean";s:8:"current.";s:5:"array";s:7:"cObject";s:7:"cObject";s:8:"cObject.";s:5:"array";s:8:"numRows.";s:5:"array";s:11:"preUserFunc";s:12:"functionName";s:15:"stdWrapOverride";s:4:"hook";s:8:"override";s:6:"string";s:9:"override.";s:5:"array";s:17:"preIfEmptyListNum";s:7:"listNum";s:18:"preIfEmptyListNum.";s:5:"array";s:6:"ifNull";s:6:"string";s:7:"ifNull.";s:5:"array";s:7:"ifEmpty";s:6:"string";s:8:"ifEmpty.";s:5:"array";s:7:"ifBlank";s:6:"string";s:8:"ifBlank.";s:5:"array";s:7:"listNum";s:7:"listNum";s:8:"listNum.";s:5:"array";s:4:"trim";s:7:"boolean";s:5:"trim.";s:5:"array";s:7:"strPad.";s:5:"array";s:7:"stdWrap";s:7:"stdWrap";s:8:"stdWrap.";s:5:"array";s:14:"stdWrapProcess";s:4:"hook";s:8:"required";s:7:"boolean";s:9:"required.";s:5:"array";s:3:"if.";s:5:"array";s:13:"fieldRequired";s:9:"fieldName";s:14:"fieldRequired.";s:5:"array";s:6:"csConv";s:6:"string";s:7:"csConv.";s:5:"array";s:9:"parseFunc";s:10:"objectpath";s:10:"parseFunc.";s:5:"array";s:10:"HTMLparser";s:7:"boolean";s:11:"HTMLparser.";s:5:"array";s:6:"split.";s:5:"array";s:12:"replacement.";s:5:"array";s:10:"prioriCalc";s:7:"boolean";s:11:"prioriCalc.";s:5:"array";s:4:"char";s:7:"integer";s:5:"char.";s:5:"array";s:6:"intval";s:7:"boolean";s:7:"intval.";s:5:"array";s:4:"hash";s:6:"string";s:5:"hash.";s:5:"array";s:5:"round";s:7:"boolean";s:6:"round.";s:5:"array";s:13:"numberFormat.";s:5:"array";s:10:"expandList";s:7:"boolean";s:11:"expandList.";s:5:"array";s:4:"date";s:8:"dateconf";s:5:"date.";s:5:"array";s:9:"strtotime";s:13:"strtotimeconf";s:10:"strtotime.";s:5:"array";s:8:"strftime";s:12:"strftimeconf";s:9:"strftime.";s:5:"array";s:3:"age";s:7:"boolean";s:4:"age.";s:5:"array";s:4:"case";s:4:"case";s:5:"case.";s:5:"array";s:5:"bytes";s:7:"boolean";s:6:"bytes.";s:5:"array";s:9:"substring";s:10:"parameters";s:10:"substring.";s:5:"array";s:8:"cropHTML";s:4:"crop";s:9:"cropHTML.";s:5:"array";s:9:"stripHtml";s:7:"boolean";s:10:"stripHtml.";s:5:"array";s:4:"crop";s:4:"crop";s:5:"crop.";s:5:"array";s:12:"rawUrlEncode";s:7:"boolean";s:13:"rawUrlEncode.";s:5:"array";s:16:"htmlSpecialChars";s:7:"boolean";s:17:"htmlSpecialChars.";s:5:"array";s:24:"encodeForJavaScriptValue";s:7:"boolean";s:25:"encodeForJavaScriptValue.";s:5:"array";s:11:"doubleBrTag";s:6:"string";s:12:"doubleBrTag.";s:5:"array";s:2:"br";s:7:"boolean";s:3:"br.";s:5:"array";s:5:"brTag";s:6:"string";s:6:"brTag.";s:5:"array";s:12:"encapsLines.";s:5:"array";s:8:"keywords";s:7:"boolean";s:9:"keywords.";s:5:"array";s:9:"innerWrap";s:4:"wrap";s:10:"innerWrap.";s:5:"array";s:10:"innerWrap2";s:4:"wrap";s:11:"innerWrap2.";s:5:"array";s:10:"preCObject";s:7:"cObject";s:11:"preCObject.";s:5:"array";s:11:"postCObject";s:7:"cObject";s:12:"postCObject.";s:5:"array";s:9:"wrapAlign";s:5:"align";s:10:"wrapAlign.";s:5:"array";s:9:"typolink.";s:5:"array";s:4:"wrap";s:4:"wrap";s:5:"wrap.";s:5:"array";s:10:"noTrimWrap";s:4:"wrap";s:11:"noTrimWrap.";s:5:"array";s:5:"wrap2";s:4:"wrap";s:6:"wrap2.";s:5:"array";s:8:"dataWrap";s:8:"dataWrap";s:9:"dataWrap.";s:5:"array";s:7:"prepend";s:7:"cObject";s:8:"prepend.";s:5:"array";s:6:"append";s:7:"cObject";s:7:"append.";s:5:"array";s:5:"wrap3";s:4:"wrap";s:6:"wrap3.";s:5:"array";s:14:"orderedStdWrap";s:7:"stdWrap";s:15:"orderedStdWrap.";s:5:"array";s:9:"outerWrap";s:4:"wrap";s:10:"outerWrap.";s:5:"array";s:10:"insertData";s:7:"boolean";s:11:"insertData.";s:5:"array";s:12:"postUserFunc";s:12:"functionName";s:15:"postUserFuncInt";s:12:"functionName";s:13:"prefixComment";s:6:"string";s:14:"prefixComment.";s:5:"array";s:9:"editIcons";s:6:"string";s:10:"editIcons.";s:5:"array";s:9:"editPanel";s:7:"boolean";s:10:"editPanel.";s:5:"array";s:12:"htmlSanitize";s:7:"boolean";s:13:"htmlSanitize.";s:5:"array";s:10:"cacheStore";s:4:"hook";s:18:"stdWrapPostProcess";s:4:"hook";s:5:"debug";s:7:"boolean";s:6:"debug.";s:5:"array";s:9:"debugFunc";s:7:"boolean";s:10:"debugFunc.";s:5:"array";s:9:"debugData";s:7:"boolean";s:10:"debugData.";s:5:"array";}s:24:"' . "\0" . '*' . "\0" . 'contentObjectClassMap";a:22:{s:4:"TEXT";s:50:"TYPO3\\CMS\\Frontend\\ContentObject\\TextContentObject";s:4:"CASE";s:50:"TYPO3\\CMS\\Frontend\\ContentObject\\CaseContentObject";s:3:"COA";s:64:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectArrayContentObject";s:7:"COA_INT";s:72:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectArrayInternalContentObject";s:4:"USER";s:50:"TYPO3\\CMS\\Frontend\\ContentObject\\UserContentObject";s:8:"USER_INT";s:58:"TYPO3\\CMS\\Frontend\\ContentObject\\UserInternalContentObject";s:5:"FILES";s:51:"TYPO3\\CMS\\Frontend\\ContentObject\\FilesContentObject";s:5:"IMAGE";s:51:"TYPO3\\CMS\\Frontend\\ContentObject\\ImageContentObject";s:12:"IMG_RESOURCE";s:59:"TYPO3\\CMS\\Frontend\\ContentObject\\ImageResourceContentObject";s:7:"CONTENT";s:53:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentContentObject";s:7:"RECORDS";s:53:"TYPO3\\CMS\\Frontend\\ContentObject\\RecordsContentObject";s:5:"HMENU";s:62:"TYPO3\\CMS\\Frontend\\ContentObject\\HierarchicalMenuContentObject";s:13:"LOAD_REGISTER";s:58:"TYPO3\\CMS\\Frontend\\ContentObject\\LoadRegisterContentObject";s:16:"RESTORE_REGISTER";s:61:"TYPO3\\CMS\\Frontend\\ContentObject\\RestoreRegisterContentObject";s:13:"FLUIDTEMPLATE";s:59:"TYPO3\\CMS\\Frontend\\ContentObject\\FluidTemplateContentObject";s:3:"SVG";s:68:"TYPO3\\CMS\\Frontend\\ContentObject\\ScalableVectorGraphicsContentObject";s:9:"EDITPANEL";s:55:"TYPO3\\CMS\\Frontend\\ContentObject\\EditPanelContentObject";s:15:"SOLR_MULTIVALUE";s:48:"ApacheSolrForTypo3\\Solr\\ContentObject\\Multivalue";s:12:"SOLR_CONTENT";s:45:"ApacheSolrForTypo3\\Solr\\ContentObject\\Content";s:13:"SOLR_RELATION";s:46:"ApacheSolrForTypo3\\Solr\\ContentObject\\Relation";s:19:"SOLR_CLASSIFICATION";s:52:"ApacheSolrForTypo3\\Solr\\ContentObject\\Classification";s:20:"TYPOSCRIPT_RENDERING";s:73:"Helhum\\TyposcriptRendering\\ContentObject\\TypoScriptRenderingContentObject";}s:4:"data";a:136:{s:3:"uid";i:214;s:3:"pid";i:69;s:9:"t3ver_oid";i:0;s:10:"t3ver_wsid";i:0;s:11:"t3ver_state";i:0;s:11:"t3ver_stage";i:0;s:10:"t3_origuid";i:0;s:6:"tstamp";i:1562592233;s:6:"crdate";i:1464349164;s:9:"cruser_id";i:2;s:8:"editlock";i:0;s:6:"hidden";i:0;s:7:"sorting";i:512;s:5:"CType";s:4:"list";s:6:"header";s:0:"";s:14:"rowDescription";s:0:"";s:8:"bodytext";N;s:5:"image";i:0;s:10:"imagewidth";i:0;s:11:"imageorient";i:0;s:9:"imagecols";i:2;s:11:"imageborder";i:0;s:5:"media";i:0;s:6:"layout";s:1:"0";s:7:"deleted";i:0;s:4:"cols";i:0;s:7:"records";N;s:5:"pages";s:0:"";s:9:"starttime";i:0;s:7:"endtime";i:0;s:6:"colPos";i:0;s:9:"subheader";s:0:"";s:8:"fe_group";s:0:"";s:11:"header_link";s:0:"";s:10:"image_zoom";i:0;s:13:"header_layout";s:1:"0";s:9:"list_type";s:31:"veranstaltungen_veranstaltungen";s:12:"sectionIndex";i:1;s:9:"linkToTop";i:0;s:16:"file_collections";N;s:13:"filelink_size";i:0;s:16:"filelink_sorting";s:0:"";s:6:"target";s:0:"";s:4:"date";i:0;s:9:"recursive";i:0;s:11:"imageheight";i:0;s:16:"sys_language_uid";i:0;s:11:"pi_flexform";s:1614:"<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="main"> <language index="lDEF"> <field index="switchableControllerActions"> <value index="vDEF">Veranstaltung-&gt;list;Veranstaltung-&gt;ical;Veranstaltung-&gt;show</value> </field> </language> </sheet> <sheet index="calendar"> <language index="lDEF"> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.detail"> <value index="vDEF"></value> </field> <field index="settings.list"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="list"> <language index="lDEF"> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.pagerabove"> <value index="vDEF">0</value> </field> <field index="settings.pagerbelow"> <value index="vDEF">0</value> </field> <field index="settings.detail"> <value index="vDEF"></value> </field> <field index="settings.list"> <value index="vDEF">69</value> </field> </language> </sheet> </data></T3FlexForms>";s:19:"accessibility_title";s:0:"";s:20:"accessibility_bypass";i:0;s:25:"accessibility_bypass_text";s:0:"";s:11:"l18n_parent";i:0;s:15:"l18n_diffsource";s:15:"{"hidden":null}";s:19:"selected_categories";N;s:14:"category_field";s:0:"";s:13:"table_caption";N;s:15:"table_delimiter";i:124;s:15:"table_enclosure";i:0;s:21:"table_header_position";i:0;s:11:"table_tfoot";i:0;s:12:"bullets_type";i:0;s:19:"uploads_description";i:0;s:12:"uploads_type";i:0;s:6:"assets";i:0;s:10:"categories";i:0;s:28:"tx_mask_vertical_orientation";N;s:20:"tx_news_related_news";i:0;s:24:"tx_mask_accordion_rahmen";i:0;s:15:"tx_mask_kontakt";N;s:23:"tx_mask_oeffnungszeiten";N;s:17:"tx_mask_linkitems";i:0;s:16:"tx_mask_headline";s:7:"Partner";s:17:"tx_mask_subhead_1";s:34:"Partnerschaften & Zertifizierungen";s:17:"tx_mask_subhead_2";s:16:"Services & ÖPNV";s:22:"tx_mask_partner1_image";i:0;s:22:"tx_mask_partner2_image";i:0;s:23:"tx_mask_infoblock_image";i:0;s:29:"tx_mask_infoblock_secondimage";i:0;s:21:"tx_mask_subnav_header";N;s:20:"tx_mask_infoheadline";s:25:"Kontakt & Öffnungszeiten";s:22:"tx_mask_teaserheadline";N;s:12:"tx_mask_icon";N;s:18:"tx_mask_dllinkitem";i:0;s:20:"tx_mask_top_headline";s:10:"Top-Themen";s:19:"tx_mask_top_buerger";i:0;s:18:"tx_mask_top_gaeste";i:0;s:12:"backupColPos";i:-2;s:30:"tx_gridelements_backend_layout";s:0:"";s:24:"tx_gridelements_children";i:0;s:25:"tx_gridelements_container";i:0;s:23:"tx_gridelements_columns";i:0;s:24:"tx_mask_gallery_headline";s:13:"Bildergalerie";s:22:"tx_mask_gallery_images";i:0;s:25:"tx_mask_gallery_maximages";i:0;s:26:"tx_mask_outletheader_image";i:0;s:25:"tx_mask_outletheader_item";i:0;s:24:"tx_mask_outlet_headline1";N;s:24:"tx_mask_outlet_headline2";N;s:24:"tx_mask_outletitem_title";N;s:26:"tx_mask_outletitem_strasse";N;s:22:"tx_mask_outletitem_plz";N;s:22:"tx_mask_outletitem_ort";N;s:22:"tx_mask_outletitem_fon";N;s:22:"tx_mask_outletitem_fax";N;s:25:"tx_mask_outletitem_images";i:0;s:34:"tx_mask_outletitem_oeffnungszeiten";N;s:26:"tx_mask_outletitem_angebot";N;s:35:"tx_mask_outletitem_customaccordions";i:0;s:23:"tx_mask_outletitem_logo";i:0;s:29:"tx_mask_outletslider_headline";N;s:25:"tx_mask_outletslider_item";i:0;s:25:"tx_mask_outletdatecontent";i:0;s:32:"tx_mask_outletdatecontent_parent";i:0;s:22:"tx_mask_outletitem_map";i:0;s:23:"tx_mask_teaser_headline";N;s:30:"tx_mask_teaser_newsletter_text";N;s:30:"tx_mask_teaser_newsletter_link";N;s:36:"tx_mask_teaser_newsletter_link_title";N;s:33:"tx_mask_newsletter_optin_headline";N;s:29:"tx_mask_newsletter_optin_text";N;s:15:"header_position";s:0:"";s:11:"frame_class";s:7:"default";s:18:"space_before_class";s:0:"";s:17:"space_after_class";s:0:"";s:11:"l10n_source";i:0;s:11:"table_class";s:0:"";s:10:"l10n_state";N;s:26:"filelink_sorting_direction";s:0:"";s:17:"tx_impexp_origuid";i:0;s:35:"gridelements_shortcut_page_order_by";i:0;s:40:"tx_paginatedprocessors_paginationenabled";i:0;s:35:"tx_paginatedprocessors_itemsperpage";N;s:37:"tx_paginatedprocessors_pagelinksshown";N;s:33:"tx_paginatedprocessors_urlsegment";N;s:29:"tx_paginatedprocessors_anchor";i:0;s:31:"tx_paginatedprocessors_anchorid";i:0;}s:8:"' . "\0" . '*' . "\0" . 'table";s:10:"tt_content";s:7:"oldData";a:0:{}s:15:"alternativeData";s:0:"";s:10:"parameters";a:0:{}s:13:"currentValKey";s:26:"currentValue_kidjls9dksoje";s:13:"currentRecord";s:14:"tt_content:214";s:18:"currentRecordTotal";i:0;s:19:"currentRecordNumber";i:0;s:18:"parentRecordNumber";i:0;s:12:"parentRecord";a:0:{}s:23:"checkPid_badDoktypeList";i:255;s:15:"lastTypoLinkUrl";s:0:"";s:18:"lastTypoLinkTarget";s:0:"";s:14:"lastTypoLinkLD";a:0:{}s:18:"lastTypoLinkResult";N;s:14:"recordRegister";a:0:{}s:21:"' . "\0" . '*' . "\0" . 'stdWrapHookObjects";a:0:{}s:28:"' . "\0" . '*' . "\0" . 'getImgResourceHookObjects";N;s:24:"doConvertToUserIntObject";b:0;s:17:"' . "\0" . '*' . "\0" . 'userObjectType";i:1;s:16:"' . "\0" . '*' . "\0" . 'stopRendering";a:0:{}s:24:"' . "\0" . '*' . "\0" . 'stdWrapRecursionLevel";i:0;s:32:"' . "\0" . '*' . "\0" . 'defaultFrontendJavaScriptFile";s:60:"EXT:frontend/Resources/Public/JavaScript/default_frontend.js";}', 'type' => 'FUNC'), 'INT_SCRIPT.9e64aada42fc8eaa0332c36f97281e01' => array('conf' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login', 'view.' => array('templateRootPaths.' => array('EXT:felogin/Resources/Private/Templates/', 'EXT:felogin/Resources/Private/Templates/', 'EXT:twsitepackage/Resources/Private/Felogin/Templates_Header/'), 'partialRootPaths.' => array(''), 'layoutRootPaths.' => array(''))), 'cObj' => 'O:54:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectRenderer":27:{s:5:"align";a:3:{i:0;s:6:"center";i:1;s:5:"right";i:2;s:4:"left";}s:12:"stdWrapOrder";a:148:{s:17:"stdWrapPreProcess";s:4:"hook";s:9:"cacheRead";s:4:"hook";s:19:"setContentToCurrent";s:7:"boolean";s:20:"setContentToCurrent.";s:5:"array";s:16:"addPageCacheTags";s:6:"string";s:17:"addPageCacheTags.";s:5:"array";s:10:"setCurrent";s:6:"string";s:11:"setCurrent.";s:5:"array";s:5:"lang.";s:5:"array";s:4:"data";s:7:"getText";s:5:"data.";s:5:"array";s:5:"field";s:9:"fieldName";s:6:"field.";s:5:"array";s:7:"current";s:7:"boolean";s:8:"current.";s:5:"array";s:7:"cObject";s:7:"cObject";s:8:"cObject.";s:5:"array";s:8:"numRows.";s:5:"array";s:11:"preUserFunc";s:12:"functionName";s:15:"stdWrapOverride";s:4:"hook";s:8:"override";s:6:"string";s:9:"override.";s:5:"array";s:17:"preIfEmptyListNum";s:7:"listNum";s:18:"preIfEmptyListNum.";s:5:"array";s:6:"ifNull";s:6:"string";s:7:"ifNull.";s:5:"array";s:7:"ifEmpty";s:6:"string";s:8:"ifEmpty.";s:5:"array";s:7:"ifBlank";s:6:"string";s:8:"ifBlank.";s:5:"array";s:7:"listNum";s:7:"listNum";s:8:"listNum.";s:5:"array";s:4:"trim";s:7:"boolean";s:5:"trim.";s:5:"array";s:7:"strPad.";s:5:"array";s:7:"stdWrap";s:7:"stdWrap";s:8:"stdWrap.";s:5:"array";s:14:"stdWrapProcess";s:4:"hook";s:8:"required";s:7:"boolean";s:9:"required.";s:5:"array";s:3:"if.";s:5:"array";s:13:"fieldRequired";s:9:"fieldName";s:14:"fieldRequired.";s:5:"array";s:6:"csConv";s:6:"string";s:7:"csConv.";s:5:"array";s:9:"parseFunc";s:10:"objectpath";s:10:"parseFunc.";s:5:"array";s:10:"HTMLparser";s:7:"boolean";s:11:"HTMLparser.";s:5:"array";s:6:"split.";s:5:"array";s:12:"replacement.";s:5:"array";s:10:"prioriCalc";s:7:"boolean";s:11:"prioriCalc.";s:5:"array";s:4:"char";s:7:"integer";s:5:"char.";s:5:"array";s:6:"intval";s:7:"boolean";s:7:"intval.";s:5:"array";s:4:"hash";s:6:"string";s:5:"hash.";s:5:"array";s:5:"round";s:7:"boolean";s:6:"round.";s:5:"array";s:13:"numberFormat.";s:5:"array";s:10:"expandList";s:7:"boolean";s:11:"expandList.";s:5:"array";s:4:"date";s:8:"dateconf";s:5:"date.";s:5:"array";s:9:"strtotime";s:13:"strtotimeconf";s:10:"strtotime.";s:5:"array";s:8:"strftime";s:12:"strftimeconf";s:9:"strftime.";s:5:"array";s:3:"age";s:7:"boolean";s:4:"age.";s:5:"array";s:4:"case";s:4:"case";s:5:"case.";s:5:"array";s:5:"bytes";s:7:"boolean";s:6:"bytes.";s:5:"array";s:9:"substring";s:10:"parameters";s:10:"substring.";s:5:"array";s:8:"cropHTML";s:4:"crop";s:9:"cropHTML.";s:5:"array";s:9:"stripHtml";s:7:"boolean";s:10:"stripHtml.";s:5:"array";s:4:"crop";s:4:"crop";s:5:"crop.";s:5:"array";s:12:"rawUrlEncode";s:7:"boolean";s:13:"rawUrlEncode.";s:5:"array";s:16:"htmlSpecialChars";s:7:"boolean";s:17:"htmlSpecialChars.";s:5:"array";s:24:"encodeForJavaScriptValue";s:7:"boolean";s:25:"encodeForJavaScriptValue.";s:5:"array";s:11:"doubleBrTag";s:6:"string";s:12:"doubleBrTag.";s:5:"array";s:2:"br";s:7:"boolean";s:3:"br.";s:5:"array";s:5:"brTag";s:6:"string";s:6:"brTag.";s:5:"array";s:12:"encapsLines.";s:5:"array";s:8:"keywords";s:7:"boolean";s:9:"keywords.";s:5:"array";s:9:"innerWrap";s:4:"wrap";s:10:"innerWrap.";s:5:"array";s:10:"innerWrap2";s:4:"wrap";s:11:"innerWrap2.";s:5:"array";s:10:"preCObject";s:7:"cObject";s:11:"preCObject.";s:5:"array";s:11:"postCObject";s:7:"cObject";s:12:"postCObject.";s:5:"array";s:9:"wrapAlign";s:5:"align";s:10:"wrapAlign.";s:5:"array";s:9:"typolink.";s:5:"array";s:4:"wrap";s:4:"wrap";s:5:"wrap.";s:5:"array";s:10:"noTrimWrap";s:4:"wrap";s:11:"noTrimWrap.";s:5:"array";s:5:"wrap2";s:4:"wrap";s:6:"wrap2.";s:5:"array";s:8:"dataWrap";s:8:"dataWrap";s:9:"dataWrap.";s:5:"array";s:7:"prepend";s:7:"cObject";s:8:"prepend.";s:5:"array";s:6:"append";s:7:"cObject";s:7:"append.";s:5:"array";s:5:"wrap3";s:4:"wrap";s:6:"wrap3.";s:5:"array";s:14:"orderedStdWrap";s:7:"stdWrap";s:15:"orderedStdWrap.";s:5:"array";s:9:"outerWrap";s:4:"wrap";s:10:"outerWrap.";s:5:"array";s:10:"insertData";s:7:"boolean";s:11:"insertData.";s:5:"array";s:12:"postUserFunc";s:12:"functionName";s:15:"postUserFuncInt";s:12:"functionName";s:13:"prefixComment";s:6:"string";s:14:"prefixComment.";s:5:"array";s:9:"editIcons";s:6:"string";s:10:"editIcons.";s:5:"array";s:9:"editPanel";s:7:"boolean";s:10:"editPanel.";s:5:"array";s:12:"htmlSanitize";s:7:"boolean";s:13:"htmlSanitize.";s:5:"array";s:10:"cacheStore";s:4:"hook";s:18:"stdWrapPostProcess";s:4:"hook";s:5:"debug";s:7:"boolean";s:6:"debug.";s:5:"array";s:9:"debugFunc";s:7:"boolean";s:10:"debugFunc.";s:5:"array";s:9:"debugData";s:7:"boolean";s:10:"debugData.";s:5:"array";}s:24:"' . "\0" . '*' . "\0" . 'contentObjectClassMap";a:22:{s:4:"TEXT";s:50:"TYPO3\\CMS\\Frontend\\ContentObject\\TextContentObject";s:4:"CASE";s:50:"TYPO3\\CMS\\Frontend\\ContentObject\\CaseContentObject";s:3:"COA";s:64:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectArrayContentObject";s:7:"COA_INT";s:72:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectArrayInternalContentObject";s:4:"USER";s:50:"TYPO3\\CMS\\Frontend\\ContentObject\\UserContentObject";s:8:"USER_INT";s:58:"TYPO3\\CMS\\Frontend\\ContentObject\\UserInternalContentObject";s:5:"FILES";s:51:"TYPO3\\CMS\\Frontend\\ContentObject\\FilesContentObject";s:5:"IMAGE";s:51:"TYPO3\\CMS\\Frontend\\ContentObject\\ImageContentObject";s:12:"IMG_RESOURCE";s:59:"TYPO3\\CMS\\Frontend\\ContentObject\\ImageResourceContentObject";s:7:"CONTENT";s:53:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentContentObject";s:7:"RECORDS";s:53:"TYPO3\\CMS\\Frontend\\ContentObject\\RecordsContentObject";s:5:"HMENU";s:62:"TYPO3\\CMS\\Frontend\\ContentObject\\HierarchicalMenuContentObject";s:13:"LOAD_REGISTER";s:58:"TYPO3\\CMS\\Frontend\\ContentObject\\LoadRegisterContentObject";s:16:"RESTORE_REGISTER";s:61:"TYPO3\\CMS\\Frontend\\ContentObject\\RestoreRegisterContentObject";s:13:"FLUIDTEMPLATE";s:59:"TYPO3\\CMS\\Frontend\\ContentObject\\FluidTemplateContentObject";s:3:"SVG";s:68:"TYPO3\\CMS\\Frontend\\ContentObject\\ScalableVectorGraphicsContentObject";s:9:"EDITPANEL";s:55:"TYPO3\\CMS\\Frontend\\ContentObject\\EditPanelContentObject";s:15:"SOLR_MULTIVALUE";s:48:"ApacheSolrForTypo3\\Solr\\ContentObject\\Multivalue";s:12:"SOLR_CONTENT";s:45:"ApacheSolrForTypo3\\Solr\\ContentObject\\Content";s:13:"SOLR_RELATION";s:46:"ApacheSolrForTypo3\\Solr\\ContentObject\\Relation";s:19:"SOLR_CLASSIFICATION";s:52:"ApacheSolrForTypo3\\Solr\\ContentObject\\Classification";s:20:"TYPOSCRIPT_RENDERING";s:73:"Helhum\\TyposcriptRendering\\ContentObject\\TypoScriptRenderingContentObject";}s:4:"data";a:83:{s:3:"uid";i:69;s:3:"pid";i:6;s:9:"t3ver_oid";i:0;s:10:"t3ver_wsid";i:0;s:11:"t3ver_state";i:0;s:11:"t3ver_stage";i:0;s:10:"t3_origuid";i:0;s:6:"tstamp";i:1467627341;s:7:"sorting";i:512;s:7:"deleted";i:0;s:12:"perms_userid";i:1;s:13:"perms_groupid";i:2;s:10:"perms_user";i:31;s:11:"perms_group";i:27;s:15:"perms_everybody";i:0;s:8:"editlock";i:0;s:6:"crdate";i:1455272197;s:9:"cruser_id";i:1;s:6:"hidden";i:0;s:5:"title";s:22:"Veranstaltungskalender";s:7:"doktype";i:1;s:8:"TSconfig";N;s:11:"is_siteroot";i:0;s:13:"php_tree_stop";i:0;s:3:"url";s:0:"";s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:8:"fe_group";s:0:"";s:8:"subtitle";s:0:"";s:6:"layout";i:0;s:6:"target";s:0:"";s:5:"media";i:0;s:11:"lastUpdated";i:0;s:8:"keywords";N;s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:8:"newUntil";i:0;s:11:"description";s:47:"Veranstaltungskalender der Stadt Herzogenaurach";s:9:"no_search";i:0;s:15:"SYS_LASTCHANGED";i:1675152876;s:8:"abstract";N;s:6:"module";s:0:"";s:16:"extendToSubpages";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:9:"nav_title";s:0:"";s:8:"nav_hide";i:0;s:16:"content_from_pid";i:0;s:9:"mount_pid";i:0;s:12:"mount_pid_ol";i:0;s:8:"l18n_cfg";i:0;s:13:"fe_login_mode";i:0;s:14:"backend_layout";s:1:"3";s:25:"backend_layout_next_level";s:1:"3";s:17:"tsconfig_includes";N;s:10:"categories";i:0;s:14:"rowDescription";N;s:16:"sys_language_uid";i:0;s:11:"l10n_source";i:0;s:10:"l10n_state";N;s:15:"l10n_diffsource";N;s:4:"slug";s:33:"/aktuelles/veranstaltungskalender";s:11:"l10n_parent";i:0;s:9:"seo_title";s:43:"Veranstaltungskalender Stadt Herzogenaurach";s:8:"no_index";i:0;s:9:"no_follow";i:0;s:8:"og_title";s:0:"";s:14:"og_description";N;s:13:"twitter_title";s:0:"";s:19:"twitter_description";N;s:13:"twitter_image";i:0;s:14:"canonical_link";s:0:"";s:8:"og_image";i:0;s:18:"tx_mask_showfooter";i:0;s:18:"tx_mask_leftteaser";i:0;s:26:"tx_mask_staedt_einrichtung";N;s:17:"tx_impexp_origuid";i:0;s:16:"sitemap_priority";s:3:"0.5";s:18:"sitemap_changefreq";s:0:"";s:21:"no_search_sub_entries";i:0;s:12:"twitter_card";s:0:"";}s:8:"' . "\0" . '*' . "\0" . 'table";s:5:"pages";s:7:"oldData";a:0:{}s:15:"alternativeData";s:0:"";s:10:"parameters";a:0:{}s:13:"currentValKey";s:26:"currentValue_kidjls9dksoje";s:13:"currentRecord";s:8:"pages:69";s:18:"currentRecordTotal";i:1;s:19:"currentRecordNumber";i:1;s:18:"parentRecordNumber";i:0;s:12:"parentRecord";a:0:{}s:23:"checkPid_badDoktypeList";i:255;s:15:"lastTypoLinkUrl";s:33:"/aktuelles/veranstaltungskalender";s:18:"lastTypoLinkTarget";s:0:"";s:14:"lastTypoLinkLD";a:3:{s:6:"target";s:0:"";s:8:"totalUrl";s:33:"/aktuelles/veranstaltungskalender";s:4:"type";s:4:"page";}s:18:"lastTypoLinkResult";O:38:"TYPO3\\CMS\\Frontend\\Typolink\\LinkResult":6:{s:7:"' . "\0" . '*' . "\0" . 'type";s:4:"page";s:6:"' . "\0" . '*' . "\0" . 'url";s:33:"/aktuelles/veranstaltungskalender";s:9:"' . "\0" . '*' . "\0" . 'target";s:0:"";s:23:"' . "\0" . '*' . "\0" . 'additionalAttributes";a:1:{s:4:"href";s:33:"/aktuelles/veranstaltungskalender";}s:11:"' . "\0" . '*' . "\0" . 'linkText";s:1:"|";s:20:"' . "\0" . '*' . "\0" . 'linkConfiguration";a:3:{s:9:"parameter";i:69;s:16:"additionalParams";s:0:"";s:8:"no_cache";s:0:"";}}s:14:"recordRegister";a:0:{}s:21:"' . "\0" . '*' . "\0" . 'stdWrapHookObjects";a:0:{}s:28:"' . "\0" . '*' . "\0" . 'getImgResourceHookObjects";N;s:24:"doConvertToUserIntObject";b:0;s:17:"' . "\0" . '*' . "\0" . 'userObjectType";i:1;s:16:"' . "\0" . '*' . "\0" . 'stopRendering";a:0:{}s:24:"' . "\0" . '*' . "\0" . 'stdWrapRecursionLevel";i:0;s:32:"' . "\0" . '*' . "\0" . 'defaultFrontendJavaScriptFile";s:60:"EXT:frontend/Resources/Public/JavaScript/default_frontend.js";}', 'type' => 'FUNC'), 'INT_SCRIPT.8119223f4ebde3dce0a24b0eb38b8454' => array('conf' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'pluginName' => 'Pi1', 'extensionName' => 'Web2pdf', 'vendorName' => 'Mittwald', 'controller' => 'Pdf', 'action' => 'generatePdfLink'), 'cObj' => 'O:54:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectRenderer":27:{s:5:"align";a:3:{i:0;s:6:"center";i:1;s:5:"right";i:2;s:4:"left";}s:12:"stdWrapOrder";a:148:{s:17:"stdWrapPreProcess";s:4:"hook";s:9:"cacheRead";s:4:"hook";s:19:"setContentToCurrent";s:7:"boolean";s:20:"setContentToCurrent.";s:5:"array";s:16:"addPageCacheTags";s:6:"string";s:17:"addPageCacheTags.";s:5:"array";s:10:"setCurrent";s:6:"string";s:11:"setCurrent.";s:5:"array";s:5:"lang.";s:5:"array";s:4:"data";s:7:"getText";s:5:"data.";s:5:"array";s:5:"field";s:9:"fieldName";s:6:"field.";s:5:"array";s:7:"current";s:7:"boolean";s:8:"current.";s:5:"array";s:7:"cObject";s:7:"cObject";s:8:"cObject.";s:5:"array";s:8:"numRows.";s:5:"array";s:11:"preUserFunc";s:12:"functionName";s:15:"stdWrapOverride";s:4:"hook";s:8:"override";s:6:"string";s:9:"override.";s:5:"array";s:17:"preIfEmptyListNum";s:7:"listNum";s:18:"preIfEmptyListNum.";s:5:"array";s:6:"ifNull";s:6:"string";s:7:"ifNull.";s:5:"array";s:7:"ifEmpty";s:6:"string";s:8:"ifEmpty.";s:5:"array";s:7:"ifBlank";s:6:"string";s:8:"ifBlank.";s:5:"array";s:7:"listNum";s:7:"listNum";s:8:"listNum.";s:5:"array";s:4:"trim";s:7:"boolean";s:5:"trim.";s:5:"array";s:7:"strPad.";s:5:"array";s:7:"stdWrap";s:7:"stdWrap";s:8:"stdWrap.";s:5:"array";s:14:"stdWrapProcess";s:4:"hook";s:8:"required";s:7:"boolean";s:9:"required.";s:5:"array";s:3:"if.";s:5:"array";s:13:"fieldRequired";s:9:"fieldName";s:14:"fieldRequired.";s:5:"array";s:6:"csConv";s:6:"string";s:7:"csConv.";s:5:"array";s:9:"parseFunc";s:10:"objectpath";s:10:"parseFunc.";s:5:"array";s:10:"HTMLparser";s:7:"boolean";s:11:"HTMLparser.";s:5:"array";s:6:"split.";s:5:"array";s:12:"replacement.";s:5:"array";s:10:"prioriCalc";s:7:"boolean";s:11:"prioriCalc.";s:5:"array";s:4:"char";s:7:"integer";s:5:"char.";s:5:"array";s:6:"intval";s:7:"boolean";s:7:"intval.";s:5:"array";s:4:"hash";s:6:"string";s:5:"hash.";s:5:"array";s:5:"round";s:7:"boolean";s:6:"round.";s:5:"array";s:13:"numberFormat.";s:5:"array";s:10:"expandList";s:7:"boolean";s:11:"expandList.";s:5:"array";s:4:"date";s:8:"dateconf";s:5:"date.";s:5:"array";s:9:"strtotime";s:13:"strtotimeconf";s:10:"strtotime.";s:5:"array";s:8:"strftime";s:12:"strftimeconf";s:9:"strftime.";s:5:"array";s:3:"age";s:7:"boolean";s:4:"age.";s:5:"array";s:4:"case";s:4:"case";s:5:"case.";s:5:"array";s:5:"bytes";s:7:"boolean";s:6:"bytes.";s:5:"array";s:9:"substring";s:10:"parameters";s:10:"substring.";s:5:"array";s:8:"cropHTML";s:4:"crop";s:9:"cropHTML.";s:5:"array";s:9:"stripHtml";s:7:"boolean";s:10:"stripHtml.";s:5:"array";s:4:"crop";s:4:"crop";s:5:"crop.";s:5:"array";s:12:"rawUrlEncode";s:7:"boolean";s:13:"rawUrlEncode.";s:5:"array";s:16:"htmlSpecialChars";s:7:"boolean";s:17:"htmlSpecialChars.";s:5:"array";s:24:"encodeForJavaScriptValue";s:7:"boolean";s:25:"encodeForJavaScriptValue.";s:5:"array";s:11:"doubleBrTag";s:6:"string";s:12:"doubleBrTag.";s:5:"array";s:2:"br";s:7:"boolean";s:3:"br.";s:5:"array";s:5:"brTag";s:6:"string";s:6:"brTag.";s:5:"array";s:12:"encapsLines.";s:5:"array";s:8:"keywords";s:7:"boolean";s:9:"keywords.";s:5:"array";s:9:"innerWrap";s:4:"wrap";s:10:"innerWrap.";s:5:"array";s:10:"innerWrap2";s:4:"wrap";s:11:"innerWrap2.";s:5:"array";s:10:"preCObject";s:7:"cObject";s:11:"preCObject.";s:5:"array";s:11:"postCObject";s:7:"cObject";s:12:"postCObject.";s:5:"array";s:9:"wrapAlign";s:5:"align";s:10:"wrapAlign.";s:5:"array";s:9:"typolink.";s:5:"array";s:4:"wrap";s:4:"wrap";s:5:"wrap.";s:5:"array";s:10:"noTrimWrap";s:4:"wrap";s:11:"noTrimWrap.";s:5:"array";s:5:"wrap2";s:4:"wrap";s:6:"wrap2.";s:5:"array";s:8:"dataWrap";s:8:"dataWrap";s:9:"dataWrap.";s:5:"array";s:7:"prepend";s:7:"cObject";s:8:"prepend.";s:5:"array";s:6:"append";s:7:"cObject";s:7:"append.";s:5:"array";s:5:"wrap3";s:4:"wrap";s:6:"wrap3.";s:5:"array";s:14:"orderedStdWrap";s:7:"stdWrap";s:15:"orderedStdWrap.";s:5:"array";s:9:"outerWrap";s:4:"wrap";s:10:"outerWrap.";s:5:"array";s:10:"insertData";s:7:"boolean";s:11:"insertData.";s:5:"array";s:12:"postUserFunc";s:12:"functionName";s:15:"postUserFuncInt";s:12:"functionName";s:13:"prefixComment";s:6:"string";s:14:"prefixComment.";s:5:"array";s:9:"editIcons";s:6:"string";s:10:"editIcons.";s:5:"array";s:9:"editPanel";s:7:"boolean";s:10:"editPanel.";s:5:"array";s:12:"htmlSanitize";s:7:"boolean";s:13:"htmlSanitize.";s:5:"array";s:10:"cacheStore";s:4:"hook";s:18:"stdWrapPostProcess";s:4:"hook";s:5:"debug";s:7:"boolean";s:6:"debug.";s:5:"array";s:9:"debugFunc";s:7:"boolean";s:10:"debugFunc.";s:5:"array";s:9:"debugData";s:7:"boolean";s:10:"debugData.";s:5:"array";}s:24:"' . "\0" . '*' . "\0" . 'contentObjectClassMap";a:22:{s:4:"TEXT";s:50:"TYPO3\\CMS\\Frontend\\ContentObject\\TextContentObject";s:4:"CASE";s:50:"TYPO3\\CMS\\Frontend\\ContentObject\\CaseContentObject";s:3:"COA";s:64:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectArrayContentObject";s:7:"COA_INT";s:72:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentObjectArrayInternalContentObject";s:4:"USER";s:50:"TYPO3\\CMS\\Frontend\\ContentObject\\UserContentObject";s:8:"USER_INT";s:58:"TYPO3\\CMS\\Frontend\\ContentObject\\UserInternalContentObject";s:5:"FILES";s:51:"TYPO3\\CMS\\Frontend\\ContentObject\\FilesContentObject";s:5:"IMAGE";s:51:"TYPO3\\CMS\\Frontend\\ContentObject\\ImageContentObject";s:12:"IMG_RESOURCE";s:59:"TYPO3\\CMS\\Frontend\\ContentObject\\ImageResourceContentObject";s:7:"CONTENT";s:53:"TYPO3\\CMS\\Frontend\\ContentObject\\ContentContentObject";s:7:"RECORDS";s:53:"TYPO3\\CMS\\Frontend\\ContentObject\\RecordsContentObject";s:5:"HMENU";s:62:"TYPO3\\CMS\\Frontend\\ContentObject\\HierarchicalMenuContentObject";s:13:"LOAD_REGISTER";s:58:"TYPO3\\CMS\\Frontend\\ContentObject\\LoadRegisterContentObject";s:16:"RESTORE_REGISTER";s:61:"TYPO3\\CMS\\Frontend\\ContentObject\\RestoreRegisterContentObject";s:13:"FLUIDTEMPLATE";s:59:"TYPO3\\CMS\\Frontend\\ContentObject\\FluidTemplateContentObject";s:3:"SVG";s:68:"TYPO3\\CMS\\Frontend\\ContentObject\\ScalableVectorGraphicsContentObject";s:9:"EDITPANEL";s:55:"TYPO3\\CMS\\Frontend\\ContentObject\\EditPanelContentObject";s:15:"SOLR_MULTIVALUE";s:48:"ApacheSolrForTypo3\\Solr\\ContentObject\\Multivalue";s:12:"SOLR_CONTENT";s:45:"ApacheSolrForTypo3\\Solr\\ContentObject\\Content";s:13:"SOLR_RELATION";s:46:"ApacheSolrForTypo3\\Solr\\ContentObject\\Relation";s:19:"SOLR_CLASSIFICATION";s:52:"ApacheSolrForTypo3\\Solr\\ContentObject\\Classification";s:20:"TYPOSCRIPT_RENDERING";s:73:"Helhum\\TyposcriptRendering\\ContentObject\\TypoScriptRenderingContentObject";}s:4:"data";N;s:8:"' . "\0" . '*' . "\0" . 'table";s:0:"";s:7:"oldData";a:0:{}s:15:"alternativeData";s:0:"";s:10:"parameters";a:0:{}s:13:"currentValKey";s:26:"currentValue_kidjls9dksoje";s:13:"currentRecord";s:0:"";s:18:"currentRecordTotal";i:0;s:19:"currentRecordNumber";i:0;s:18:"parentRecordNumber";i:0;s:12:"parentRecord";a:0:{}s:23:"checkPid_badDoktypeList";i:255;s:15:"lastTypoLinkUrl";s:0:"";s:18:"lastTypoLinkTarget";s:0:"";s:14:"lastTypoLinkLD";a:0:{}s:18:"lastTypoLinkResult";N;s:14:"recordRegister";a:0:{}s:21:"' . "\0" . '*' . "\0" . 'stdWrapHookObjects";a:0:{}s:28:"' . "\0" . '*' . "\0" . 'getImgResourceHookObjects";N;s:24:"doConvertToUserIntObject";b:0;s:17:"' . "\0" . '*' . "\0" . 'userObjectType";i:1;s:16:"' . "\0" . '*' . "\0" . 'stopRendering";a:0:{}s:24:"' . "\0" . '*' . "\0" . 'stdWrapRecursionLevel";i:0;s:32:"' . "\0" . '*' . "\0" . 'defaultFrontendJavaScriptFile";s:60:"EXT:frontend/Resources/Public/JavaScript/default_frontend.js";}', 'type' => 'FUNC')), object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/public/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php line 2811
    protected function recursivelyReplaceIntPlaceholdersInContent(ServerRequestInterface $request)
    {
        do {
            $nonCacheableData = $this->config['INTincScript'];
            $this->processNonCacheableContentPartsAndSubstituteContentMarkers($nonCacheableData, $request);
            // Check if there were new items added to INTincScript during the previous execution:
            // array_diff_assoc throws notices if values are arrays but not strings. We suppress this here.
            $nonCacheableData = @array_diff_assoc($this->config['INTincScript'], $nonCacheableData);
            $reprocess = count($nonCacheableData) > 0;
at TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController->recursivelyReplaceIntPlaceholdersInContent(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/public/typo3/sysext/frontend/Classes/Controller/TypoScriptFrontendController.php line 2780
            $assetCollector = unserialize($this->config['INTincScript_ext']['assetCollector'], ['allowed_classes' => [AssetCollector::class]]);
            GeneralUtility::makeInstance(AssetCollector::class)->updateState($assetCollector->getState());
        }

        $this->recursivelyReplaceIntPlaceholdersInContent($request);
        $this->getTimeTracker()->push('Substitute header section');
        $this->INTincScript_loadJSCode();
        $this->generatePageTitle();

at TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController->INTincScript(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 165
                    'prefixWithAbsRefPrefix'
                );
            }
            $this->timeTracker->push('Non-cached objects');
            $controller->INTincScript($request);
            $this->timeTracker->pull();
        }

        // Create a default Response object and add headers and body to it
at TYPO3\CMS\Frontend\Http\RequestHandler->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/public/typo3conf/ext/web2pdf/Classes/Middleware/PdfHandler.php line 59
    {
        $pluginParams = $request->getQueryParams()['tx_web2pdf_pi1'] ?? null;

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

        if (($pluginParams['argument'] !== ModuleOptions::QUERY_PARAMETER)) {
            return $handler->handle($request);
at Mittwald\Web2pdf\Middleware\PdfHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/public/typo3conf/ext/typoscript_rendering/Classes/Middleware/TypoScriptRenderingMiddleware.php line 43
    {
        $frontendController = $GLOBALS['TSFE'];
        $requestedContentType = $frontendController->config['config']['contentType'] ?? self::defaultContentType;
        if (!$frontendController->isGeneratePage() || !isset($request->getQueryParams()[self::argumentNamespace])) {
            return $this->amendContentType($handler->handle($request), $requestedContentType);
        }
        $this->ensureRequiredEnvironment();

        $frontendController->config['config']['debug'] = 0;
at Helhum\TyposcriptRendering\Middleware\TypoScriptRenderingMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/public/typo3conf/ext/solr/Classes/Middleware/PageIndexerFinisher.php line 42
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if ($request->hasHeader(PageIndexerRequest::SOLR_INDEX_HEADER)) {
            /* @var PageIndexerRequestHandler $pageIndexerRequestHandler */
            $pageIndexerRequestHandler = GeneralUtility::makeInstance(PageIndexerRequestHandler::class);
            $pageIndexerRequestHandler->shutdown();
at ApacheSolrForTypo3\Solr\Middleware\PageIndexerFinisher->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/public/typo3conf/ext/t3monitor/Classes/Middleware/FetchMonitorData.php line 32
            /** @var DataCollector $dataCollector */
            $dataCollector = GeneralUtility::makeInstance(DataCollector::class);
            return $dataCollector->processRequest($request);
        }
        return $handler->handle($request);
    }
}
at BrainAppeal\T3monitor\Middleware\FetchMonitorData->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/public/typo3conf/ext/solr/Classes/Middleware/PageIndexerInitialization.php line 66
            }
            $pageIndexerRequestHandler->run();
        }

        return $handler->handle($request);
    }
}
at ApacheSolrForTypo3\Solr\Middleware\PageIndexerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/public/typo3/sysext/workspaces/Classes/Middleware/WorkspacePreviewPermissions.php line 47
        $pageArguments = $request->getAttribute('routing', null);
        if ($pageArguments instanceof PageArguments && $GLOBALS['BE_USER'] instanceof PreviewUserAuthentication) {
            $GLOBALS['BE_USER']->setWebmounts([$pageArguments->getPageId()]);
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Workspaces\Middleware\WorkspacePreviewPermissions->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/public/typo3/sysext/workspaces/Classes/Middleware/WorkspacePreview.php line 128
            $addInformationAboutDisabledCache = true;
            $setCookieOnCurrentRequest = false;
        }

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

        $tsfe = $this->getTypoScriptFrontendController();
        if ($tsfe instanceof TypoScriptFrontendController && $addInformationAboutDisabledCache) {
            $tsfe->set_no_cache('GET Parameter ADMCMD_prev=LIVE was given', true);
at TYPO3\CMS\Workspaces\Middleware\WorkspacePreview->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/public/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 89
                return $response;
            }
        }

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

    protected function buildRedirectResponse(UriInterface $uri, array $redirectRecord): ResponseInterface
    {
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/public/typo3conf/ext/solr/Classes/Middleware/SolrRoutingMiddleware.php line 140
            $this->language->getLanguageId() === 0 ? (int)$page['uid'] : (int)$page['l10n_parent']
        );

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

        $this->configure($enhancerConfiguration);

at ApacheSolrForTypo3\Solr\Middleware\SolrRoutingMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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(class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227))
in /usr/www/users/herzog/webseite_2022/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 class@anonymous/usr/www/users/herzog/webseite_2022/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$227->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/herzog/webseite_2022/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/www/users/herzog/webseite_2022/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/www/users/herzog/webseite_2022/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/www/users/herzog/webseite_2022/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/www/users/herzog/webseite_2022/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/www/users/herzog/webseite_2022/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();
});