Whoops, looks like something went wrong.

Get help in the TYPO3 Documentation

If you need help solving this exception, you can have a look at the TYPO3 Documentation. There you can find solutions provided by the TYPO3 community. Once you have found a solution to the problem, help others by contributing to the documentation page.

Find a solution for this exception in the TYPO3 Documentation.

(1/1) #1297933823 TYPO3\CMS\Extbase\Property\Exception\TargetNotFoundException

Object of type Meinekirche\Meinekirche\Domain\Model\Job with identity "136" not found.

in /html/typo3/typo3_src-9.5.40/typo3/sysext/extbase/Classes/Property/TypeConverter/PersistentObjectConverter.php line 223
            throw new \TYPO3\CMS\Extbase\Property\Exception\InvalidSourceException('The identity property "' . $identity . '" is no UID.', 1297931020);
        }

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

        return $object;
    }
at TYPO3\CMS\Extbase\Property\TypeConverter\PersistentObjectConverter->fetchObjectFromPersistence('136', 'Meinekirche\\Meinekirche\\Domain\\Model\\Job')
in /html/typo3/typo3_src-9.5.40/typo3/sysext/extbase/Classes/Property/TypeConverter/PersistentObjectConverter.php line 155
        } elseif (is_string($source) || is_int($source)) {
            if (empty($source)) {
                return null;
            }
            $object = $this->fetchObjectFromPersistence($source, $targetType);
        } else {
            throw new \InvalidArgumentException('Only integers, strings and arrays are accepted.', 1305630314);
        }
        foreach ($convertedChildProperties as $propertyName => $propertyValue) {
at TYPO3\CMS\Extbase\Property\TypeConverter\PersistentObjectConverter->convertFrom('136', 'Meinekirche\\Meinekirche\\Domain\\Model\\Job', array(), object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/extbase/Classes/Property/PropertyMapper.php line 193
            if (!($targetPropertyValue instanceof \TYPO3\CMS\Extbase\Error\Error)) {
                $convertedChildProperties[$targetPropertyName] = $targetPropertyValue;
            }
        }
        $result = $typeConverter->convertFrom($source, $targetType, $convertedChildProperties, $configuration);

        if ($result instanceof \TYPO3\CMS\Extbase\Error\Error) {
            $this->messages->forProperty(implode('.', $currentPropertyPath))->addError($result);
        }
at TYPO3\CMS\Extbase\Property\PropertyMapper->doMapping('136', 'Meinekirche\\Meinekirche\\Domain\\Model\\Job', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration), array())
in /html/typo3/typo3_src-9.5.40/typo3/sysext/extbase/Classes/Property/PropertyMapper.php line 111
        }
        $currentPropertyPath = [];
        $this->messages = new \TYPO3\CMS\Extbase\Error\Result();
        try {
            $result = $this->doMapping($source, $targetType, $configuration, $currentPropertyPath);
            if ($result instanceof \TYPO3\CMS\Extbase\Error\Error) {
                return null;
            }

at TYPO3\CMS\Extbase\Property\PropertyMapper->convert('136', 'Meinekirche\\Meinekirche\\Domain\\Model\\Job', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/extbase/Classes/Mvc/Controller/Argument.php line 265
            $this->value = $rawValue;
            return $this;
        }
        try {
            $this->value = $this->propertyMapper->convert($rawValue, $this->dataType, $this->propertyMappingConfiguration);
        } catch (TargetNotFoundException $e) {
            // for optional arguments no exeption is thrown.
            if ($this->isRequired()) {
                throw $e;
at TYPO3\CMS\Extbase\Mvc\Controller\Argument->setValue('136')
in /html/typo3/typo3_src-9.5.40/typo3/sysext/extbase/Classes/Mvc/Controller/AbstractController.php line 412
        /** @var \TYPO3\CMS\Extbase\Mvc\Controller\Argument $argument */
        foreach ($this->arguments as $argument) {
            $argumentName = $argument->getName();
            if ($this->request->hasArgument($argumentName)) {
                $argument->setValue($this->request->getArgument($argumentName));
            } elseif ($argument->isRequired()) {
                throw new \TYPO3\CMS\Extbase\Mvc\Controller\Exception\RequiredArgumentMissingException('Required argument "' . $argumentName . '" is not set for ' . $this->request->getControllerObjectName() . '->' . $this->request->getControllerActionName() . '.', 1298012500);
            }
        }
at TYPO3\CMS\Extbase\Mvc\Controller\AbstractController->mapRequestArgumentsToControllerArguments()
in /html/typo3/typo3_src-9.5.40/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 161
        $actionInitializationMethodName = 'initialize' . ucfirst($this->actionMethodName);
        if (method_exists($this, $actionInitializationMethodName)) {
            call_user_func([$this, $actionInitializationMethodName]);
        }
        $this->mapRequestArgumentsToControllerArguments();
        $this->controllerContext = $this->buildControllerContext();
        $this->view = $this->resolveView();
        if ($this->view !== null) {
            $this->initializeView($this->view);
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 73
                throw new \TYPO3\CMS\Extbase\Mvc\Exception\InfiniteLoopException('Could not ultimately dispatch the request after ' . $dispatchLoopCount . ' iterations. Most probably, a @' . \TYPO3\CMS\Extbase\Annotation\IgnoreValidation::class . ' annotation is missing on re-displaying a form with validation errors.', 1217839467);
            }
            $controller = $this->resolveController($request);
            try {
                $controller->processRequest($request, $response);
            } catch (\TYPO3\CMS\Extbase\Mvc\Exception\StopActionException $ignoredException) {
            }
        }
        $this->emitAfterRequestDispatchSignal($request, $response);
at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 92
        }

        /** @var \TYPO3\CMS\Extbase\Mvc\ResponseInterface $response */
        $response = $this->objectManager->get(\TYPO3\CMS\Extbase\Mvc\Web\Response::class);
        $this->dispatcher->dispatch($request, $response);
        return $response;
    }

    /**
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest()
in /html/typo3/typo3_src-9.5.40/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 172
        /** @var \TYPO3\CMS\Extbase\Mvc\RequestHandlerResolver $requestHandlerResolver */
        $requestHandlerResolver = $this->objectManager->get(\TYPO3\CMS\Extbase\Mvc\RequestHandlerResolver::class);
        $requestHandler = $requestHandlerResolver->resolveRequestHandler();

        $response = $requestHandler->handleRequest();
        // If response is NULL after handling the request we need to stop
        // This happens for instance, when a USER object was converted to a USER_INT
        // @see TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler::handleRequest()
        if ($response === null) {
at TYPO3\CMS\Extbase\Core\Bootstrap->handleRequest()
in /html/typo3/typo3_src-9.5.40/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 159
     */
    public function run($content, $configuration)
    {
        $this->initialize($configuration);
        return $this->handleRequest();
    }

    /**
     * @throws \TYPO3\CMS\Extbase\Mvc\Exception\CommandException Is thrown if the response object defined an exit code > 0
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Job', 'vendorName' => 'Meinekirche'))
at call_user_func_array(array(object(TYPO3\CMS\Extbase\Core\Bootstrap), 'run'), array('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Job', 'vendorName' => 'Meinekirche')))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 6015
                        $classObj,
                        $parts[1]
                    ], [
                        $content,
                        $conf
                    ]);
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', 3);
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Job', 'vendorName' => 'Meinekirche'), '')
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 41
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->INTincScript_process()!
            $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' => 'Meinekirche', 'pluginName' => 'Job', 'vendorName' => 'Meinekirche'))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // 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' => 'Meinekirche', 'pluginName' => 'Job', 'vendorName' => 'Meinekirche'))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Job', 'vendorName' => 'Meinekirche'), 'tt_content.list.20.meinekirche_job')
in /html/typo3/typo3_src-9.5.40/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 189
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView', 'vendorName' => 'FriendsOfTYPO3'), 'datamints_feuser_pi1' => '< plugin.tx_datamintsfeuser_pi1', 'dsvgo_dsvgocheck' => 'USER', 'dsvgo_dsvgocheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dsvgo', 'pluginName' => 'Dsvgocheck', 'vendorName' => 'Haftungsausschluss'), 'weiter_weiter' => 'USER', 'weiter_weiter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Weiter', 'pluginName' => 'weiter', 'vendorName' => 'Haftungsausschluss'), 'evangelischammarkt_suche' => 'USER', 'evangelischammarkt_suche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Evangelischammarkt', 'pluginName' => 'Suche', 'vendorName' => 'WACON'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1', 'vendorName' => 'Fixpunkt'), 'fsmediagallery_mediagallery' => 'USER', 'fsmediagallery_mediagallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FsMediaGallery', 'pluginName' => 'Mediagallery', 'vendorName' => 'MiniFranske'), 'meinekirche_orga' => 'USER', 'meinekirche_orga.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Orga', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltung' => 'USER', 'meinekirche_veranstaltung.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltung', 'vendorName' => 'Meinekirche'), 'meinekirche_person' => 'USER', 'meinekirche_person.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Person', 'vendorName' => 'Meinekirche'), 'meinekirche_stichwort' => 'USER', 'meinekirche_stichwort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Stichwort', 'vendorName' => 'Meinekirche'), 'meinekirche_gruppe' => 'USER', 'meinekirche_gruppe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Gruppe', 'vendorName' => 'Meinekirche'), 'meinekirche_job' => 'USER', 'meinekirche_job.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Job', 'vendorName' => 'Meinekirche'), 'meinekirche_predigt' => 'USER', 'meinekirche_predigt.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Predigt', 'vendorName' => 'Meinekirche'), 'meinekirche_presse' => 'USER', 'meinekirche_presse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Presse', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltungsort' => 'USER', 'meinekirche_veranstaltungsort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltungsort', 'vendorName' => 'Meinekirche'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'phipfelswatchword_displaywatchword' => 'USER', 'phipfelswatchword_displaywatchword.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PhipfelsWatchword', 'pluginName' => 'Displaywatchword', 'vendorName' => 'Phipfel'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'srfreecap_imagegenerator' => 'USER', 'srfreecap_imagegenerator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'ImageGenerator', 'vendorName' => 'SJBR'), 'srfreecap_audioplayer' => 'USER', 'srfreecap_audioplayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'AudioPlayer', 'vendorName' => 'SJBR'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe', 'vendorName' => 'Waconcookiemanagement'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script', 'vendorName' => 'Waconcookiemanagement'), 'waconversions_versioncheck' => 'USER', 'waconversions_versioncheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconVersions', 'pluginName' => 'Versioncheck', 'vendorName' => 'WACON'), 'waconspendenprojekte_projekte' => 'USER', 'waconspendenprojekte_projekte.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Projekte', 'vendorName' => 'Waconspendenprojekte'), 'waconspendenprojekte_slider' => 'USER', 'waconspendenprojekte_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Slider', 'vendorName' => 'Waconspendenprojekte'), 'wsflexslider_pi1' => 'USER', 'wsflexslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsFlexslider', 'pluginName' => 'Pi1', 'vendorName' => 'WapplerSystems')), 'tt_content.list.20.meinekirche_job', 'meinekirche_job')
in /html/typo3/typo3_src-9.5.40/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 166
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('uid' => 13221, 'pid' => 5901, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 12206, 'tstamp' => 1554790679, 'crdate' => 1552643042, 'cruser_id' => 1, 'hidden' => 0, 'sorting' => 128, 'CType' => 'list', 'header' => 'Stellenbörse Kornwestheim', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => array(), 'layout' => '0', 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '5810', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => 'meinekirche_job', 'sectionIndex' => 1, 'linkToTop' => 0, 'filelink_size' => 0, 'date' => 0, 'recursive' => 250, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.kita"> <value index="vDEF">0</value> </field> <field index="settings.pflege"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:21:{s:5:"CType";N;s:6:"colPos";N;s:16:"sys_language_uid";N;s:6:"header";N;s:13:"header_layout";N;s:4:"date";N;s:11:"header_link";N;s:14:"rowDescription";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:5:"pages";N;s:9:"recursive";N;s:12:"sectionIndex";N;s:9:"linkToTop";N;s:6:"hidden";N;s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";N;s:8:"editlock";N;s:10:"categories";N;s:25:"tx_gridelements_container";N;}', 'module_sys_dmail_category' => 0, 'file_collections' => '', 'filelink_sorting' => '', 'target' => '', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'selected_categories' => '', 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'tx_mask_inhalt' => 0, 'tx_mask_inhalt_parent' => 0, 'tx_mask_links' => 0, 'tx_mask_links_parent' => 0, 'tx_wsflexslider_images' => null, 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '0', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'tx_mask_rechts' => 0, 'tx_mask_rechts_parent' => 0, 'tx_mask_aktuelle_informationen' => 0, 'tx_mask_farbe' => null, 'tx_mask_content' => 0, 'tx_mask_content_parent' => 0, 'header_position' => '', 'spaceAfter' => 0, 'spaceBefore' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'gridelements_shortcut_page_order_by' => 0, 'tx_news_related_news' => 0, 'tx_mask_faq_row' => 0, 'tx_mask_date' => null, 'tx_mask_stand' => 0.0, 'tx_mask_ziel' => 0.0), 'typoscriptObjectPath' => 'tt_content.list.20.meinekirche_job', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/Standard_action_List_a0211532f39917bbe626bb41df7dd59379149ce4.php line 70
$array11 = array (
);$arguments7['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array11);
$arguments7['table'] = 'tt_content';
$renderChildrenClosure8 = ($arguments7['data'] !== null) ? function() use ($arguments7) { return $arguments7['data']; } : $renderChildrenClosure8;
$output6 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments7, $renderChildrenClosure8, $renderingContext);

$output6 .= '
 ';
return $output6;
at Standard_action_List_a0211532f39917bbe626bb41df7dd59379149ce4->{closure}()
in /html/typo3/typo3_src-9.5.40/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure)), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/Standard_action_List_a0211532f39917bbe626bb41df7dd59379149ce4.php line 95
     $renderingContext
    );
$arguments1['__thenClosure'] = $renderChildrenClosure2;

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

$output0 .= '

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

$output6 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments48, $renderChildrenClosure49, $renderingContext);

$output6 .= '
    ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_7909d5bf90ca6834ffba7388b95b5902eb315526->{closure}()
in /html/typo3/typo3_src-9.5.40/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/layout_Default_html_7909d5bf90ca6834ffba7388b95b5902eb315526.php line 1675
  ';
return $output68;
};

$output3 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments4, $renderChildrenClosure5, $renderingContext);

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

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

$output0 .= '

';
at layout_Default_html_7909d5bf90ca6834ffba7388b95b5902eb315526->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3_src-9.5.40/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 201
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

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

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

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView', 'vendorName' => 'FriendsOfTYPO3'), 'datamints_feuser_pi1' => '< plugin.tx_datamintsfeuser_pi1', 'dsvgo_dsvgocheck' => 'USER', 'dsvgo_dsvgocheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dsvgo', 'pluginName' => 'Dsvgocheck', 'vendorName' => 'Haftungsausschluss'), 'weiter_weiter' => 'USER', 'weiter_weiter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Weiter', 'pluginName' => 'weiter', 'vendorName' => 'Haftungsausschluss'), 'evangelischammarkt_suche' => 'USER', 'evangelischammarkt_suche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Evangelischammarkt', 'pluginName' => 'Suche', 'vendorName' => 'WACON'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1', 'vendorName' => 'Fixpunkt'), 'fsmediagallery_mediagallery' => 'USER', 'fsmediagallery_mediagallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FsMediaGallery', 'pluginName' => 'Mediagallery', 'vendorName' => 'MiniFranske'), 'meinekirche_orga' => 'USER', 'meinekirche_orga.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Orga', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltung' => 'USER', 'meinekirche_veranstaltung.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltung', 'vendorName' => 'Meinekirche'), 'meinekirche_person' => 'USER', 'meinekirche_person.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Person', 'vendorName' => 'Meinekirche'), 'meinekirche_stichwort' => 'USER', 'meinekirche_stichwort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Stichwort', 'vendorName' => 'Meinekirche'), 'meinekirche_gruppe' => 'USER', 'meinekirche_gruppe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Gruppe', 'vendorName' => 'Meinekirche'), 'meinekirche_job' => 'USER', 'meinekirche_job.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Job', 'vendorName' => 'Meinekirche'), 'meinekirche_predigt' => 'USER', 'meinekirche_predigt.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Predigt', 'vendorName' => 'Meinekirche'), 'meinekirche_presse' => 'USER', 'meinekirche_presse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Presse', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltungsort' => 'USER', 'meinekirche_veranstaltungsort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltungsort', 'vendorName' => 'Meinekirche'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'phipfelswatchword_displaywatchword' => 'USER', 'phipfelswatchword_displaywatchword.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PhipfelsWatchword', 'pluginName' => 'Displaywatchword', 'vendorName' => 'Phipfel'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'srfreecap_imagegenerator' => 'USER', 'srfreecap_imagegenerator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'ImageGenerator', 'vendorName' => 'SJBR'), 'srfreecap_audioplayer' => 'USER', 'srfreecap_audioplayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'AudioPlayer', 'vendorName' => 'SJBR'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe', 'vendorName' => 'Waconcookiemanagement'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script', 'vendorName' => 'Waconcookiemanagement'), 'waconversions_versioncheck' => 'USER', 'waconversions_versioncheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconVersions', 'pluginName' => 'Versioncheck', 'vendorName' => 'WACON'), 'waconspendenprojekte_projekte' => 'USER', 'waconspendenprojekte_projekte.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Projekte', 'vendorName' => 'Waconspendenprojekte'), 'waconspendenprojekte_slider' => 'USER', 'waconspendenprojekte_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Slider', 'vendorName' => 'Waconspendenprojekte'), 'wsflexslider_pi1' => 'USER', 'wsflexslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsFlexslider', 'pluginName' => 'Pi1', 'vendorName' => 'WapplerSystems'))))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // 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(MASK\Mask\Fluid\FluidTemplateContentObject), array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView', 'vendorName' => 'FriendsOfTYPO3'), 'datamints_feuser_pi1' => '< plugin.tx_datamintsfeuser_pi1', 'dsvgo_dsvgocheck' => 'USER', 'dsvgo_dsvgocheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dsvgo', 'pluginName' => 'Dsvgocheck', 'vendorName' => 'Haftungsausschluss'), 'weiter_weiter' => 'USER', 'weiter_weiter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Weiter', 'pluginName' => 'weiter', 'vendorName' => 'Haftungsausschluss'), 'evangelischammarkt_suche' => 'USER', 'evangelischammarkt_suche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Evangelischammarkt', 'pluginName' => 'Suche', 'vendorName' => 'WACON'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1', 'vendorName' => 'Fixpunkt'), 'fsmediagallery_mediagallery' => 'USER', 'fsmediagallery_mediagallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FsMediaGallery', 'pluginName' => 'Mediagallery', 'vendorName' => 'MiniFranske'), 'meinekirche_orga' => 'USER', 'meinekirche_orga.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Orga', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltung' => 'USER', 'meinekirche_veranstaltung.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltung', 'vendorName' => 'Meinekirche'), 'meinekirche_person' => 'USER', 'meinekirche_person.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Person', 'vendorName' => 'Meinekirche'), 'meinekirche_stichwort' => 'USER', 'meinekirche_stichwort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Stichwort', 'vendorName' => 'Meinekirche'), 'meinekirche_gruppe' => 'USER', 'meinekirche_gruppe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Gruppe', 'vendorName' => 'Meinekirche'), 'meinekirche_job' => 'USER', 'meinekirche_job.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Job', 'vendorName' => 'Meinekirche'), 'meinekirche_predigt' => 'USER', 'meinekirche_predigt.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Predigt', 'vendorName' => 'Meinekirche'), 'meinekirche_presse' => 'USER', 'meinekirche_presse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Presse', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltungsort' => 'USER', 'meinekirche_veranstaltungsort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltungsort', 'vendorName' => 'Meinekirche'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'phipfelswatchword_displaywatchword' => 'USER', 'phipfelswatchword_displaywatchword.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PhipfelsWatchword', 'pluginName' => 'Displaywatchword', 'vendorName' => 'Phipfel'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'srfreecap_imagegenerator' => 'USER', 'srfreecap_imagegenerator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'ImageGenerator', 'vendorName' => 'SJBR'), 'srfreecap_audioplayer' => 'USER', 'srfreecap_audioplayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'AudioPlayer', 'vendorName' => 'SJBR'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe', 'vendorName' => 'Waconcookiemanagement'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script', 'vendorName' => 'Waconcookiemanagement'), 'waconversions_versioncheck' => 'USER', 'waconversions_versioncheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconVersions', 'pluginName' => 'Versioncheck', 'vendorName' => 'WACON'), 'waconspendenprojekte_projekte' => 'USER', 'waconspendenprojekte_projekte.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Projekte', 'vendorName' => 'Waconspendenprojekte'), 'waconspendenprojekte_slider' => 'USER', 'waconspendenprojekte_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Slider', 'vendorName' => 'Waconspendenprojekte'), 'wsflexslider_pi1' => 'USER', 'wsflexslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsFlexslider', 'pluginName' => 'Pi1', 'vendorName' => 'WapplerSystems'))))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView', 'vendorName' => 'FriendsOfTYPO3'), 'datamints_feuser_pi1' => '< plugin.tx_datamintsfeuser_pi1', 'dsvgo_dsvgocheck' => 'USER', 'dsvgo_dsvgocheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dsvgo', 'pluginName' => 'Dsvgocheck', 'vendorName' => 'Haftungsausschluss'), 'weiter_weiter' => 'USER', 'weiter_weiter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Weiter', 'pluginName' => 'weiter', 'vendorName' => 'Haftungsausschluss'), 'evangelischammarkt_suche' => 'USER', 'evangelischammarkt_suche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Evangelischammarkt', 'pluginName' => 'Suche', 'vendorName' => 'WACON'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1', 'vendorName' => 'Fixpunkt'), 'fsmediagallery_mediagallery' => 'USER', 'fsmediagallery_mediagallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FsMediaGallery', 'pluginName' => 'Mediagallery', 'vendorName' => 'MiniFranske'), 'meinekirche_orga' => 'USER', 'meinekirche_orga.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Orga', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltung' => 'USER', 'meinekirche_veranstaltung.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltung', 'vendorName' => 'Meinekirche'), 'meinekirche_person' => 'USER', 'meinekirche_person.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Person', 'vendorName' => 'Meinekirche'), 'meinekirche_stichwort' => 'USER', 'meinekirche_stichwort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Stichwort', 'vendorName' => 'Meinekirche'), 'meinekirche_gruppe' => 'USER', 'meinekirche_gruppe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Gruppe', 'vendorName' => 'Meinekirche'), 'meinekirche_job' => 'USER', 'meinekirche_job.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Job', 'vendorName' => 'Meinekirche'), 'meinekirche_predigt' => 'USER', 'meinekirche_predigt.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Predigt', 'vendorName' => 'Meinekirche'), 'meinekirche_presse' => 'USER', 'meinekirche_presse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Presse', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltungsort' => 'USER', 'meinekirche_veranstaltungsort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltungsort', 'vendorName' => 'Meinekirche'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'phipfelswatchword_displaywatchword' => 'USER', 'phipfelswatchword_displaywatchword.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PhipfelsWatchword', 'pluginName' => 'Displaywatchword', 'vendorName' => 'Phipfel'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'srfreecap_imagegenerator' => 'USER', 'srfreecap_imagegenerator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'ImageGenerator', 'vendorName' => 'SJBR'), 'srfreecap_audioplayer' => 'USER', 'srfreecap_audioplayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'AudioPlayer', 'vendorName' => 'SJBR'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe', 'vendorName' => 'Waconcookiemanagement'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script', 'vendorName' => 'Waconcookiemanagement'), 'waconversions_versioncheck' => 'USER', 'waconversions_versioncheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconVersions', 'pluginName' => 'Versioncheck', 'vendorName' => 'WACON'), 'waconspendenprojekte_projekte' => 'USER', 'waconspendenprojekte_projekte.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Projekte', 'vendorName' => 'Waconspendenprojekte'), 'waconspendenprojekte_slider' => 'USER', 'waconspendenprojekte_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Slider', 'vendorName' => 'Waconspendenprojekte'), 'wsflexslider_pi1' => 'USER', 'wsflexslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsFlexslider', 'pluginName' => 'Pi1', 'vendorName' => 'WapplerSystems'))), 'lib.contentElement')
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 719
                list($name, $conf) = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView', 'vendorName' => 'FriendsOfTYPO3'), 'datamints_feuser_pi1' => '< plugin.tx_datamintsfeuser_pi1', 'dsvgo_dsvgocheck' => 'USER', 'dsvgo_dsvgocheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dsvgo', 'pluginName' => 'Dsvgocheck', 'vendorName' => 'Haftungsausschluss'), 'weiter_weiter' => 'USER', 'weiter_weiter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Weiter', 'pluginName' => 'weiter', 'vendorName' => 'Haftungsausschluss'), 'evangelischammarkt_suche' => 'USER', 'evangelischammarkt_suche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Evangelischammarkt', 'pluginName' => 'Suche', 'vendorName' => 'WACON'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1', 'vendorName' => 'Fixpunkt'), 'fsmediagallery_mediagallery' => 'USER', 'fsmediagallery_mediagallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FsMediaGallery', 'pluginName' => 'Mediagallery', 'vendorName' => 'MiniFranske'), 'meinekirche_orga' => 'USER', 'meinekirche_orga.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Orga', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltung' => 'USER', 'meinekirche_veranstaltung.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltung', 'vendorName' => 'Meinekirche'), 'meinekirche_person' => 'USER', 'meinekirche_person.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Person', 'vendorName' => 'Meinekirche'), 'meinekirche_stichwort' => 'USER', 'meinekirche_stichwort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Stichwort', 'vendorName' => 'Meinekirche'), 'meinekirche_gruppe' => 'USER', 'meinekirche_gruppe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Gruppe', 'vendorName' => 'Meinekirche'), 'meinekirche_job' => 'USER', 'meinekirche_job.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Job', 'vendorName' => 'Meinekirche'), 'meinekirche_predigt' => 'USER', 'meinekirche_predigt.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Predigt', 'vendorName' => 'Meinekirche'), 'meinekirche_presse' => 'USER', 'meinekirche_presse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Presse', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltungsort' => 'USER', 'meinekirche_veranstaltungsort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltungsort', 'vendorName' => 'Meinekirche'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'phipfelswatchword_displaywatchword' => 'USER', 'phipfelswatchword_displaywatchword.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PhipfelsWatchword', 'pluginName' => 'Displaywatchword', 'vendorName' => 'Phipfel'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'srfreecap_imagegenerator' => 'USER', 'srfreecap_imagegenerator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'ImageGenerator', 'vendorName' => 'SJBR'), 'srfreecap_audioplayer' => 'USER', 'srfreecap_audioplayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'AudioPlayer', 'vendorName' => 'SJBR'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe', 'vendorName' => 'Waconcookiemanagement'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script', 'vendorName' => 'Waconcookiemanagement'), 'waconversions_versioncheck' => 'USER', 'waconversions_versioncheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconVersions', 'pluginName' => 'Versioncheck', 'vendorName' => 'WACON'), 'waconspendenprojekte_projekte' => 'USER', 'waconspendenprojekte_projekte.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Projekte', 'vendorName' => 'Waconspendenprojekte'), 'waconspendenprojekte_slider' => 'USER', 'waconspendenprojekte_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Slider', 'vendorName' => 'Waconspendenprojekte'), 'wsflexslider_pi1' => 'USER', 'wsflexslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsFlexslider', 'pluginName' => 'Pi1', 'vendorName' => 'WapplerSystems'))), 'list')
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 46
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'mask_aktuelleinformationen' => '< lib.maskContentElement', 'mask_aktuelleinformationen.' => array('templateName' => 'Aktuelleinformationen.html'), 'mask_bilderleiste' => '< lib.maskContentElement', 'mask_bilderleiste.' => array('templateName' => 'Bilderleiste.html'), 'mask_bildkachel' => '< lib.maskContentElement', 'mask_bildkachel.' => array('templateName' => 'Bildkachel.html'), 'mask_dreispalten' => '< lib.maskContentElement', 'mask_dreispalten.' => array('templateName' => 'Dreispalten.html'), 'mask_faqelement' => '< lib.maskContentElement', 'mask_faqelement.' => array('templateName' => 'Faqelement.html'), 'mask_flipkachel' => '< lib.maskContentElement', 'mask_flipkachel.' => array('templateName' => 'Flipkachel.html'), 'mask_spendenbarometer' => '< lib.maskContentElement', 'mask_spendenbarometer.' => array('templateName' => 'Spendenbarometer.html'), 'mask_welcome-eam' => '< lib.maskContentElement', 'mask_welcome-eam.' => array('templateName' => 'Welcome-eam.html'), 'mask_welcome-stadt' => '< lib.maskContentElement', 'mask_welcome-stadt.' => array('templateName' => 'Welcome-stadt.html'), 'mask_zweispaltig' => '< lib.maskContentElement', 'mask_zweispaltig.' => array('templateName' => 'Zweispaltig.html'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView', 'vendorName' => 'FriendsOfTYPO3'), 'datamints_feuser_pi1' => '< plugin.tx_datamintsfeuser_pi1', 'dsvgo_dsvgocheck' => 'USER', 'dsvgo_dsvgocheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dsvgo', 'pluginName' => 'Dsvgocheck', 'vendorName' => 'Haftungsausschluss'), 'weiter_weiter' => 'USER', 'weiter_weiter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Weiter', 'pluginName' => 'weiter', 'vendorName' => 'Haftungsausschluss'), 'evangelischammarkt_suche' => 'USER', 'evangelischammarkt_suche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Evangelischammarkt', 'pluginName' => 'Suche', 'vendorName' => 'WACON'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1', 'vendorName' => 'Fixpunkt'), 'fsmediagallery_mediagallery' => 'USER', 'fsmediagallery_mediagallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FsMediaGallery', 'pluginName' => 'Mediagallery', 'vendorName' => 'MiniFranske'), 'meinekirche_orga' => 'USER', 'meinekirche_orga.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Orga', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltung' => 'USER', 'meinekirche_veranstaltung.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltung', 'vendorName' => 'Meinekirche'), 'meinekirche_person' => 'USER', 'meinekirche_person.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Person', 'vendorName' => 'Meinekirche'), 'meinekirche_stichwort' => 'USER', 'meinekirche_stichwort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Stichwort', 'vendorName' => 'Meinekirche'), 'meinekirche_gruppe' => 'USER', 'meinekirche_gruppe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Gruppe', 'vendorName' => 'Meinekirche'), 'meinekirche_job' => 'USER', 'meinekirche_job.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Job', 'vendorName' => 'Meinekirche'), 'meinekirche_predigt' => 'USER', 'meinekirche_predigt.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Predigt', 'vendorName' => 'Meinekirche'), 'meinekirche_presse' => 'USER', 'meinekirche_presse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Presse', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltungsort' => 'USER', 'meinekirche_veranstaltungsort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltungsort', 'vendorName' => 'Meinekirche'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'phipfelswatchword_displaywatchword' => 'USER', 'phipfelswatchword_displaywatchword.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PhipfelsWatchword', 'pluginName' => 'Displaywatchword', 'vendorName' => 'Phipfel'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'srfreecap_imagegenerator' => 'USER', 'srfreecap_imagegenerator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'ImageGenerator', 'vendorName' => 'SJBR'), 'srfreecap_audioplayer' => 'USER', 'srfreecap_audioplayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'AudioPlayer', 'vendorName' => 'SJBR'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe', 'vendorName' => 'Waconcookiemanagement'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script', 'vendorName' => 'Waconcookiemanagement'), 'waconversions_versioncheck' => 'USER', 'waconversions_versioncheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconVersions', 'pluginName' => 'Versioncheck', 'vendorName' => 'WACON'), 'waconspendenprojekte_projekte' => 'USER', 'waconspendenprojekte_projekte.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Projekte', 'vendorName' => 'Waconspendenprojekte'), 'waconspendenprojekte_slider' => 'USER', 'waconspendenprojekte_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Slider', 'vendorName' => 'Waconspendenprojekte'), 'wsflexslider_pi1' => 'USER', 'wsflexslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsFlexslider', 'pluginName' => 'Pi1', 'vendorName' => 'WapplerSystems'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework', 'vendorName' => 'TYPO3\\CMS'))))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'mask_aktuelleinformationen' => '< lib.maskContentElement', 'mask_aktuelleinformationen.' => array('templateName' => 'Aktuelleinformationen.html'), 'mask_bilderleiste' => '< lib.maskContentElement', 'mask_bilderleiste.' => array('templateName' => 'Bilderleiste.html'), 'mask_bildkachel' => '< lib.maskContentElement', 'mask_bildkachel.' => array('templateName' => 'Bildkachel.html'), 'mask_dreispalten' => '< lib.maskContentElement', 'mask_dreispalten.' => array('templateName' => 'Dreispalten.html'), 'mask_faqelement' => '< lib.maskContentElement', 'mask_faqelement.' => array('templateName' => 'Faqelement.html'), 'mask_flipkachel' => '< lib.maskContentElement', 'mask_flipkachel.' => array('templateName' => 'Flipkachel.html'), 'mask_spendenbarometer' => '< lib.maskContentElement', 'mask_spendenbarometer.' => array('templateName' => 'Spendenbarometer.html'), 'mask_welcome-eam' => '< lib.maskContentElement', 'mask_welcome-eam.' => array('templateName' => 'Welcome-eam.html'), 'mask_welcome-stadt' => '< lib.maskContentElement', 'mask_welcome-stadt.' => array('templateName' => 'Welcome-stadt.html'), 'mask_zweispaltig' => '< lib.maskContentElement', 'mask_zweispaltig.' => array('templateName' => 'Zweispaltig.html'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView', 'vendorName' => 'FriendsOfTYPO3'), 'datamints_feuser_pi1' => '< plugin.tx_datamintsfeuser_pi1', 'dsvgo_dsvgocheck' => 'USER', 'dsvgo_dsvgocheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dsvgo', 'pluginName' => 'Dsvgocheck', 'vendorName' => 'Haftungsausschluss'), 'weiter_weiter' => 'USER', 'weiter_weiter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Weiter', 'pluginName' => 'weiter', 'vendorName' => 'Haftungsausschluss'), 'evangelischammarkt_suche' => 'USER', 'evangelischammarkt_suche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Evangelischammarkt', 'pluginName' => 'Suche', 'vendorName' => 'WACON'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1', 'vendorName' => 'Fixpunkt'), 'fsmediagallery_mediagallery' => 'USER', 'fsmediagallery_mediagallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FsMediaGallery', 'pluginName' => 'Mediagallery', 'vendorName' => 'MiniFranske'), 'meinekirche_orga' => 'USER', 'meinekirche_orga.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Orga', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltung' => 'USER', 'meinekirche_veranstaltung.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltung', 'vendorName' => 'Meinekirche'), 'meinekirche_person' => 'USER', 'meinekirche_person.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Person', 'vendorName' => 'Meinekirche'), 'meinekirche_stichwort' => 'USER', 'meinekirche_stichwort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Stichwort', 'vendorName' => 'Meinekirche'), 'meinekirche_gruppe' => 'USER', 'meinekirche_gruppe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Gruppe', 'vendorName' => 'Meinekirche'), 'meinekirche_job' => 'USER', 'meinekirche_job.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Job', 'vendorName' => 'Meinekirche'), 'meinekirche_predigt' => 'USER', 'meinekirche_predigt.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Predigt', 'vendorName' => 'Meinekirche'), 'meinekirche_presse' => 'USER', 'meinekirche_presse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Presse', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltungsort' => 'USER', 'meinekirche_veranstaltungsort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltungsort', 'vendorName' => 'Meinekirche'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'phipfelswatchword_displaywatchword' => 'USER', 'phipfelswatchword_displaywatchword.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PhipfelsWatchword', 'pluginName' => 'Displaywatchword', 'vendorName' => 'Phipfel'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'srfreecap_imagegenerator' => 'USER', 'srfreecap_imagegenerator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'ImageGenerator', 'vendorName' => 'SJBR'), 'srfreecap_audioplayer' => 'USER', 'srfreecap_audioplayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'AudioPlayer', 'vendorName' => 'SJBR'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe', 'vendorName' => 'Waconcookiemanagement'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script', 'vendorName' => 'Waconcookiemanagement'), 'waconversions_versioncheck' => 'USER', 'waconversions_versioncheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconVersions', 'pluginName' => 'Versioncheck', 'vendorName' => 'WACON'), 'waconspendenprojekte_projekte' => 'USER', 'waconspendenprojekte_projekte.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Projekte', 'vendorName' => 'Waconspendenprojekte'), 'waconspendenprojekte_slider' => 'USER', 'waconspendenprojekte_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Slider', 'vendorName' => 'Waconspendenprojekte'), 'wsflexslider_pi1' => 'USER', 'wsflexslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsFlexslider', 'pluginName' => 'Pi1', 'vendorName' => 'WapplerSystems'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework', 'vendorName' => 'TYPO3\\CMS'))))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'mask_aktuelleinformationen' => '< lib.maskContentElement', 'mask_aktuelleinformationen.' => array('templateName' => 'Aktuelleinformationen.html'), 'mask_bilderleiste' => '< lib.maskContentElement', 'mask_bilderleiste.' => array('templateName' => 'Bilderleiste.html'), 'mask_bildkachel' => '< lib.maskContentElement', 'mask_bildkachel.' => array('templateName' => 'Bildkachel.html'), 'mask_dreispalten' => '< lib.maskContentElement', 'mask_dreispalten.' => array('templateName' => 'Dreispalten.html'), 'mask_faqelement' => '< lib.maskContentElement', 'mask_faqelement.' => array('templateName' => 'Faqelement.html'), 'mask_flipkachel' => '< lib.maskContentElement', 'mask_flipkachel.' => array('templateName' => 'Flipkachel.html'), 'mask_spendenbarometer' => '< lib.maskContentElement', 'mask_spendenbarometer.' => array('templateName' => 'Spendenbarometer.html'), 'mask_welcome-eam' => '< lib.maskContentElement', 'mask_welcome-eam.' => array('templateName' => 'Welcome-eam.html'), 'mask_welcome-stadt' => '< lib.maskContentElement', 'mask_welcome-stadt.' => array('templateName' => 'Welcome-stadt.html'), 'mask_zweispaltig' => '< lib.maskContentElement', 'mask_zweispaltig.' => array('templateName' => 'Zweispaltig.html'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView', 'vendorName' => 'FriendsOfTYPO3'), 'datamints_feuser_pi1' => '< plugin.tx_datamintsfeuser_pi1', 'dsvgo_dsvgocheck' => 'USER', 'dsvgo_dsvgocheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dsvgo', 'pluginName' => 'Dsvgocheck', 'vendorName' => 'Haftungsausschluss'), 'weiter_weiter' => 'USER', 'weiter_weiter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Weiter', 'pluginName' => 'weiter', 'vendorName' => 'Haftungsausschluss'), 'evangelischammarkt_suche' => 'USER', 'evangelischammarkt_suche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Evangelischammarkt', 'pluginName' => 'Suche', 'vendorName' => 'WACON'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1', 'vendorName' => 'Fixpunkt'), 'fsmediagallery_mediagallery' => 'USER', 'fsmediagallery_mediagallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FsMediaGallery', 'pluginName' => 'Mediagallery', 'vendorName' => 'MiniFranske'), 'meinekirche_orga' => 'USER', 'meinekirche_orga.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Orga', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltung' => 'USER', 'meinekirche_veranstaltung.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltung', 'vendorName' => 'Meinekirche'), 'meinekirche_person' => 'USER', 'meinekirche_person.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Person', 'vendorName' => 'Meinekirche'), 'meinekirche_stichwort' => 'USER', 'meinekirche_stichwort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Stichwort', 'vendorName' => 'Meinekirche'), 'meinekirche_gruppe' => 'USER', 'meinekirche_gruppe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Gruppe', 'vendorName' => 'Meinekirche'), 'meinekirche_job' => 'USER', 'meinekirche_job.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Job', 'vendorName' => 'Meinekirche'), 'meinekirche_predigt' => 'USER', 'meinekirche_predigt.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Predigt', 'vendorName' => 'Meinekirche'), 'meinekirche_presse' => 'USER', 'meinekirche_presse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Presse', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltungsort' => 'USER', 'meinekirche_veranstaltungsort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltungsort', 'vendorName' => 'Meinekirche'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'phipfelswatchword_displaywatchword' => 'USER', 'phipfelswatchword_displaywatchword.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PhipfelsWatchword', 'pluginName' => 'Displaywatchword', 'vendorName' => 'Phipfel'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'srfreecap_imagegenerator' => 'USER', 'srfreecap_imagegenerator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'ImageGenerator', 'vendorName' => 'SJBR'), 'srfreecap_audioplayer' => 'USER', 'srfreecap_audioplayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'AudioPlayer', 'vendorName' => 'SJBR'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe', 'vendorName' => 'Waconcookiemanagement'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script', 'vendorName' => 'Waconcookiemanagement'), 'waconversions_versioncheck' => 'USER', 'waconversions_versioncheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconVersions', 'pluginName' => 'Versioncheck', 'vendorName' => 'WACON'), 'waconspendenprojekte_projekte' => 'USER', 'waconspendenprojekte_projekte.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Projekte', 'vendorName' => 'Waconspendenprojekte'), 'waconspendenprojekte_slider' => 'USER', 'waconspendenprojekte_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Slider', 'vendorName' => 'Waconspendenprojekte'), 'wsflexslider_pi1' => 'USER', 'wsflexslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsFlexslider', 'pluginName' => 'Pi1', 'vendorName' => 'WapplerSystems'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework', 'vendorName' => 'TYPO3\\CMS'))), 'tt_content')
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 719
                list($name, $conf) = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'mask_aktuelleinformationen' => '< lib.maskContentElement', 'mask_aktuelleinformationen.' => array('templateName' => 'Aktuelleinformationen.html'), 'mask_bilderleiste' => '< lib.maskContentElement', 'mask_bilderleiste.' => array('templateName' => 'Bilderleiste.html'), 'mask_bildkachel' => '< lib.maskContentElement', 'mask_bildkachel.' => array('templateName' => 'Bildkachel.html'), 'mask_dreispalten' => '< lib.maskContentElement', 'mask_dreispalten.' => array('templateName' => 'Dreispalten.html'), 'mask_faqelement' => '< lib.maskContentElement', 'mask_faqelement.' => array('templateName' => 'Faqelement.html'), 'mask_flipkachel' => '< lib.maskContentElement', 'mask_flipkachel.' => array('templateName' => 'Flipkachel.html'), 'mask_spendenbarometer' => '< lib.maskContentElement', 'mask_spendenbarometer.' => array('templateName' => 'Spendenbarometer.html'), 'mask_welcome-eam' => '< lib.maskContentElement', 'mask_welcome-eam.' => array('templateName' => 'Welcome-eam.html'), 'mask_welcome-stadt' => '< lib.maskContentElement', 'mask_welcome-stadt.' => array('templateName' => 'Welcome-stadt.html'), 'mask_zweispaltig' => '< lib.maskContentElement', 'mask_zweispaltig.' => array('templateName' => 'Zweispaltig.html'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2', 'vendorName' => 'TYPO3\\CMS'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView', 'vendorName' => 'FriendsOfTYPO3'), 'datamints_feuser_pi1' => '< plugin.tx_datamintsfeuser_pi1', 'dsvgo_dsvgocheck' => 'USER', 'dsvgo_dsvgocheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Dsvgo', 'pluginName' => 'Dsvgocheck', 'vendorName' => 'Haftungsausschluss'), 'weiter_weiter' => 'USER', 'weiter_weiter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Weiter', 'pluginName' => 'weiter', 'vendorName' => 'Haftungsausschluss'), 'evangelischammarkt_suche' => 'USER', 'evangelischammarkt_suche.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Evangelischammarkt', 'pluginName' => 'Suche', 'vendorName' => 'WACON'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1', 'vendorName' => 'Fixpunkt'), 'fsmediagallery_mediagallery' => 'USER', 'fsmediagallery_mediagallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FsMediaGallery', 'pluginName' => 'Mediagallery', 'vendorName' => 'MiniFranske'), 'meinekirche_orga' => 'USER', 'meinekirche_orga.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Orga', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltung' => 'USER', 'meinekirche_veranstaltung.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltung', 'vendorName' => 'Meinekirche'), 'meinekirche_person' => 'USER', 'meinekirche_person.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Person', 'vendorName' => 'Meinekirche'), 'meinekirche_stichwort' => 'USER', 'meinekirche_stichwort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Stichwort', 'vendorName' => 'Meinekirche'), 'meinekirche_gruppe' => 'USER', 'meinekirche_gruppe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Gruppe', 'vendorName' => 'Meinekirche'), 'meinekirche_job' => 'USER', 'meinekirche_job.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Job', 'vendorName' => 'Meinekirche'), 'meinekirche_predigt' => 'USER', 'meinekirche_predigt.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Predigt', 'vendorName' => 'Meinekirche'), 'meinekirche_presse' => 'USER', 'meinekirche_presse.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Presse', 'vendorName' => 'Meinekirche'), 'meinekirche_veranstaltungsort' => 'USER', 'meinekirche_veranstaltungsort.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Meinekirche', 'pluginName' => 'Veranstaltungsort', 'vendorName' => 'Meinekirche'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger'), 'phipfelswatchword_displaywatchword' => 'USER', 'phipfelswatchword_displaywatchword.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'PhipfelsWatchword', 'pluginName' => 'Displaywatchword', 'vendorName' => 'Phipfel'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1', 'vendorName' => 'In2code'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2', 'vendorName' => 'In2code'), 'srfreecap_imagegenerator' => 'USER', 'srfreecap_imagegenerator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'ImageGenerator', 'vendorName' => 'SJBR'), 'srfreecap_audioplayer' => 'USER', 'srfreecap_audioplayer.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrFreecap', 'pluginName' => 'AudioPlayer', 'vendorName' => 'SJBR'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe', 'vendorName' => 'Waconcookiemanagement'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script', 'vendorName' => 'Waconcookiemanagement'), 'waconversions_versioncheck' => 'USER', 'waconversions_versioncheck.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconVersions', 'pluginName' => 'Versioncheck', 'vendorName' => 'WACON'), 'waconspendenprojekte_projekte' => 'USER', 'waconspendenprojekte_projekte.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Projekte', 'vendorName' => 'Waconspendenprojekte'), 'waconspendenprojekte_slider' => 'USER', 'waconspendenprojekte_slider.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Waconspendenprojekte', 'pluginName' => 'Slider', 'vendorName' => 'Waconspendenprojekte'), 'wsflexslider_pi1' => 'USER', 'wsflexslider_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WsFlexslider', 'pluginName' => 'Pi1', 'vendorName' => 'WapplerSystems'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework', 'vendorName' => 'TYPO3\\CMS'))), '')
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 94
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $conf['table'] . ':' . $row['uid'];
                        $this->cObj->lastChanged($row['tstamp']);
                        $cObj->start($row, $conf['table']);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 0', 'orderBy' => 'sorting')))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentContentObject), array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 0', 'orderBy' => 'sorting')))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 0', 'orderBy' => 'sorting')), 'variables.content_null')
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 322
            if (is_array($cObjType)) {
                continue;
            }
            if (!in_array($variableName, $reservedVariables)) {
                $variables[$variableName] = $this->cObj->cObjGetSingle($cObjType, $variablesToProcess[$variableName . '.'], 'variables.' . $variableName);
            } else {
                throw new \InvalidArgumentException(
                    'Cannot use reserved name "' . $variableName . '" as variable name in FLUIDTEMPLATE.',
                    1288095720
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->getContentObjectVariables(array('file' => 'EXT:wacon_template_kwh/Resources/Private/Templates/Default.html', 'layoutRootPath' => 'EXT:wacon_template_kwh/Resources/Private/Layouts/', 'partialRootPath' => 'EXT:wacon_template_kwh/Resources/Private/Partials/', 'variables.' => array('logo' => 'TEXT', 'logo.' => array('value' => '<img src="typo3conf/ext/wacon_template_kwh/Resources/Public/Img/Logo_Kornwestheim.svg" alt="ev. Kirche Kornwestheim" title="evangelische Kirche Kornwestheim" />'), 'twittershare' => 'TEXT', 'twittershare.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1', 'forceAbsoluteUrl.' => array('scheme' => 'https')), 'wrap' => '<a target="_blank" href="https://twitter.com/home?status=|"><img src="typo3conf/ext/wacon_template_meinekirche/Resources/Public/Img/logo_twitter.png" title="Twitter" alt="Icon: Twitter" /></a>'), 'fbshare' => 'TEXT', 'fbshare.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1', 'forceAbsoluteUrl.' => array('scheme' => 'https')), 'wrap' => '<a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=|"><img src="typo3conf/ext/wacon_template_meinekirche/Resources/Public/Img/logo_fb.png" title="Facebook" alt="Icon: Facebook" /></a>'), 'mainnav' => 'HMENU', 'mainnav.' => array('special' => 'directory', 'special.' => array('value' => '5811'), 'wrap' => '<li><a href="/">Home</a></li>|', 'TMENU', '1.' => array('NO.' => array('allWrap' => '<li>|</li>'), 'ACT' => '1', 'ACT.' => array('allWrap' => '<li class="active">|</li>'))), 'NAV_BLAU' => 'HMENU', 'NAV_BLAU.' => array('special' => 'list', 'special.' => array('value' => '5947'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="active"><i class="fa fa-home" aria-hidden="true"></i>&nbsp;|</li>||<li>|</li>'), 'wrap' => '|')), 'NAV_PINK' => 'HMENU', 'NAV_PINK.' => array('special' => 'directory', 'special.' => array('value' => '5812'), 'excludeUidList' => '5819', 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li><i class="fa fa-envelope" aria-hidden="true"></i>|</li>||<li><i class="fa fa-search" aria-hidden="true"></i>|</li>||<li>|</li>'), 'wrap' => '<ul>|</ul>')), 'footernav' => 'COA', 'footernav.' => array('HMENU', '10.' => array('special' => 'directory', 'special.' => array('value' => '5811'), 'wrap' => '<ul class="uber">|</ul>', 'TMENU', '1.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'expAll' => '1'), 'TMENU', '2.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'expAll' => '1', 'wrap' => '<ul>|</ul>'))), 'content_headertext' => 'CONTENT', 'content_headertext.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 5', 'orderBy' => 'sorting')), 'breadcrumb' => 'COA', 'breadcrumb.' => array('wrap' => '<ol class="breadcrumb" vocab="https://schema.org/" typeof="BreadcrumbList">|</ol>', 'HMENU', '10.' => array('special' => 'rootline', 'special.' => array('range' => '0 | 3'), 'TMENU', '1.' => array('NO' => '1', 'NO.' => array('before.' => array('cObject' => 'LOAD_REGISTER', 'cObject.' => array('tempN.' => array('data' => 'register:L1N', 'wrap' => '|+1'), 'L1N.' => array('data' => 'register:tempN', 'prioriCalc' => '1'))), 'wrapItemAndSub' => '<li property="itemListElement" typeof="ListItem">|</li>', 'stdWrap.' => array('wrap' => '<span property="name">|</span>', 'htmlSpecialChars' => '1'), 'linkWrap' => '|<meta property="position" content="{register:L1N}">', 'ATagParams' => 'property="item" typeof="WebPage"', 'ATagTitle.' => array('field' => 'subtitle//title'), 'allStdWrap.' => array('insertData' => '1')), 'CUR' => '1', 'CUR.' => array('before.' => array('cObject' => 'LOAD_REGISTER', 'cObject.' => array('tempN.' => array('data' => 'register:L1N', 'wrap' => '|+1'), 'L1N.' => array('data' => 'register:tempN', 'prioriCalc' => '1'))), 'wrapItemAndSub' => '<li class="active" property="itemListElement" typeof="ListItem">|</li>', 'stdWrap.' => array('wrap' => '<span property="name">|</span>', 'htmlSpecialChars' => '1'), 'linkWrap' => '|<meta property="position" content="{register:L1N}">', 'ATagParams' => 'property="item" typeof="WebPage"', 'ATagTitle.' => array('field' => 'subtitle//title'), 'allStdWrap.' => array('insertData' => '1'), 'doNotLinkIt' => '1')))), 'content_null' => 'CONTENT', 'content_null.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 0', 'orderBy' => 'sorting')), 'content_eins' => 'CONTENT', 'content_eins.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 1', 'orderBy' => 'sorting')), 'content_zwei' => 'CONTENT', 'content_zwei.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 2', 'orderBy' => 'sorting')), 'content_drei' => 'CONTENT', 'content_drei.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 3', 'orderBy' => 'sorting')), 'content_vier' => 'CONTENT', 'content_vier.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 4', 'orderBy' => 'sorting')))))
in /html/typo3/typo3conf/ext/mask/Classes/Fluid/FluidTemplateContentObject.php line 67
     */
    protected function getContentObjectVariables(array $conf = array())
    {
        // Call Parent Function to maintain core functions
        $variables = parent::getContentObjectVariables($conf);

        $objectManager = GeneralUtility::makeInstance(ObjectManager::class);
        $this->inlineHelper = $objectManager->get(InlineHelper::class);

at MASK\Mask\Fluid\FluidTemplateContentObject->getContentObjectVariables(array('file' => 'EXT:wacon_template_kwh/Resources/Private/Templates/Default.html', 'layoutRootPath' => 'EXT:wacon_template_kwh/Resources/Private/Layouts/', 'partialRootPath' => 'EXT:wacon_template_kwh/Resources/Private/Partials/', 'variables.' => array('logo' => 'TEXT', 'logo.' => array('value' => '<img src="typo3conf/ext/wacon_template_kwh/Resources/Public/Img/Logo_Kornwestheim.svg" alt="ev. Kirche Kornwestheim" title="evangelische Kirche Kornwestheim" />'), 'twittershare' => 'TEXT', 'twittershare.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1', 'forceAbsoluteUrl.' => array('scheme' => 'https')), 'wrap' => '<a target="_blank" href="https://twitter.com/home?status=|"><img src="typo3conf/ext/wacon_template_meinekirche/Resources/Public/Img/logo_twitter.png" title="Twitter" alt="Icon: Twitter" /></a>'), 'fbshare' => 'TEXT', 'fbshare.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1', 'forceAbsoluteUrl.' => array('scheme' => 'https')), 'wrap' => '<a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=|"><img src="typo3conf/ext/wacon_template_meinekirche/Resources/Public/Img/logo_fb.png" title="Facebook" alt="Icon: Facebook" /></a>'), 'mainnav' => 'HMENU', 'mainnav.' => array('special' => 'directory', 'special.' => array('value' => '5811'), 'wrap' => '<li><a href="/">Home</a></li>|', 'TMENU', '1.' => array('NO.' => array('allWrap' => '<li>|</li>'), 'ACT' => '1', 'ACT.' => array('allWrap' => '<li class="active">|</li>'))), 'NAV_BLAU' => 'HMENU', 'NAV_BLAU.' => array('special' => 'list', 'special.' => array('value' => '5947'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="active"><i class="fa fa-home" aria-hidden="true"></i>&nbsp;|</li>||<li>|</li>'), 'wrap' => '|')), 'NAV_PINK' => 'HMENU', 'NAV_PINK.' => array('special' => 'directory', 'special.' => array('value' => '5812'), 'excludeUidList' => '5819', 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li><i class="fa fa-envelope" aria-hidden="true"></i>|</li>||<li><i class="fa fa-search" aria-hidden="true"></i>|</li>||<li>|</li>'), 'wrap' => '<ul>|</ul>')), 'footernav' => 'COA', 'footernav.' => array('HMENU', '10.' => array('special' => 'directory', 'special.' => array('value' => '5811'), 'wrap' => '<ul class="uber">|</ul>', 'TMENU', '1.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'expAll' => '1'), 'TMENU', '2.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'expAll' => '1', 'wrap' => '<ul>|</ul>'))), 'content_headertext' => 'CONTENT', 'content_headertext.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 5', 'orderBy' => 'sorting')), 'breadcrumb' => 'COA', 'breadcrumb.' => array('wrap' => '<ol class="breadcrumb" vocab="https://schema.org/" typeof="BreadcrumbList">|</ol>', 'HMENU', '10.' => array('special' => 'rootline', 'special.' => array('range' => '0 | 3'), 'TMENU', '1.' => array('NO' => '1', 'NO.' => array('before.' => array('cObject' => 'LOAD_REGISTER', 'cObject.' => array('tempN.' => array('data' => 'register:L1N', 'wrap' => '|+1'), 'L1N.' => array('data' => 'register:tempN', 'prioriCalc' => '1'))), 'wrapItemAndSub' => '<li property="itemListElement" typeof="ListItem">|</li>', 'stdWrap.' => array('wrap' => '<span property="name">|</span>', 'htmlSpecialChars' => '1'), 'linkWrap' => '|<meta property="position" content="{register:L1N}">', 'ATagParams' => 'property="item" typeof="WebPage"', 'ATagTitle.' => array('field' => 'subtitle//title'), 'allStdWrap.' => array('insertData' => '1')), 'CUR' => '1', 'CUR.' => array('before.' => array('cObject' => 'LOAD_REGISTER', 'cObject.' => array('tempN.' => array('data' => 'register:L1N', 'wrap' => '|+1'), 'L1N.' => array('data' => 'register:tempN', 'prioriCalc' => '1'))), 'wrapItemAndSub' => '<li class="active" property="itemListElement" typeof="ListItem">|</li>', 'stdWrap.' => array('wrap' => '<span property="name">|</span>', 'htmlSpecialChars' => '1'), 'linkWrap' => '|<meta property="position" content="{register:L1N}">', 'ATagParams' => 'property="item" typeof="WebPage"', 'ATagTitle.' => array('field' => 'subtitle//title'), 'allStdWrap.' => array('insertData' => '1'), 'doNotLinkIt' => '1')))), 'content_null' => 'CONTENT', 'content_null.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 0', 'orderBy' => 'sorting')), 'content_eins' => 'CONTENT', 'content_eins.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 1', 'orderBy' => 'sorting')), 'content_zwei' => 'CONTENT', 'content_zwei.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 2', 'orderBy' => 'sorting')), 'content_drei' => 'CONTENT', 'content_drei.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 3', 'orderBy' => 'sorting')), 'content_vier' => 'CONTENT', 'content_vier.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 4', 'orderBy' => 'sorting')))))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 101
        $this->setLayoutRootPath($conf);
        $this->setPartialRootPath($conf);
        $this->setExtbaseVariables($conf);
        $this->assignSettings($conf);
        $variables = $this->getContentObjectVariables($conf);
        $variables = $this->contentDataProcessor->process($this->cObj, $conf, $variables);

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

at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('file' => 'EXT:wacon_template_kwh/Resources/Private/Templates/Default.html', 'layoutRootPath' => 'EXT:wacon_template_kwh/Resources/Private/Layouts/', 'partialRootPath' => 'EXT:wacon_template_kwh/Resources/Private/Partials/', 'variables.' => array('logo' => 'TEXT', 'logo.' => array('value' => '<img src="typo3conf/ext/wacon_template_kwh/Resources/Public/Img/Logo_Kornwestheim.svg" alt="ev. Kirche Kornwestheim" title="evangelische Kirche Kornwestheim" />'), 'twittershare' => 'TEXT', 'twittershare.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1', 'forceAbsoluteUrl.' => array('scheme' => 'https')), 'wrap' => '<a target="_blank" href="https://twitter.com/home?status=|"><img src="typo3conf/ext/wacon_template_meinekirche/Resources/Public/Img/logo_twitter.png" title="Twitter" alt="Icon: Twitter" /></a>'), 'fbshare' => 'TEXT', 'fbshare.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1', 'forceAbsoluteUrl.' => array('scheme' => 'https')), 'wrap' => '<a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=|"><img src="typo3conf/ext/wacon_template_meinekirche/Resources/Public/Img/logo_fb.png" title="Facebook" alt="Icon: Facebook" /></a>'), 'mainnav' => 'HMENU', 'mainnav.' => array('special' => 'directory', 'special.' => array('value' => '5811'), 'wrap' => '<li><a href="/">Home</a></li>|', 'TMENU', '1.' => array('NO.' => array('allWrap' => '<li>|</li>'), 'ACT' => '1', 'ACT.' => array('allWrap' => '<li class="active">|</li>'))), 'NAV_BLAU' => 'HMENU', 'NAV_BLAU.' => array('special' => 'list', 'special.' => array('value' => '5947'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="active"><i class="fa fa-home" aria-hidden="true"></i>&nbsp;|</li>||<li>|</li>'), 'wrap' => '|')), 'NAV_PINK' => 'HMENU', 'NAV_PINK.' => array('special' => 'directory', 'special.' => array('value' => '5812'), 'excludeUidList' => '5819', 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li><i class="fa fa-envelope" aria-hidden="true"></i>|</li>||<li><i class="fa fa-search" aria-hidden="true"></i>|</li>||<li>|</li>'), 'wrap' => '<ul>|</ul>')), 'footernav' => 'COA', 'footernav.' => array('HMENU', '10.' => array('special' => 'directory', 'special.' => array('value' => '5811'), 'wrap' => '<ul class="uber">|</ul>', 'TMENU', '1.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'expAll' => '1'), 'TMENU', '2.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'expAll' => '1', 'wrap' => '<ul>|</ul>'))), 'content_headertext' => 'CONTENT', 'content_headertext.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 5', 'orderBy' => 'sorting')), 'breadcrumb' => 'COA', 'breadcrumb.' => array('wrap' => '<ol class="breadcrumb" vocab="https://schema.org/" typeof="BreadcrumbList">|</ol>', 'HMENU', '10.' => array('special' => 'rootline', 'special.' => array('range' => '0 | 3'), 'TMENU', '1.' => array('NO' => '1', 'NO.' => array('before.' => array('cObject' => 'LOAD_REGISTER', 'cObject.' => array('tempN.' => array('data' => 'register:L1N', 'wrap' => '|+1'), 'L1N.' => array('data' => 'register:tempN', 'prioriCalc' => '1'))), 'wrapItemAndSub' => '<li property="itemListElement" typeof="ListItem">|</li>', 'stdWrap.' => array('wrap' => '<span property="name">|</span>', 'htmlSpecialChars' => '1'), 'linkWrap' => '|<meta property="position" content="{register:L1N}">', 'ATagParams' => 'property="item" typeof="WebPage"', 'ATagTitle.' => array('field' => 'subtitle//title'), 'allStdWrap.' => array('insertData' => '1')), 'CUR' => '1', 'CUR.' => array('before.' => array('cObject' => 'LOAD_REGISTER', 'cObject.' => array('tempN.' => array('data' => 'register:L1N', 'wrap' => '|+1'), 'L1N.' => array('data' => 'register:tempN', 'prioriCalc' => '1'))), 'wrapItemAndSub' => '<li class="active" property="itemListElement" typeof="ListItem">|</li>', 'stdWrap.' => array('wrap' => '<span property="name">|</span>', 'htmlSpecialChars' => '1'), 'linkWrap' => '|<meta property="position" content="{register:L1N}">', 'ATagParams' => 'property="item" typeof="WebPage"', 'ATagTitle.' => array('field' => 'subtitle//title'), 'allStdWrap.' => array('insertData' => '1'), 'doNotLinkIt' => '1')))), 'content_null' => 'CONTENT', 'content_null.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 0', 'orderBy' => 'sorting')), 'content_eins' => 'CONTENT', 'content_eins.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 1', 'orderBy' => 'sorting')), 'content_zwei' => 'CONTENT', 'content_zwei.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 2', 'orderBy' => 'sorting')), 'content_drei' => 'CONTENT', 'content_drei.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 3', 'orderBy' => 'sorting')), 'content_vier' => 'CONTENT', 'content_vier.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 4', 'orderBy' => 'sorting')))))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 821
        }

        // 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(MASK\Mask\Fluid\FluidTemplateContentObject), array('file' => 'EXT:wacon_template_kwh/Resources/Private/Templates/Default.html', 'layoutRootPath' => 'EXT:wacon_template_kwh/Resources/Private/Layouts/', 'partialRootPath' => 'EXT:wacon_template_kwh/Resources/Private/Partials/', 'variables.' => array('logo' => 'TEXT', 'logo.' => array('value' => '<img src="typo3conf/ext/wacon_template_kwh/Resources/Public/Img/Logo_Kornwestheim.svg" alt="ev. Kirche Kornwestheim" title="evangelische Kirche Kornwestheim" />'), 'twittershare' => 'TEXT', 'twittershare.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1', 'forceAbsoluteUrl.' => array('scheme' => 'https')), 'wrap' => '<a target="_blank" href="https://twitter.com/home?status=|"><img src="typo3conf/ext/wacon_template_meinekirche/Resources/Public/Img/logo_twitter.png" title="Twitter" alt="Icon: Twitter" /></a>'), 'fbshare' => 'TEXT', 'fbshare.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1', 'forceAbsoluteUrl.' => array('scheme' => 'https')), 'wrap' => '<a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=|"><img src="typo3conf/ext/wacon_template_meinekirche/Resources/Public/Img/logo_fb.png" title="Facebook" alt="Icon: Facebook" /></a>'), 'mainnav' => 'HMENU', 'mainnav.' => array('special' => 'directory', 'special.' => array('value' => '5811'), 'wrap' => '<li><a href="/">Home</a></li>|', 'TMENU', '1.' => array('NO.' => array('allWrap' => '<li>|</li>'), 'ACT' => '1', 'ACT.' => array('allWrap' => '<li class="active">|</li>'))), 'NAV_BLAU' => 'HMENU', 'NAV_BLAU.' => array('special' => 'list', 'special.' => array('value' => '5947'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="active"><i class="fa fa-home" aria-hidden="true"></i>&nbsp;|</li>||<li>|</li>'), 'wrap' => '|')), 'NAV_PINK' => 'HMENU', 'NAV_PINK.' => array('special' => 'directory', 'special.' => array('value' => '5812'), 'excludeUidList' => '5819', 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li><i class="fa fa-envelope" aria-hidden="true"></i>|</li>||<li><i class="fa fa-search" aria-hidden="true"></i>|</li>||<li>|</li>'), 'wrap' => '<ul>|</ul>')), 'footernav' => 'COA', 'footernav.' => array('HMENU', '10.' => array('special' => 'directory', 'special.' => array('value' => '5811'), 'wrap' => '<ul class="uber">|</ul>', 'TMENU', '1.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'expAll' => '1'), 'TMENU', '2.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'expAll' => '1', 'wrap' => '<ul>|</ul>'))), 'content_headertext' => 'CONTENT', 'content_headertext.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 5', 'orderBy' => 'sorting')), 'breadcrumb' => 'COA', 'breadcrumb.' => array('wrap' => '<ol class="breadcrumb" vocab="https://schema.org/" typeof="BreadcrumbList">|</ol>', 'HMENU', '10.' => array('special' => 'rootline', 'special.' => array('range' => '0 | 3'), 'TMENU', '1.' => array('NO' => '1', 'NO.' => array('before.' => array('cObject' => 'LOAD_REGISTER', 'cObject.' => array('tempN.' => array('data' => 'register:L1N', 'wrap' => '|+1'), 'L1N.' => array('data' => 'register:tempN', 'prioriCalc' => '1'))), 'wrapItemAndSub' => '<li property="itemListElement" typeof="ListItem">|</li>', 'stdWrap.' => array('wrap' => '<span property="name">|</span>', 'htmlSpecialChars' => '1'), 'linkWrap' => '|<meta property="position" content="{register:L1N}">', 'ATagParams' => 'property="item" typeof="WebPage"', 'ATagTitle.' => array('field' => 'subtitle//title'), 'allStdWrap.' => array('insertData' => '1')), 'CUR' => '1', 'CUR.' => array('before.' => array('cObject' => 'LOAD_REGISTER', 'cObject.' => array('tempN.' => array('data' => 'register:L1N', 'wrap' => '|+1'), 'L1N.' => array('data' => 'register:tempN', 'prioriCalc' => '1'))), 'wrapItemAndSub' => '<li class="active" property="itemListElement" typeof="ListItem">|</li>', 'stdWrap.' => array('wrap' => '<span property="name">|</span>', 'htmlSpecialChars' => '1'), 'linkWrap' => '|<meta property="position" content="{register:L1N}">', 'ATagParams' => 'property="item" typeof="WebPage"', 'ATagTitle.' => array('field' => 'subtitle//title'), 'allStdWrap.' => array('insertData' => '1'), 'doNotLinkIt' => '1')))), 'content_null' => 'CONTENT', 'content_null.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 0', 'orderBy' => 'sorting')), 'content_eins' => 'CONTENT', 'content_eins.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 1', 'orderBy' => 'sorting')), 'content_zwei' => 'CONTENT', 'content_zwei.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 2', 'orderBy' => 'sorting')), 'content_drei' => 'CONTENT', 'content_drei.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 3', 'orderBy' => 'sorting')), 'content_vier' => 'CONTENT', 'content_vier.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 4', 'orderBy' => 'sorting')))))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 737
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'] ?? [] as $className) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('file' => 'EXT:wacon_template_kwh/Resources/Private/Templates/Default.html', 'layoutRootPath' => 'EXT:wacon_template_kwh/Resources/Private/Layouts/', 'partialRootPath' => 'EXT:wacon_template_kwh/Resources/Private/Partials/', 'variables.' => array('logo' => 'TEXT', 'logo.' => array('value' => '<img src="typo3conf/ext/wacon_template_kwh/Resources/Public/Img/Logo_Kornwestheim.svg" alt="ev. Kirche Kornwestheim" title="evangelische Kirche Kornwestheim" />'), 'twittershare' => 'TEXT', 'twittershare.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1', 'forceAbsoluteUrl.' => array('scheme' => 'https')), 'wrap' => '<a target="_blank" href="https://twitter.com/home?status=|"><img src="typo3conf/ext/wacon_template_meinekirche/Resources/Public/Img/logo_twitter.png" title="Twitter" alt="Icon: Twitter" /></a>'), 'fbshare' => 'TEXT', 'fbshare.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1', 'forceAbsoluteUrl.' => array('scheme' => 'https')), 'wrap' => '<a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=|"><img src="typo3conf/ext/wacon_template_meinekirche/Resources/Public/Img/logo_fb.png" title="Facebook" alt="Icon: Facebook" /></a>'), 'mainnav' => 'HMENU', 'mainnav.' => array('special' => 'directory', 'special.' => array('value' => '5811'), 'wrap' => '<li><a href="/">Home</a></li>|', 'TMENU', '1.' => array('NO.' => array('allWrap' => '<li>|</li>'), 'ACT' => '1', 'ACT.' => array('allWrap' => '<li class="active">|</li>'))), 'NAV_BLAU' => 'HMENU', 'NAV_BLAU.' => array('special' => 'list', 'special.' => array('value' => '5947'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="active"><i class="fa fa-home" aria-hidden="true"></i>&nbsp;|</li>||<li>|</li>'), 'wrap' => '|')), 'NAV_PINK' => 'HMENU', 'NAV_PINK.' => array('special' => 'directory', 'special.' => array('value' => '5812'), 'excludeUidList' => '5819', 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li><i class="fa fa-envelope" aria-hidden="true"></i>|</li>||<li><i class="fa fa-search" aria-hidden="true"></i>|</li>||<li>|</li>'), 'wrap' => '<ul>|</ul>')), 'footernav' => 'COA', 'footernav.' => array('HMENU', '10.' => array('special' => 'directory', 'special.' => array('value' => '5811'), 'wrap' => '<ul class="uber">|</ul>', 'TMENU', '1.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'expAll' => '1'), 'TMENU', '2.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'expAll' => '1', 'wrap' => '<ul>|</ul>'))), 'content_headertext' => 'CONTENT', 'content_headertext.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 5', 'orderBy' => 'sorting')), 'breadcrumb' => 'COA', 'breadcrumb.' => array('wrap' => '<ol class="breadcrumb" vocab="https://schema.org/" typeof="BreadcrumbList">|</ol>', 'HMENU', '10.' => array('special' => 'rootline', 'special.' => array('range' => '0 | 3'), 'TMENU', '1.' => array('NO' => '1', 'NO.' => array('before.' => array('cObject' => 'LOAD_REGISTER', 'cObject.' => array('tempN.' => array('data' => 'register:L1N', 'wrap' => '|+1'), 'L1N.' => array('data' => 'register:tempN', 'prioriCalc' => '1'))), 'wrapItemAndSub' => '<li property="itemListElement" typeof="ListItem">|</li>', 'stdWrap.' => array('wrap' => '<span property="name">|</span>', 'htmlSpecialChars' => '1'), 'linkWrap' => '|<meta property="position" content="{register:L1N}">', 'ATagParams' => 'property="item" typeof="WebPage"', 'ATagTitle.' => array('field' => 'subtitle//title'), 'allStdWrap.' => array('insertData' => '1')), 'CUR' => '1', 'CUR.' => array('before.' => array('cObject' => 'LOAD_REGISTER', 'cObject.' => array('tempN.' => array('data' => 'register:L1N', 'wrap' => '|+1'), 'L1N.' => array('data' => 'register:tempN', 'prioriCalc' => '1'))), 'wrapItemAndSub' => '<li class="active" property="itemListElement" typeof="ListItem">|</li>', 'stdWrap.' => array('wrap' => '<span property="name">|</span>', 'htmlSpecialChars' => '1'), 'linkWrap' => '|<meta property="position" content="{register:L1N}">', 'ATagParams' => 'property="item" typeof="WebPage"', 'ATagTitle.' => array('field' => 'subtitle//title'), 'allStdWrap.' => array('insertData' => '1'), 'doNotLinkIt' => '1')))), 'content_null' => 'CONTENT', 'content_null.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 0', 'orderBy' => 'sorting')), 'content_eins' => 'CONTENT', 'content_eins.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 1', 'orderBy' => 'sorting')), 'content_zwei' => 'CONTENT', 'content_zwei.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 2', 'orderBy' => 'sorting')), 'content_drei' => 'CONTENT', 'content_drei.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 3', 'orderBy' => 'sorting')), 'content_vier' => 'CONTENT', 'content_vier.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 4', 'orderBy' => 'sorting')))), '10')
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 683
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('includeCSS.' => array('tx-fs-media-gallery' => 'EXT:fs_media_gallery/Resources/Public/Css/MediaAlbum.css', 'flexslider' => 'EXT:ws_flexslider/Resources/Public/Css/flexslider.css', 'flexslider_mods' => 'EXT:ws_flexslider/Resources/Public/Css/mods.css', 'waconcookiemanagement' => 'EXT:wacon_template_kwh/Resources/Public/Css/waconcookiemanagement.css', 'phipfels_watchword_css' => 'EXT:phipfels_watchword/Resources/Public/Css/Frontend/phipfels_watchword.css', 'phipfels_watchword_css.' => array('if.' => array('isTrue' => '0')), 'fontawesome' => 'EXT:wacon_template_kwh/Resources/Public/Css/font-awesome.min.css', 'normalize' => 'EXT:wacon_template_kwh/Resources/Public/Css/normalize.min.css', 'main' => 'EXT:wacon_template_kwh/Resources/Public/Css/main.min.css', 'startseite' => 'EXT:wacon_template_kwh/Resources/Public/Css/startseite.css', 'jqueryui' => 'EXT:wacon_template_kwh/Resources/Public/Css/jquery-ui.css', 'unterseite' => 'EXT:wacon_template_kwh/Resources/Public/Css/unterseite.css', 'zusatz' => 'EXT:wacon_template_kwh/Resources/Public/Css/kornwestheim.css'), 'includeJSFooter.' => array('flexslider' => 'EXT:ws_flexslider/Resources/Public/JavaScript/jquery.flexslider-min.js', 'waconcookiemanagement' => 'EXT:wacon_cookie_management/Resources/Public/JavaScript/waconcookiemanagement.js', 'fontawesome' => 'EXT:wacon_template_kwh/Resources/Public/Js/main-kornwestheim.js', 'totop' => 'EXT:wacon_template_kwh/Resources/Public/Js/totop.js'), 'includeJS.' => array('ajquery' => 'EXT:wacon_cookie_management/Resources/Public/JavaScript/jquery.min.js', 'file1' => 'EXT:wacon_template_kwh/Resources/Public/Js/jquery-3.2.1.js', 'file2' => 'EXT:wacon_template_kwh/Resources/Public/Js/jquery-ui.js'), 'headerData.' => array('TEXT', '30.' => array('value' => '<meta name="revisit-after" content="7 days" /> <link rel="apple-touch-icon" sizes="180x180" href="typo3conf/ext/wacon_template_kwh/Resources/Public/Favicon/apple-touch-icon.png"> <link rel="manifest" href="typo3conf/ext/wacon_template_kwh/Resources/Public/Favicon/site.webmanifest"> <link rel="mask-icon" href="typo3conf/ext/wacon_template_kwh/Resources/Public/Favicon/safari-pinned-tab.svg" color="#ef7c00"> <link rel="shortcut icon" href="typo3conf/ext/wacon_template_kwh/Resources/Public/Favicon/favicon.ico"> <meta name="msapplication-TileColor" content="#ef7c00"> <meta name="msapplication-config" content="typo3conf/ext/wacon_template_kwh/Resources/Public/Favicon/browserconfig.xml"> <meta name="theme-color" content="#ffffff"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> ')), 'config.' => array('headerComment' => 'TYPO3 project by wacon.de '), 'typeNum' => '0', 'FLUIDTEMPLATE', '10.' => array('file' => 'EXT:wacon_template_kwh/Resources/Private/Templates/Default.html', 'layoutRootPath' => 'EXT:wacon_template_kwh/Resources/Private/Layouts/', 'partialRootPath' => 'EXT:wacon_template_kwh/Resources/Private/Partials/', 'variables.' => array('logo' => 'TEXT', 'logo.' => array('value' => '<img src="typo3conf/ext/wacon_template_kwh/Resources/Public/Img/Logo_Kornwestheim.svg" alt="ev. Kirche Kornwestheim" title="evangelische Kirche Kornwestheim" />'), 'twittershare' => 'TEXT', 'twittershare.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1', 'forceAbsoluteUrl.' => array('scheme' => 'https')), 'wrap' => '<a target="_blank" href="https://twitter.com/home?status=|"><img src="typo3conf/ext/wacon_template_meinekirche/Resources/Public/Img/logo_twitter.png" title="Twitter" alt="Icon: Twitter" /></a>'), 'fbshare' => 'TEXT', 'fbshare.' => array('typolink.' => array('parameter.' => array('data' => 'TSFE:id'), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1', 'forceAbsoluteUrl.' => array('scheme' => 'https')), 'wrap' => '<a target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=|"><img src="typo3conf/ext/wacon_template_meinekirche/Resources/Public/Img/logo_fb.png" title="Facebook" alt="Icon: Facebook" /></a>'), 'mainnav' => 'HMENU', 'mainnav.' => array('special' => 'directory', 'special.' => array('value' => '5811'), 'wrap' => '<li><a href="/">Home</a></li>|', 'TMENU', '1.' => array('NO.' => array('allWrap' => '<li>|</li>'), 'ACT' => '1', 'ACT.' => array('allWrap' => '<li class="active">|</li>'))), 'NAV_BLAU' => 'HMENU', 'NAV_BLAU.' => array('special' => 'list', 'special.' => array('value' => '5947'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="active"><i class="fa fa-home" aria-hidden="true"></i>&nbsp;|</li>||<li>|</li>'), 'wrap' => '|')), 'NAV_PINK' => 'HMENU', 'NAV_PINK.' => array('special' => 'directory', 'special.' => array('value' => '5812'), 'excludeUidList' => '5819', 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li><i class="fa fa-envelope" aria-hidden="true"></i>|</li>||<li><i class="fa fa-search" aria-hidden="true"></i>|</li>||<li>|</li>'), 'wrap' => '<ul>|</ul>')), 'footernav' => 'COA', 'footernav.' => array('HMENU', '10.' => array('special' => 'directory', 'special.' => array('value' => '5811'), 'wrap' => '<ul class="uber">|</ul>', 'TMENU', '1.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'expAll' => '1'), 'TMENU', '2.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'expAll' => '1', 'wrap' => '<ul>|</ul>'))), 'content_headertext' => 'CONTENT', 'content_headertext.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 5', 'orderBy' => 'sorting')), 'breadcrumb' => 'COA', 'breadcrumb.' => array('wrap' => '<ol class="breadcrumb" vocab="https://schema.org/" typeof="BreadcrumbList">|</ol>', 'HMENU', '10.' => array('special' => 'rootline', 'special.' => array('range' => '0 | 3'), 'TMENU', '1.' => array('NO' => '1', 'NO.' => array('before.' => array('cObject' => 'LOAD_REGISTER', 'cObject.' => array('tempN.' => array('data' => 'register:L1N', 'wrap' => '|+1'), 'L1N.' => array('data' => 'register:tempN', 'prioriCalc' => '1'))), 'wrapItemAndSub' => '<li property="itemListElement" typeof="ListItem">|</li>', 'stdWrap.' => array('wrap' => '<span property="name">|</span>', 'htmlSpecialChars' => '1'), 'linkWrap' => '|<meta property="position" content="{register:L1N}">', 'ATagParams' => 'property="item" typeof="WebPage"', 'ATagTitle.' => array('field' => 'subtitle//title'), 'allStdWrap.' => array('insertData' => '1')), 'CUR' => '1', 'CUR.' => array('before.' => array('cObject' => 'LOAD_REGISTER', 'cObject.' => array('tempN.' => array('data' => 'register:L1N', 'wrap' => '|+1'), 'L1N.' => array('data' => 'register:tempN', 'prioriCalc' => '1'))), 'wrapItemAndSub' => '<li class="active" property="itemListElement" typeof="ListItem">|</li>', 'stdWrap.' => array('wrap' => '<span property="name">|</span>', 'htmlSpecialChars' => '1'), 'linkWrap' => '|<meta property="position" content="{register:L1N}">', 'ATagParams' => 'property="item" typeof="WebPage"', 'ATagTitle.' => array('field' => 'subtitle//title'), 'allStdWrap.' => array('insertData' => '1'), 'doNotLinkIt' => '1')))), 'content_null' => 'CONTENT', 'content_null.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 0', 'orderBy' => 'sorting')), 'content_eins' => 'CONTENT', 'content_eins.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 1', 'orderBy' => 'sorting')), 'content_zwei' => 'CONTENT', 'content_zwei.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 2', 'orderBy' => 'sorting')), 'content_drei' => 'CONTENT', 'content_drei.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 3', 'orderBy' => 'sorting')), 'content_vier' => 'CONTENT', 'content_vier.' => array('table' => 'tt_content', 'select.' => array('where' => 'colPos = 4', 'orderBy' => 'sorting'))))))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 246
     * @return string
     */
    protected function generatePageContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 268
     */
    protected function generatePageContentWithHeader(TypoScriptFrontendController $controller, ?SiteLanguage $siteLanguage): string
    {
        // Generate the page content, this has to be first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageContent($controller);
        $pageRenderer = $this->getPageRenderer();
        if ($controller->config['config']['moveJsFromHeaderToFooter'] ?? false) {
            $pageRenderer->enableMoveJsFromHeaderToFooter();
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContentWithHeader(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Site\Entity\SiteLanguage))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 168
            // If 'disableAllHeaderCode' is set, all the header-code is discarded
            if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
                $controller->content = $this->generatePageContent($controller);
            } else {
                $controller->content = $this->generatePageContentWithHeader($controller, $request->getAttribute('language', null));
            }

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

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3conf/ext/rdct/Classes/Middleware/SendRedirect.php line 42
    {
        // No GET parameter set, do nothing
        $redirectHash = $request->getQueryParams()['RDCT'] ?? '';
        if (empty($redirectHash)) {
            return $handler->handle($request);
        }

        $row = $this->fetchRedirectRecord($redirectHash);
        if (is_array($row)) {
at FoT3\Rdct\Middleware\SendRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3conf/ext/jumpurl/Classes/Middleware/JumpUrlHandler.php line 72
            // Regular jump URL
            $this->validateIfJumpUrlRedirectIsAllowed($jumpUrl, $juHash);
            return $this->redirectToJumpUrl($jumpUrl);
        }
        return $handler->handle($request);
    }
    /**
     * Redirects the user to the given jump URL if all submitted values
     * are valid (checked before)
at FoT3\Jumpurl\Middleware\JumpUrlHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

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

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

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

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

    /**
     * Small helper function to convert charsets for arrays to UTF-8
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

    /**
     * Calculates a hash string based on additional parameters in the url.
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

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

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/Middleware/PreviewSimulator.php line 62
            $showHiddenRecords = ($this->context->hasAspect('visibility') ? $this->context->getAspect('visibility')->includeHidden() : false);
            $GLOBALS['TSFE']->fePreview = ($simulatingDate || $simulatingGroup || $showHiddenRecords);
        }

        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/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

    /**
     * Creates a PSR-7 compatible Response object
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

                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/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 86
                $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/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3conf/ext/sr_freecap/Classes/Middleware/EidHandler.php line 50
    {
        $eID = $request->getParsedBody()['eIDSR'] ?? $request->getQueryParams()['eIDSR'] ?? null;

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

        // Remove any output produced until now
        ob_clean();
at SJBR\SrFreecap\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3conf/ext/secure_downloads/Classes/Middleware/FileDeliveryMiddleware.php line 58
            [$jwt, $basePath] = explode('/', $cleanPath);
            return (new FileDelivery($jwt))->deliver($request);
        }

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

    public function isResponsible(ServerRequestInterface $request)
    {
at Bitmotion\SecureDownloads\Middleware\FileDeliveryMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

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

    /**
     * Creates the backend user object and returns it.
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

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

    /**
     * It's possible to transfer a frontend user session via a GET/POST parameter 'FE_SESSION_KEY'.
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:121$87c))
in /html/typo3/typo3_src-9.5.40/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 138

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

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

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

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

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