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) #1548927197 Exception

Given event could not be found in DayFactory

in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/typo3conf/ext/events2/Classes/Domain/Factory/DayFactory.php line 133
        $event = $this->eventRepository->findByIdentifier($searchValues['event']);
        if (!$event instanceof Event) {
            // Normally this can't be thrown, as this class will only be called at a detail page.
            // So action controller will throw Exception first, if event is not given.
            throw new \Exception('Given event could not be found in DayFactory', 1548927197);
        }

        if (!$event->getEventBegin() instanceof \DateTimeImmutable) {
            // Normally this can't be thrown, as event begin is a required field.
at JWeiland\Events2\Domain\Factory\DayFactory->buildDay(array('event' => 104, 'timestamp' => 1687125600), object(TYPO3\CMS\Extbase\Persistence\Generic\Query))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/typo3conf/ext/events2/Classes/Domain/Factory/DayFactory.php line 67
            'timestamp' => $timestamp
        ];

        foreach ($this->processOrderedMethods as $methodName) {
            $day = $this->{$methodName}($data, $query);
            if ($day instanceof Day) {
                break;
            }
        }
at JWeiland\Events2\Domain\Factory\DayFactory->findDayByEventAndTimestamp(104, 1687125600, object(TYPO3\CMS\Extbase\Persistence\Generic\Query))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/typo3conf/ext/events2/Classes/Domain/Repository/DayRepository.php line 443
     * @throws \Exception
     */
    public function findDayByEventAndTimestamp(int $eventUid, int $timestamp = 0): Day
    {
        return $this->dayFactory->findDayByEventAndTimestamp($eventUid, $timestamp, $this->createQuery());
    }

    /*
     * Nearly the same as "findDayByEventAndTimestamp", but this method was used by PageTitleProvider
at JWeiland\Events2\Domain\Repository\DayRepository->findDayByEventAndTimestamp(104, 1687125600)
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/typo3conf/ext/events2/Classes/Controller/DayController.php line 85
     * I call showAction with int instead of DomainModel to prevent that recursive validators will be called.
     */
    public function showAction(int $event, int $timestamp = 0): void
    {
        $day = $this->dayRepository->findDayByEventAndTimestamp($event, $timestamp);

        $this->postProcessControllerAction($day->getEvent(), $day);

        $this->postProcessAndAssignFluidVariables([
at JWeiland\Events2\Controller\DayController->showAction(104, 1687125600)
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 571
        }
        $validationResult = $this->arguments->validate();
        if (!$validationResult->hasErrors()) {
            $this->eventDispatcher->dispatch(new BeforeActionCallEvent(static::class, $this->actionMethodName, $preparedArguments));
            $actionResult = $this->{$this->actionMethodName}(...$preparedArguments);
        } else {
            $actionResult = $this->{$this->errorMethodName}();
        }

at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->callActionMethod(object(TYPO3\CMS\Extbase\Mvc\Request))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 488
        $this->view = $this->resolveView();
        if ($this->view !== null && method_exists($this, 'initializeView')) {
            $this->initializeView($this->view);
        }
        $response = $this->callActionMethod($request);
        $this->renderAssetsForRequest($request);

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

    /**
     * This request handler can handle any web request.
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest(object(TYPO3\CMS\Extbase\Mvc\Request))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 165
        }

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

    protected function handleFrontendRequest(ServerRequestInterface $request): string
    {
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5431
                        // Extensions should either drop the property altogether if they don't need current instance
                        // of ContentObjectRenderer, or set the property to protected and use the setter above.
                        $classObj->cObj = $this;
                    }
                    $content = $callable($content, $conf, $this->getRequest());
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', LogLevel::ERROR);
                }
            } else {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), '')
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 44
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->processNonCacheableContentPartsAndSubstituteContentMarkers()!
            $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
        }
        $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
        if ($this->cObj->doConvertToUserIntObject) {
            $this->cObj->doConvertToUserIntObject = false;
            $content = $this->cObj->cObjGetSingle('USER_INT', $conf);
        } else {
at TYPO3\CMS\Frontend\ContentObject\UserContentObject->render(array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), 'tt_content.list.20.events2_show')
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 197
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'events2_list' => 'USER', 'events2_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'List'), 'events2_show' => 'USER', 'events2_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), 'events2_management' => 'USER', 'events2_management.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Management'), 'events2_calendar' => 'USER', 'events2_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Calendar'), 'events2_searchform' => 'USER', 'events2_searchform.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchForm'), 'events2_searchresults' => 'USER', 'events2_searchresults.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchResults'), 'poll_poll' => 'USER', 'poll_poll.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'Poll'), 'poll_pollteaser' => 'USER', 'poll_pollteaser.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollTeaser'), 'poll_pollresult' => 'USER', 'poll_pollresult.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollResult'), 'poll_polllist' => 'USER', 'poll_polllist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollList'), 'h5p_ajax' => 'USER', 'h5p_ajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'ajax'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'viewstatistics_visitors' => 'USER', 'viewstatistics_visitors.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ViewStatistics', 'pluginName' => 'Visitors')), 'tt_content.list.20.events2_show', 'events2_show')
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 174
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('uid' => 834, 'rowDescription' => '', 'pid' => 231, 'tstamp' => 1674244531, 'crdate' => 1673610736, 'cruser_id' => 2, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'editlock' => 0, 'sys_language_uid' => 0, 'l18n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l18n_diffsource' => '{"CType":"","colPos":"","tx_container_parent":"","header":"","header_layout":"","header_position":"","date":"","header_link":"","subheader":"","list_type":"","pi_flexform":"","pages":"","recursive":"","layout":"","frame_class":"","space_before_class":"","space_after_class":"","tx_backgroundimage4ce_active":"","sectionIndex":"","linkToTop":"","sys_language_uid":"","hidden":"","starttime":"","endtime":"","fe_group":"","editlock":"","categories":"","rowDescription":"","tx_content_animations_animation":"","tx_content_animations_duration":"","tx_content_animations_delay":""}', 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 'CType' => 'list', 'header' => '', 'header_position' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 100, 'frame_class' => 'default', 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => null, 'pages' => '224', 'colPos' => 0, 'subheader' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '0', 'list_type' => 'events2_show', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 1, 'filelink_sorting' => '', 'filelink_sorting_direction' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEFAULT"> <language index="lDEF"> <field index="settings.pidOfDetailPage"> <value index="vDEF">231</value> </field> <field index="settings.pidOfListPage"> <value index="vDEF">229</value> </field> <field index="settings.pidOfLocationPage"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="detail"> <language index="lDEF"> <field index="settings.display"> <value index="vDEF">displayBoth</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'selected_categories' => null, 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 0, 'categories' => 0, 'tx_news_related_news' => 0, 'tx_container_parent' => 0, 'tx_jwmusterprojekt11_imagesizes' => '100', 'tx_slick_pages' => null, 'tx_spreadsheets_assets' => 0, 'tx_spreadsheets_ignore_styles' => 0, 'tx_h5p_content' => 0, 'tx_h5p_display_options' => 9, 'tx_backgroundimage4ce_active' => 0, 'tx_backgroundimage4ce_image' => 0, 'tx_backgroundimage4ce_repeat' => '', 'tx_backgroundimage4ce_color' => '', 'tx_backgroundimage4ce_position' => '', 'tx_backgroundimage4ce_size' => '', 'tx_backgroundimage4ce_attachment' => '', 'tx_backgroundimage4ce_autoheight' => 0, 'tx_backgroundimage4ce_height' => 0, 'tx_backgroundimage4ce_opacity' => 0, 'timeline_entries' => 0, 'timeline_parent' => 0, 'tx_content_animations_animation' => null, 'tx_content_animations_duration' => 800, 'tx_content_animations_delay' => 0, 'tx_content_animations_offset' => 0, 'tx_content_animations_once' => 1, 'tx_content_animations_mirror' => 0, 'tx_content_animations_easing' => null, 'tx_content_animations_anchor_placement' => null, 'tx_t3sbootstrap_header_display' => '', 'tx_t3sbootstrap_header_class' => '', 'tx_t3sbootstrap_header_fontawesome' => '', 'tx_t3sbootstrap_header_position' => '', 'tx_t3sbootstrap_header_sectionMenu' => '', 'tx_t3sbootstrap_sectionOrder' => '', 'tx_t3sbootstrap_padding_sides' => '', 'tx_t3sbootstrap_padding_size' => '', 'tx_t3sbootstrap_margin_sides' => '', 'tx_t3sbootstrap_margin_size' => '', 'tx_t3sbootstrap_flexbox_columns' => '', 'tx_t3sbootstrap_flexbox_prefix' => '', 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_extra_class' => '', 'tx_t3sbootstrap_bgcolor' => '', 'tx_t3sbootstrap_bgopacity' => '', 'tx_t3sbootstrap_contextcolor' => '', 'tx_t3sbootstrap_textcolor' => '', 'tx_t3sbootstrap_flexform' => null, 'tx_t3sbootstrap_inTextImgRowWidth' => '', 'tx_t3sbootstrap_inTextImgColumns' => 0, 'tx_t3sbootstrap_galleryGutters' => 0, 'tx_t3sbootstrap_bordercolor' => '', 'tx_t3sbootstrap_image_ratio' => '', 'tx_t3sbootstrap_header_celink' => 0, 'tx_t3sbootstrap_animateCss' => '', 'tx_t3sbootstrap_animateCssRepeat' => 0, 'tx_t3sbootstrap_animateCssDuration' => '', 'tx_t3sbootstrap_animateCssDelay' => '', 'tx_t3sbootstrap_extra_style' => '', 'tx_t3sbootstrap_image_orig' => '', 'tx_t3sbootstrap_cardheader' => '', 'tx_t3sbootstrap_bodytext' => null, 'tx_t3sbootstrap_cardfooter' => '', 'tx_t3sbootstrap_list_item' => '', 'tx_mask_video' => 0, 'tx_mask_html' => 0, 'tx_mask_content_parent_uid' => 0, 'tx_mask_content_role' => '', 'tx_mask_content_tablenames' => '', 'tx_mask_uhr' => null), 'typoscriptObjectPath' => 'tt_content.list.20.events2_show', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/typo3temp/var/cache/code/fluid_template/Standard_action_list_66e6cd36492e45f65cf36b84ccc0f8edd34701f3.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_66e6cd36492e45f65cf36b84ccc0f8edd34701f3->{closure}()
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 79
            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 /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/typo3temp/var/cache/code/fluid_template/Standard_action_list_66e6cd36492e45f65cf36b84ccc0f8edd34701f3.php line 95
     $renderingContext
    );
$arguments1['__thenClosure'] = $renderChildrenClosure2;

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

$output0 .= '

';
at Standard_action_list_66e6cd36492e45f65cf36b84ccc0f8edd34701f3->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 258
                    new InvalidSectionException('Section "' . $sectionName . '" does not exist.')
                );
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('Main', array(), true)
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 171
            $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 /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/typo3temp/var/cache/code/fluid_template/layout_Default_html_26811af20488d26aa6e7cbc025af2cde7e0b899f.php line 1219
     ),
     $renderingContext
    );

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

$output6 .= '
            ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_26811af20488d26aa6e7cbc025af2cde7e0b899f->{closure}()
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 79
            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 /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/typo3temp/var/cache/code/fluid_template/layout_Default_html_26811af20488d26aa6e7cbc025af2cde7e0b899f.php line 1741
        ';
return $output76;
};

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

$output3 .= '
';
return $output3;
at layout_Default_html_26811af20488d26aa6e7cbc025af2cde7e0b899f->{closure}()
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 61
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', (string)$childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic(array(), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/typo3temp/var/cache/code/fluid_template/layout_Default_html_26811af20488d26aa6e7cbc025af2cde7e0b899f.php line 1749
return $output3;
};
$arguments1 = array();

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

$output0 .= '

';
at layout_Default_html_26811af20488d26aa6e7cbc025af2cde7e0b899f->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 200
            } 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 /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 340
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 106

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/Templates/', '', '', 'EXT:ce_timeline/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/Partials/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/ImageWoFigure/Partials/', '', 'EXT:ce_timeline/Resources/Private/Partials/', 'EXT:video_shariff/Resources/Private/Extensions/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/', 'EXT:content_animations/Resources/Private/Layouts/FluidStyledContent/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/Layouts/', '', '', 'EXT:ce_timeline/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0', 'ce_timeline.' => array('gallery.' => array('enable_lightbox' => '1', 'image_width' => '300c', 'image_height' => '200c', 'lightbox_width' => '600c', 'lightbox_height' => '400c', 'textimage_layout' => '2', 'images_per_row' => '1', 'gallery_width' => '33'))), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25')), 'aos-easing' => 'TEXT', 'aos-easing.' => array('value' => 'ease'), 'aos-once' => 'TEXT', 'aos-once.' => array('value' => '1'), 'aos-mirror' => 'TEXT', 'aos-mirror.' => array('value' => '0')), 'dataProcessing.' => array('Baschte\\ContentAnimations\\DataProcessing\\AnimationSettingsProcessor'), 'templateRootPaths' => '', 'partialRootPaths' => '', 'layoutRootPaths' => '', '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'), 'events2_list' => 'USER', 'events2_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'List'), 'events2_show' => 'USER', 'events2_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), 'events2_management' => 'USER', 'events2_management.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Management'), 'events2_calendar' => 'USER', 'events2_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Calendar'), 'events2_searchform' => 'USER', 'events2_searchform.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchForm'), 'events2_searchresults' => 'USER', 'events2_searchresults.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchResults'), 'poll_poll' => 'USER', 'poll_poll.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'Poll'), 'poll_pollteaser' => 'USER', 'poll_pollteaser.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollTeaser'), 'poll_pollresult' => 'USER', 'poll_pollresult.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollResult'), 'poll_polllist' => 'USER', 'poll_polllist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollList'), 'h5p_ajax' => 'USER', 'h5p_ajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'ajax'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'viewstatistics_visitors' => 'USER', 'viewstatistics_visitors.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ViewStatistics', 'pluginName' => 'Visitors'))))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/Templates/', '', '', 'EXT:ce_timeline/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/Partials/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/ImageWoFigure/Partials/', '', 'EXT:ce_timeline/Resources/Private/Partials/', 'EXT:video_shariff/Resources/Private/Extensions/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/', 'EXT:content_animations/Resources/Private/Layouts/FluidStyledContent/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/Layouts/', '', '', 'EXT:ce_timeline/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0', 'ce_timeline.' => array('gallery.' => array('enable_lightbox' => '1', 'image_width' => '300c', 'image_height' => '200c', 'lightbox_width' => '600c', 'lightbox_height' => '400c', 'textimage_layout' => '2', 'images_per_row' => '1', 'gallery_width' => '33'))), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25')), 'aos-easing' => 'TEXT', 'aos-easing.' => array('value' => 'ease'), 'aos-once' => 'TEXT', 'aos-once.' => array('value' => '1'), 'aos-mirror' => 'TEXT', 'aos-mirror.' => array('value' => '0')), 'dataProcessing.' => array('Baschte\\ContentAnimations\\DataProcessing\\AnimationSettingsProcessor'), 'templateRootPaths' => '', 'partialRootPaths' => '', 'layoutRootPaths' => '', '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'), 'events2_list' => 'USER', 'events2_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'List'), 'events2_show' => 'USER', 'events2_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), 'events2_management' => 'USER', 'events2_management.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Management'), 'events2_calendar' => 'USER', 'events2_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Calendar'), 'events2_searchform' => 'USER', 'events2_searchform.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchForm'), 'events2_searchresults' => 'USER', 'events2_searchresults.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchResults'), 'poll_poll' => 'USER', 'poll_poll.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'Poll'), 'poll_pollteaser' => 'USER', 'poll_pollteaser.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollTeaser'), 'poll_pollresult' => 'USER', 'poll_pollresult.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollResult'), 'poll_polllist' => 'USER', 'poll_polllist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollList'), 'h5p_ajax' => 'USER', 'h5p_ajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'ajax'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'viewstatistics_visitors' => 'USER', 'viewstatistics_visitors.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ViewStatistics', 'pluginName' => 'Visitors'))))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/Templates/', '', '', 'EXT:ce_timeline/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/Partials/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/ImageWoFigure/Partials/', '', 'EXT:ce_timeline/Resources/Private/Partials/', 'EXT:video_shariff/Resources/Private/Extensions/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/', 'EXT:content_animations/Resources/Private/Layouts/FluidStyledContent/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/Layouts/', '', '', 'EXT:ce_timeline/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0', 'ce_timeline.' => array('gallery.' => array('enable_lightbox' => '1', 'image_width' => '300c', 'image_height' => '200c', 'lightbox_width' => '600c', 'lightbox_height' => '400c', 'textimage_layout' => '2', 'images_per_row' => '1', 'gallery_width' => '33'))), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25')), 'aos-easing' => 'TEXT', 'aos-easing.' => array('value' => 'ease'), 'aos-once' => 'TEXT', 'aos-once.' => array('value' => '1'), 'aos-mirror' => 'TEXT', 'aos-mirror.' => array('value' => '0')), 'dataProcessing.' => array('Baschte\\ContentAnimations\\DataProcessing\\AnimationSettingsProcessor'), 'templateRootPaths' => '', 'partialRootPaths' => '', 'layoutRootPaths' => '', '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'), 'events2_list' => 'USER', 'events2_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'List'), 'events2_show' => 'USER', 'events2_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), 'events2_management' => 'USER', 'events2_management.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Management'), 'events2_calendar' => 'USER', 'events2_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Calendar'), 'events2_searchform' => 'USER', 'events2_searchform.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchForm'), 'events2_searchresults' => 'USER', 'events2_searchresults.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchResults'), 'poll_poll' => 'USER', 'poll_poll.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'Poll'), 'poll_pollteaser' => 'USER', 'poll_pollteaser.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollTeaser'), 'poll_pollresult' => 'USER', 'poll_pollresult.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollResult'), 'poll_polllist' => 'USER', 'poll_polllist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollList'), 'h5p_ajax' => 'USER', 'h5p_ajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'ajax'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'viewstatistics_visitors' => 'USER', 'viewstatistics_visitors.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ViewStatistics', 'pluginName' => 'Visitors'))), 'lib.contentElement')
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 746
            [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
            $conf = array_replace_recursive($conf, $confOverride);
            // Getting the cObject
            $timeTracker->incStackPointer();
            $content .= $this->cObjGetSingle($name, $conf, $key);
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/Templates/', '', '', 'EXT:ce_timeline/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/Partials/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/ImageWoFigure/Partials/', '', 'EXT:ce_timeline/Resources/Private/Partials/', 'EXT:video_shariff/Resources/Private/Extensions/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/', 'EXT:content_animations/Resources/Private/Layouts/FluidStyledContent/', 'EXT:slick/Resources/Private/Fluid/FluidStyledContent/Layouts/', '', '', 'EXT:ce_timeline/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0', 'ce_timeline.' => array('gallery.' => array('enable_lightbox' => '1', 'image_width' => '300c', 'image_height' => '200c', 'lightbox_width' => '600c', 'lightbox_height' => '400c', 'textimage_layout' => '2', 'images_per_row' => '1', 'gallery_width' => '33'))), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25')), 'aos-easing' => 'TEXT', 'aos-easing.' => array('value' => 'ease'), 'aos-once' => 'TEXT', 'aos-once.' => array('value' => '1'), 'aos-mirror' => 'TEXT', 'aos-mirror.' => array('value' => '0')), 'dataProcessing.' => array('Baschte\\ContentAnimations\\DataProcessing\\AnimationSettingsProcessor'), 'templateRootPaths' => '', 'partialRootPaths' => '', 'layoutRootPaths' => '', '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'), 'events2_list' => 'USER', 'events2_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'List'), 'events2_show' => 'USER', 'events2_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), 'events2_management' => 'USER', 'events2_management.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Management'), 'events2_calendar' => 'USER', 'events2_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Calendar'), 'events2_searchform' => 'USER', 'events2_searchform.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchForm'), 'events2_searchresults' => 'USER', 'events2_searchresults.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchResults'), 'poll_poll' => 'USER', 'poll_poll.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'Poll'), 'poll_pollteaser' => 'USER', 'poll_pollteaser.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollTeaser'), 'poll_pollresult' => 'USER', 'poll_pollresult.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollResult'), 'poll_polllist' => 'USER', 'poll_polllist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollList'), 'h5p_ajax' => 'USER', 'h5p_ajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'ajax'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'viewstatistics_visitors' => 'USER', 'viewstatistics_visitors.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ViewStatistics', 'pluginName' => 'Visitors'))), 'list')
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 45
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'image.' => array('templateRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Layouts/'), 'templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('columnSpacing' => '0', 'borderWidth' => '2', 'borderPadding' => '0', 'maxGalleryWidth.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '844'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1280'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '1.' => array('value' => '1280'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1280'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '640'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '640'), 'TEXT', '301.' => array('value' => '640'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '202.' => array('value' => '640'), 'TEXT', '302.' => array('value' => '640'), 'TEXT', '303.' => array('value' => '640'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'))), 'maxGalleryWidthInText.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '422'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '640'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '400'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '400')), 'TEXT', '1.' => array('value' => '640'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '640'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '400'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '400'), 'TEXT', '301.' => array('value' => '400'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '202.' => array('value' => '400'), 'TEXT', '302.' => array('value' => '400'), 'TEXT', '303.' => array('value' => '400'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'))))), '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')))), 'textmedia.' => array('templateRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Layouts/'), 'templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('columnSpacing' => '0', 'borderWidth' => '2', 'borderPadding' => '0', 'maxGalleryWidth.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '844'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1280'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '1.' => array('value' => '1280'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1280'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '640'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '640'), 'TEXT', '301.' => array('value' => '640'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '202.' => array('value' => '640'), 'TEXT', '302.' => array('value' => '640'), 'TEXT', '303.' => array('value' => '640'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'))), 'maxGalleryWidthInText.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '422'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '640'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '400'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '400')), 'TEXT', '1.' => array('value' => '640'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '640'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '400'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '400'), 'TEXT', '301.' => array('value' => '400'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '202.' => array('value' => '400'), 'TEXT', '302.' => array('value' => '400'), 'TEXT', '303.' => array('value' => '400'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'))))), '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.' => array('templateRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Layouts/'), 'templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('columnSpacing' => '0', 'borderWidth' => '2', 'borderPadding' => '0', 'maxGalleryWidth.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '844'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1280'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '1.' => array('value' => '1280'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1280'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '640'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '640'), 'TEXT', '301.' => array('value' => '640'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '202.' => array('value' => '640'), 'TEXT', '302.' => array('value' => '640'), 'TEXT', '303.' => array('value' => '640'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'))), 'maxGalleryWidthInText.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '422'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '640'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '400'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '400')), 'TEXT', '1.' => array('value' => '640'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '640'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '400'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '400'), 'TEXT', '301.' => array('value' => '400'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '202.' => array('value' => '400'), 'TEXT', '302.' => array('value' => '400'), 'TEXT', '303.' => array('value' => '400'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'))))), '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')))), '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', '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'), 'events2_list' => 'USER', 'events2_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'List'), 'events2_show' => 'USER', 'events2_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), 'events2_management' => 'USER', 'events2_management.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Management'), 'events2_calendar' => 'USER', 'events2_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Calendar'), 'events2_searchform' => 'USER', 'events2_searchform.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchForm'), 'events2_searchresults' => 'USER', 'events2_searchresults.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchResults'), 'poll_poll' => 'USER', 'poll_poll.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'Poll'), 'poll_pollteaser' => 'USER', 'poll_pollteaser.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollTeaser'), 'poll_pollresult' => 'USER', 'poll_pollresult.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollResult'), 'poll_polllist' => 'USER', 'poll_polllist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollList'), 'h5p_ajax' => 'USER', 'h5p_ajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'ajax'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'viewstatistics_visitors' => 'USER', 'viewstatistics_visitors.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ViewStatistics', 'pluginName' => 'Visitors'))), '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', 'textpic' => '< lib.contentElement', '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' => 'nav_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_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' => 'nav_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_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' => 'nav_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' => '< 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')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), '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'), 'where' => '{#sectionIndex} = 1', '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')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'h5p_view' => '< lib.contentElement', 'h5p_view.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'view')), 'h5p_statistics' => '< lib.contentElement', 'h5p_statistics.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'statistics')), 'cols_2' => 'FLUIDTEMPLATE', 'cols_2.' => array('templateName' => '2Cols', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0'), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '201.' => array('colPos' => '201', 'as' => 'childrenLeft'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '202.' => array('colPos' => '202', 'as' => 'childrenRight'))), 'cols_3' => 'FLUIDTEMPLATE', 'cols_3.' => array('templateName' => '3Cols', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0'), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '301.' => array('colPos' => '301', 'as' => 'childrenLeft3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '302.' => array('colPos' => '302', 'as' => 'childrenMiddle3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '303.' => array('colPos' => '303', 'as' => 'childrenRight3'))), 'cols_4' => 'FLUIDTEMPLATE', 'cols_4.' => array('templateName' => '4Cols', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0'), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '401.' => array('colPos' => '401', 'as' => 'childrenLeft4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '402.' => array('colPos' => '402', 'as' => 'childrenMiddleLeft4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '403.' => array('colPos' => '403', 'as' => 'childrenMiddleRight4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '404.' => array('colPos' => '404', 'as' => 'childrenRight4'))), 'slickcontent' => '< lib.contentElement', 'slickcontent.' => array('templateName' => 'Slickcontent', 'dataProcessing.' => array('Netzmacher\\Slick\\DataProcessing\\FlexFormProcessor'), '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'))), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content'))), 'slickfilecollection' => '< lib.contentElement', 'slickfilecollection.' => array('templateName' => 'Slickfilecollection', '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'))), 'Netzmacher\\Slick\\DataProcessing\\FlexFormProcessor'), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content'))), 'slickimage' => 'COA', 'slickimage.' => array('TEXT', '10.' => array('if' => '', 'if.' => array('value.' => array('field' => 'header_layout'), 'equals' => '100', 'negate' => '1'), 'field' => 'header', 'wrap' => '', 'wrap.' => array('stdWrap' => '', 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'header_layout'), 'default' => 'TEXT', 'default.' => array('value' => '<h2>|</h2>'), 'TEXT', '1.' => array('value' => '<h1>|</h1>'), 'TEXT', '2.' => array('value' => '<h2>|</h2>'), 'TEXT', '3.' => array('value' => '<h3>|</h3>'), 'TEXT', '4.' => array('value' => '<h4>|</h4>'), 'TEXT', '5.' => array('value' => '<h5>|</h5>'), 'TEXT', '6.' => array('value' => '<h6>|</h6>'))))), '< lib.contentElement', '20.' => array('templateName' => 'Slickimage', 'dataProcessing.' => array('Netzmacher\\Slick\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '30.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '0', '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'))))), 'slickitem' => 'FLUIDTEMPLATE', 'slickitem.' => array('templateName' => 'Slickcontentelement', 'templateRootPaths.' => array('EXT:slick/Resources/Private/Fluid/Default/Slick/Templates/', ''), 'partialRootPaths.' => array('EXT:slick/Resources/Private/Fluid/Default/Slick/Partials/', ''), 'layoutRootPaths.' => array('EXT:slick/Resources/Private/Fluid/Default/Slick/Layouts/', ''), 'settings' => '', 'settings.' => array('headerTag' => '', 'media.' => array('lazyLoading' => 'eager')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'image'), 'as' => 'images'))), 'spreadsheets_table' => '< lib.contentElement', 'spreadsheets_table.' => array('layoutRootPaths.' => array('EXT:spreadsheets/Resources/Private/Layouts/', ''), 'partialRootPaths.' => array('EXT:spreadsheets/Resources/Private/Partials/', ''), 'templateRootPaths.' => array('EXT:spreadsheets/Resources/Private/Templates/', ''), 'templateName' => 'Table', 'dataProcessing.' => array('Hoogi91\\Spreadsheets\\DataProcessing\\SpreadsheetProcessor', '10.' => array('value.' => array('field' => 'bodytext'), 'options.' => array('htmlIdentifier.' => array('dataWrap' => 'sheet{field:uid}'), 'ignoreStyles.' => array('field' => 'tx_spreadsheets_ignore_styles'))))), 'ce_timeline' => '< lib.contentElement', 'ce_timeline.' => array('templateName' => 'TimelineCustom', 'extbase.' => array('controllerExtensionName' => 'ce_timeline'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'uid')), 'table' => 'tx_cetimeline_domain_model_entry', 'pidInList' => 'this', 'where.' => array('field' => 'uid', 'intval' => '1', 'dataWrap' => 'pce = |'), 'orderBy' => 'tx_cetimeline_domain_model_entry.sorting', 'as' => 'entries', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'media')))))))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'image.' => array('templateRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Layouts/'), 'templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('columnSpacing' => '0', 'borderWidth' => '2', 'borderPadding' => '0', 'maxGalleryWidth.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '844'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1280'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '1.' => array('value' => '1280'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1280'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '640'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '640'), 'TEXT', '301.' => array('value' => '640'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '202.' => array('value' => '640'), 'TEXT', '302.' => array('value' => '640'), 'TEXT', '303.' => array('value' => '640'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'))), 'maxGalleryWidthInText.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '422'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '640'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '400'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '400')), 'TEXT', '1.' => array('value' => '640'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '640'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '400'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '400'), 'TEXT', '301.' => array('value' => '400'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '202.' => array('value' => '400'), 'TEXT', '302.' => array('value' => '400'), 'TEXT', '303.' => array('value' => '400'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'))))), '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')))), 'textmedia.' => array('templateRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Layouts/'), 'templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('columnSpacing' => '0', 'borderWidth' => '2', 'borderPadding' => '0', 'maxGalleryWidth.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '844'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1280'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '1.' => array('value' => '1280'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1280'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '640'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '640'), 'TEXT', '301.' => array('value' => '640'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '202.' => array('value' => '640'), 'TEXT', '302.' => array('value' => '640'), 'TEXT', '303.' => array('value' => '640'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'))), 'maxGalleryWidthInText.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '422'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '640'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '400'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '400')), 'TEXT', '1.' => array('value' => '640'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '640'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '400'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '400'), 'TEXT', '301.' => array('value' => '400'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '202.' => array('value' => '400'), 'TEXT', '302.' => array('value' => '400'), 'TEXT', '303.' => array('value' => '400'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'))))), '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.' => array('templateRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Layouts/'), 'templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('columnSpacing' => '0', 'borderWidth' => '2', 'borderPadding' => '0', 'maxGalleryWidth.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '844'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1280'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '1.' => array('value' => '1280'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1280'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '640'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '640'), 'TEXT', '301.' => array('value' => '640'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '202.' => array('value' => '640'), 'TEXT', '302.' => array('value' => '640'), 'TEXT', '303.' => array('value' => '640'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'))), 'maxGalleryWidthInText.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '422'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '640'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '400'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '400')), 'TEXT', '1.' => array('value' => '640'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '640'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '400'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '400'), 'TEXT', '301.' => array('value' => '400'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '202.' => array('value' => '400'), 'TEXT', '302.' => array('value' => '400'), 'TEXT', '303.' => array('value' => '400'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'))))), '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')))), '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', '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'), 'events2_list' => 'USER', 'events2_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'List'), 'events2_show' => 'USER', 'events2_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), 'events2_management' => 'USER', 'events2_management.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Management'), 'events2_calendar' => 'USER', 'events2_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Calendar'), 'events2_searchform' => 'USER', 'events2_searchform.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchForm'), 'events2_searchresults' => 'USER', 'events2_searchresults.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchResults'), 'poll_poll' => 'USER', 'poll_poll.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'Poll'), 'poll_pollteaser' => 'USER', 'poll_pollteaser.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollTeaser'), 'poll_pollresult' => 'USER', 'poll_pollresult.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollResult'), 'poll_polllist' => 'USER', 'poll_polllist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollList'), 'h5p_ajax' => 'USER', 'h5p_ajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'ajax'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'viewstatistics_visitors' => 'USER', 'viewstatistics_visitors.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ViewStatistics', 'pluginName' => 'Visitors'))), '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', 'textpic' => '< lib.contentElement', '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' => 'nav_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_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' => 'nav_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_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' => 'nav_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' => '< 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')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), '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'), 'where' => '{#sectionIndex} = 1', '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')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'h5p_view' => '< lib.contentElement', 'h5p_view.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'view')), 'h5p_statistics' => '< lib.contentElement', 'h5p_statistics.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'statistics')), 'cols_2' => 'FLUIDTEMPLATE', 'cols_2.' => array('templateName' => '2Cols', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0'), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '201.' => array('colPos' => '201', 'as' => 'childrenLeft'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '202.' => array('colPos' => '202', 'as' => 'childrenRight'))), 'cols_3' => 'FLUIDTEMPLATE', 'cols_3.' => array('templateName' => '3Cols', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0'), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '301.' => array('colPos' => '301', 'as' => 'childrenLeft3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '302.' => array('colPos' => '302', 'as' => 'childrenMiddle3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '303.' => array('colPos' => '303', 'as' => 'childrenRight3'))), 'cols_4' => 'FLUIDTEMPLATE', 'cols_4.' => array('templateName' => '4Cols', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0'), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '401.' => array('colPos' => '401', 'as' => 'childrenLeft4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '402.' => array('colPos' => '402', 'as' => 'childrenMiddleLeft4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '403.' => array('colPos' => '403', 'as' => 'childrenMiddleRight4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '404.' => array('colPos' => '404', 'as' => 'childrenRight4'))), 'slickcontent' => '< lib.contentElement', 'slickcontent.' => array('templateName' => 'Slickcontent', 'dataProcessing.' => array('Netzmacher\\Slick\\DataProcessing\\FlexFormProcessor'), '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'))), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content'))), 'slickfilecollection' => '< lib.contentElement', 'slickfilecollection.' => array('templateName' => 'Slickfilecollection', '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'))), 'Netzmacher\\Slick\\DataProcessing\\FlexFormProcessor'), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content'))), 'slickimage' => 'COA', 'slickimage.' => array('TEXT', '10.' => array('if' => '', 'if.' => array('value.' => array('field' => 'header_layout'), 'equals' => '100', 'negate' => '1'), 'field' => 'header', 'wrap' => '', 'wrap.' => array('stdWrap' => '', 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'header_layout'), 'default' => 'TEXT', 'default.' => array('value' => '<h2>|</h2>'), 'TEXT', '1.' => array('value' => '<h1>|</h1>'), 'TEXT', '2.' => array('value' => '<h2>|</h2>'), 'TEXT', '3.' => array('value' => '<h3>|</h3>'), 'TEXT', '4.' => array('value' => '<h4>|</h4>'), 'TEXT', '5.' => array('value' => '<h5>|</h5>'), 'TEXT', '6.' => array('value' => '<h6>|</h6>'))))), '< lib.contentElement', '20.' => array('templateName' => 'Slickimage', 'dataProcessing.' => array('Netzmacher\\Slick\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '30.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '0', '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'))))), 'slickitem' => 'FLUIDTEMPLATE', 'slickitem.' => array('templateName' => 'Slickcontentelement', 'templateRootPaths.' => array('EXT:slick/Resources/Private/Fluid/Default/Slick/Templates/', ''), 'partialRootPaths.' => array('EXT:slick/Resources/Private/Fluid/Default/Slick/Partials/', ''), 'layoutRootPaths.' => array('EXT:slick/Resources/Private/Fluid/Default/Slick/Layouts/', ''), 'settings' => '', 'settings.' => array('headerTag' => '', 'media.' => array('lazyLoading' => 'eager')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'image'), 'as' => 'images'))), 'spreadsheets_table' => '< lib.contentElement', 'spreadsheets_table.' => array('layoutRootPaths.' => array('EXT:spreadsheets/Resources/Private/Layouts/', ''), 'partialRootPaths.' => array('EXT:spreadsheets/Resources/Private/Partials/', ''), 'templateRootPaths.' => array('EXT:spreadsheets/Resources/Private/Templates/', ''), 'templateName' => 'Table', 'dataProcessing.' => array('Hoogi91\\Spreadsheets\\DataProcessing\\SpreadsheetProcessor', '10.' => array('value.' => array('field' => 'bodytext'), 'options.' => array('htmlIdentifier.' => array('dataWrap' => 'sheet{field:uid}'), 'ignoreStyles.' => array('field' => 'tx_spreadsheets_ignore_styles'))))), 'ce_timeline' => '< lib.contentElement', 'ce_timeline.' => array('templateName' => 'TimelineCustom', 'extbase.' => array('controllerExtensionName' => 'ce_timeline'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'uid')), 'table' => 'tx_cetimeline_domain_model_entry', 'pidInList' => 'this', 'where.' => array('field' => 'uid', 'intval' => '1', 'dataWrap' => 'pce = |'), 'orderBy' => 'tx_cetimeline_domain_model_entry.sorting', 'as' => 'entries', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'media')))))))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('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')), 'image.' => array('templateRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Layouts/'), 'templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('columnSpacing' => '0', 'borderWidth' => '2', 'borderPadding' => '0', 'maxGalleryWidth.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '844'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1280'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '1.' => array('value' => '1280'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1280'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '640'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '640'), 'TEXT', '301.' => array('value' => '640'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '202.' => array('value' => '640'), 'TEXT', '302.' => array('value' => '640'), 'TEXT', '303.' => array('value' => '640'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'))), 'maxGalleryWidthInText.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '422'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '640'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '400'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '400')), 'TEXT', '1.' => array('value' => '640'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '640'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '400'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '400'), 'TEXT', '301.' => array('value' => '400'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '202.' => array('value' => '400'), 'TEXT', '302.' => array('value' => '400'), 'TEXT', '303.' => array('value' => '400'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'))))), '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')))), 'textmedia.' => array('templateRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Layouts/'), 'templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('columnSpacing' => '0', 'borderWidth' => '2', 'borderPadding' => '0', 'maxGalleryWidth.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '844'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1280'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '1.' => array('value' => '1280'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1280'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '640'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '640'), 'TEXT', '301.' => array('value' => '640'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '202.' => array('value' => '640'), 'TEXT', '302.' => array('value' => '640'), 'TEXT', '303.' => array('value' => '640'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'))), 'maxGalleryWidthInText.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '422'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '640'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '400'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '400')), 'TEXT', '1.' => array('value' => '640'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '640'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '400'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '400'), 'TEXT', '301.' => array('value' => '400'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '202.' => array('value' => '400'), 'TEXT', '302.' => array('value' => '400'), 'TEXT', '303.' => array('value' => '400'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'))))), '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.' => array('templateRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Layouts/'), 'templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('columnSpacing' => '0', 'borderWidth' => '2', 'borderPadding' => '0', 'maxGalleryWidth.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '844'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1280'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '1.' => array('value' => '1280'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1280'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '640'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '640'), 'TEXT', '301.' => array('value' => '640'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '202.' => array('value' => '640'), 'TEXT', '302.' => array('value' => '640'), 'TEXT', '303.' => array('value' => '640'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'))), 'maxGalleryWidthInText.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '422'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '640'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '400'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '400')), 'TEXT', '1.' => array('value' => '640'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '640'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '400'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '400'), 'TEXT', '301.' => array('value' => '400'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '202.' => array('value' => '400'), 'TEXT', '302.' => array('value' => '400'), 'TEXT', '303.' => array('value' => '400'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'))))), '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')))), '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', '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'), 'events2_list' => 'USER', 'events2_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'List'), 'events2_show' => 'USER', 'events2_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), 'events2_management' => 'USER', 'events2_management.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Management'), 'events2_calendar' => 'USER', 'events2_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Calendar'), 'events2_searchform' => 'USER', 'events2_searchform.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchForm'), 'events2_searchresults' => 'USER', 'events2_searchresults.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchResults'), 'poll_poll' => 'USER', 'poll_poll.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'Poll'), 'poll_pollteaser' => 'USER', 'poll_pollteaser.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollTeaser'), 'poll_pollresult' => 'USER', 'poll_pollresult.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollResult'), 'poll_polllist' => 'USER', 'poll_polllist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollList'), 'h5p_ajax' => 'USER', 'h5p_ajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'ajax'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'viewstatistics_visitors' => 'USER', 'viewstatistics_visitors.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ViewStatistics', 'pluginName' => 'Visitors'))), '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', 'textpic' => '< lib.contentElement', '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' => 'nav_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_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' => 'nav_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_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' => 'nav_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' => '< 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')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), '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'), 'where' => '{#sectionIndex} = 1', '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')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'h5p_view' => '< lib.contentElement', 'h5p_view.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'view')), 'h5p_statistics' => '< lib.contentElement', 'h5p_statistics.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'statistics')), 'cols_2' => 'FLUIDTEMPLATE', 'cols_2.' => array('templateName' => '2Cols', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0'), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '201.' => array('colPos' => '201', 'as' => 'childrenLeft'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '202.' => array('colPos' => '202', 'as' => 'childrenRight'))), 'cols_3' => 'FLUIDTEMPLATE', 'cols_3.' => array('templateName' => '3Cols', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0'), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '301.' => array('colPos' => '301', 'as' => 'childrenLeft3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '302.' => array('colPos' => '302', 'as' => 'childrenMiddle3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '303.' => array('colPos' => '303', 'as' => 'childrenRight3'))), 'cols_4' => 'FLUIDTEMPLATE', 'cols_4.' => array('templateName' => '4Cols', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0'), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '401.' => array('colPos' => '401', 'as' => 'childrenLeft4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '402.' => array('colPos' => '402', 'as' => 'childrenMiddleLeft4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '403.' => array('colPos' => '403', 'as' => 'childrenMiddleRight4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '404.' => array('colPos' => '404', 'as' => 'childrenRight4'))), 'slickcontent' => '< lib.contentElement', 'slickcontent.' => array('templateName' => 'Slickcontent', 'dataProcessing.' => array('Netzmacher\\Slick\\DataProcessing\\FlexFormProcessor'), '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'))), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content'))), 'slickfilecollection' => '< lib.contentElement', 'slickfilecollection.' => array('templateName' => 'Slickfilecollection', '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'))), 'Netzmacher\\Slick\\DataProcessing\\FlexFormProcessor'), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content'))), 'slickimage' => 'COA', 'slickimage.' => array('TEXT', '10.' => array('if' => '', 'if.' => array('value.' => array('field' => 'header_layout'), 'equals' => '100', 'negate' => '1'), 'field' => 'header', 'wrap' => '', 'wrap.' => array('stdWrap' => '', 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'header_layout'), 'default' => 'TEXT', 'default.' => array('value' => '<h2>|</h2>'), 'TEXT', '1.' => array('value' => '<h1>|</h1>'), 'TEXT', '2.' => array('value' => '<h2>|</h2>'), 'TEXT', '3.' => array('value' => '<h3>|</h3>'), 'TEXT', '4.' => array('value' => '<h4>|</h4>'), 'TEXT', '5.' => array('value' => '<h5>|</h5>'), 'TEXT', '6.' => array('value' => '<h6>|</h6>'))))), '< lib.contentElement', '20.' => array('templateName' => 'Slickimage', 'dataProcessing.' => array('Netzmacher\\Slick\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '30.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '0', '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'))))), 'slickitem' => 'FLUIDTEMPLATE', 'slickitem.' => array('templateName' => 'Slickcontentelement', 'templateRootPaths.' => array('EXT:slick/Resources/Private/Fluid/Default/Slick/Templates/', ''), 'partialRootPaths.' => array('EXT:slick/Resources/Private/Fluid/Default/Slick/Partials/', ''), 'layoutRootPaths.' => array('EXT:slick/Resources/Private/Fluid/Default/Slick/Layouts/', ''), 'settings' => '', 'settings.' => array('headerTag' => '', 'media.' => array('lazyLoading' => 'eager')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'image'), 'as' => 'images'))), 'spreadsheets_table' => '< lib.contentElement', 'spreadsheets_table.' => array('layoutRootPaths.' => array('EXT:spreadsheets/Resources/Private/Layouts/', ''), 'partialRootPaths.' => array('EXT:spreadsheets/Resources/Private/Partials/', ''), 'templateRootPaths.' => array('EXT:spreadsheets/Resources/Private/Templates/', ''), 'templateName' => 'Table', 'dataProcessing.' => array('Hoogi91\\Spreadsheets\\DataProcessing\\SpreadsheetProcessor', '10.' => array('value.' => array('field' => 'bodytext'), 'options.' => array('htmlIdentifier.' => array('dataWrap' => 'sheet{field:uid}'), 'ignoreStyles.' => array('field' => 'tx_spreadsheets_ignore_styles'))))), 'ce_timeline' => '< lib.contentElement', 'ce_timeline.' => array('templateName' => 'TimelineCustom', 'extbase.' => array('controllerExtensionName' => 'ce_timeline'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'uid')), 'table' => 'tx_cetimeline_domain_model_entry', 'pidInList' => 'this', 'where.' => array('field' => 'uid', 'intval' => '1', 'dataWrap' => 'pce = |'), 'orderBy' => 'tx_cetimeline_domain_model_entry.sorting', 'as' => 'entries', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'media')))))), 'tt_content')
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 746
            [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
            $conf = array_replace_recursive($conf, $confOverride);
            // Getting the cObject
            $timeTracker->incStackPointer();
            $content .= $this->cObjGetSingle($name, $conf, $key);
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
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')), 'image.' => array('templateRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Layouts/'), 'templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('columnSpacing' => '0', 'borderWidth' => '2', 'borderPadding' => '0', 'maxGalleryWidth.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '844'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1280'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '1.' => array('value' => '1280'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1280'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '640'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '640'), 'TEXT', '301.' => array('value' => '640'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '202.' => array('value' => '640'), 'TEXT', '302.' => array('value' => '640'), 'TEXT', '303.' => array('value' => '640'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'))), 'maxGalleryWidthInText.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '422'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '640'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '400'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '400')), 'TEXT', '1.' => array('value' => '640'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '640'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '400'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '400'), 'TEXT', '301.' => array('value' => '400'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '202.' => array('value' => '400'), 'TEXT', '302.' => array('value' => '400'), 'TEXT', '303.' => array('value' => '400'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'))))), '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')))), 'textmedia.' => array('templateRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Layouts/'), 'templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('columnSpacing' => '0', 'borderWidth' => '2', 'borderPadding' => '0', 'maxGalleryWidth.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '844'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1280'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '1.' => array('value' => '1280'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1280'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '640'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '640'), 'TEXT', '301.' => array('value' => '640'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '202.' => array('value' => '640'), 'TEXT', '302.' => array('value' => '640'), 'TEXT', '303.' => array('value' => '640'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'))), 'maxGalleryWidthInText.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '422'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '640'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '400'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '400')), 'TEXT', '1.' => array('value' => '640'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '640'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '400'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '400'), 'TEXT', '301.' => array('value' => '400'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '202.' => array('value' => '400'), 'TEXT', '302.' => array('value' => '400'), 'TEXT', '303.' => array('value' => '400'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'))))), '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.' => array('templateRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:hh_video_extender/Resources/Private/Layouts/'), 'templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('columnSpacing' => '0', 'borderWidth' => '2', 'borderPadding' => '0', 'maxGalleryWidth.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1280'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '844'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1280'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '1.' => array('value' => '1280'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1280'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '640'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '640'), 'TEXT', '301.' => array('value' => '640'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '202.' => array('value' => '640'), 'TEXT', '302.' => array('value' => '640'), 'TEXT', '303.' => array('value' => '640'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgWidth25}'))), 'maxGalleryWidthInText.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '640'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '422'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '640'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '400'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '400')), 'TEXT', '1.' => array('value' => '640'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '640'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '640'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '640')), 'TEXT', '3.' => array('value' => '1280'), 'TEXT', '4.' => array('value' => '400'), 'TEXT', '5.' => array('value' => '1600'), 'TEXT', '201.' => array('value' => '400'), 'TEXT', '301.' => array('value' => '400'), 'TEXT', '401.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '202.' => array('value' => '400'), 'TEXT', '302.' => array('value' => '400'), 'TEXT', '303.' => array('value' => '400'), 'TEXT', '402.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '403.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'), 'TEXT', '404.' => array('value' => '{$jwmusterprojekt11.imgTextWidth25}'))))), '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')))), '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', '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'), 'events2_list' => 'USER', 'events2_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'List'), 'events2_show' => 'USER', 'events2_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), 'events2_management' => 'USER', 'events2_management.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Management'), 'events2_calendar' => 'USER', 'events2_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Calendar'), 'events2_searchform' => 'USER', 'events2_searchform.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchForm'), 'events2_searchresults' => 'USER', 'events2_searchresults.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchResults'), 'poll_poll' => 'USER', 'poll_poll.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'Poll'), 'poll_pollteaser' => 'USER', 'poll_pollteaser.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollTeaser'), 'poll_pollresult' => 'USER', 'poll_pollresult.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollResult'), 'poll_polllist' => 'USER', 'poll_polllist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Poll', 'pluginName' => 'PollList'), 'h5p_ajax' => 'USER', 'h5p_ajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'ajax'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'viewstatistics_visitors' => 'USER', 'viewstatistics_visitors.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'ViewStatistics', 'pluginName' => 'Visitors'))), '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', 'textpic' => '< lib.contentElement', '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' => 'nav_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_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' => 'nav_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_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' => 'nav_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' => '< 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')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), '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'), 'where' => '{#sectionIndex} = 1', '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')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'h5p_view' => '< lib.contentElement', 'h5p_view.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'view')), 'h5p_statistics' => '< lib.contentElement', 'h5p_statistics.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'H5p', 'pluginName' => 'statistics')), 'cols_2' => 'FLUIDTEMPLATE', 'cols_2.' => array('templateName' => '2Cols', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0'), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '201.' => array('colPos' => '201', 'as' => 'childrenLeft'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '202.' => array('colPos' => '202', 'as' => 'childrenRight'))), 'cols_3' => 'FLUIDTEMPLATE', 'cols_3.' => array('templateName' => '3Cols', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0'), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '301.' => array('colPos' => '301', 'as' => 'childrenLeft3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '302.' => array('colPos' => '302', 'as' => 'childrenMiddle3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '303.' => array('colPos' => '303', 'as' => 'childrenRight3'))), 'cols_4' => 'FLUIDTEMPLATE', 'cols_4.' => array('templateName' => '4Cols', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:jwmusterprojekt11/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:backgroundimage4ce/Resources/Private/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'eager', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '1200m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-fancybox="gallery[{file:current:uid_foreign}]" data-caption="{file:current:title}" class="" rel=""'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'imageSizeSmall' => '400', 'imageSizeMedium' => '844', 'imageSizeLarge' => '1280', 'imageSizeHeader' => '1600', 'menuType' => '0'), 'variables.' => array('usedColPosPercentage' => 'CASE', 'usedColPosPercentage.' => array('key.' => array('field' => 'colPos'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'CASE', '0.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '1'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '1'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '1.' => array('value' => '1'), 'CASE', '2.' => array('key.' => array('data' => 'pagelayout'), 'default' => 'TEXT', 'default.' => array('value' => '100'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => '1'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => '100'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => '0.5'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => '0.33')), 'TEXT', '3.' => array('value' => '1'), 'TEXT', '4.' => array('value' => '0.33'), 'TEXT', '5.' => array('value' => '1'), 'TEXT', '201.' => array('value' => '0.50'), 'TEXT', '301.' => array('value' => '0.50'), 'TEXT', '401.' => array('value' => '0.25'), 'TEXT', '202.' => array('value' => '0.50'), 'TEXT', '302.' => array('value' => '0.50'), 'TEXT', '303.' => array('value' => '0.50'), 'TEXT', '402.' => array('value' => '0.25'), 'TEXT', '403.' => array('value' => '0.25'), 'TEXT', '404.' => array('value' => '0.25'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '401.' => array('colPos' => '401', 'as' => 'childrenLeft4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '402.' => array('colPos' => '402', 'as' => 'childrenMiddleLeft4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '403.' => array('colPos' => '403', 'as' => 'childrenMiddleRight4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '404.' => array('colPos' => '404', 'as' => 'childrenRight4'))), 'slickcontent' => '< lib.contentElement', 'slickcontent.' => array('templateName' => 'Slickcontent', 'dataProcessing.' => array('Netzmacher\\Slick\\DataProcessing\\FlexFormProcessor'), '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'))), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content'))), 'slickfilecollection' => '< lib.contentElement', 'slickfilecollection.' => array('templateName' => 'Slickfilecollection', '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'))), 'Netzmacher\\Slick\\DataProcessing\\FlexFormProcessor'), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content'))), 'slickimage' => 'COA', 'slickimage.' => array('TEXT', '10.' => array('if' => '', 'if.' => array('value.' => array('field' => 'header_layout'), 'equals' => '100', 'negate' => '1'), 'field' => 'header', 'wrap' => '', 'wrap.' => array('stdWrap' => '', 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'header_layout'), 'default' => 'TEXT', 'default.' => array('value' => '<h2>|</h2>'), 'TEXT', '1.' => array('value' => '<h1>|</h1>'), 'TEXT', '2.' => array('value' => '<h2>|</h2>'), 'TEXT', '3.' => array('value' => '<h3>|</h3>'), 'TEXT', '4.' => array('value' => '<h4>|</h4>'), 'TEXT', '5.' => array('value' => '<h5>|</h5>'), 'TEXT', '6.' => array('value' => '<h6>|</h6>'))))), '< lib.contentElement', '20.' => array('templateName' => 'Slickimage', 'dataProcessing.' => array('Netzmacher\\Slick\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '30.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '0', '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'))))), 'slickitem' => 'FLUIDTEMPLATE', 'slickitem.' => array('templateName' => 'Slickcontentelement', 'templateRootPaths.' => array('EXT:slick/Resources/Private/Fluid/Default/Slick/Templates/', ''), 'partialRootPaths.' => array('EXT:slick/Resources/Private/Fluid/Default/Slick/Partials/', ''), 'layoutRootPaths.' => array('EXT:slick/Resources/Private/Fluid/Default/Slick/Layouts/', ''), 'settings' => '', 'settings.' => array('headerTag' => '', 'media.' => array('lazyLoading' => 'eager')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'image'), 'as' => 'images'))), 'spreadsheets_table' => '< lib.contentElement', 'spreadsheets_table.' => array('layoutRootPaths.' => array('EXT:spreadsheets/Resources/Private/Layouts/', ''), 'partialRootPaths.' => array('EXT:spreadsheets/Resources/Private/Partials/', ''), 'templateRootPaths.' => array('EXT:spreadsheets/Resources/Private/Templates/', ''), 'templateName' => 'Table', 'dataProcessing.' => array('Hoogi91\\Spreadsheets\\DataProcessing\\SpreadsheetProcessor', '10.' => array('value.' => array('field' => 'bodytext'), 'options.' => array('htmlIdentifier.' => array('dataWrap' => 'sheet{field:uid}'), 'ignoreStyles.' => array('field' => 'tx_spreadsheets_ignore_styles'))))), 'ce_timeline' => '< lib.contentElement', 'ce_timeline.' => array('templateName' => 'TimelineCustom', 'extbase.' => array('controllerExtensionName' => 'ce_timeline'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'uid')), 'table' => 'tx_cetimeline_domain_model_entry', 'pidInList' => 'this', 'where.' => array('field' => 'uid', 'intval' => '1', 'dataWrap' => 'pce = |'), 'orderBy' => 'tx_cetimeline_domain_model_entry.sorting', 'as' => 'entries', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'media')))))), '')
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 96
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $registerField;
                        $this->cObj->lastChanged($row['tstamp'] ?? 0);
                        $cObj->start($row, $conf['table'], $this->request);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0'), 'stdWrap.' => array('ifEmpty.' => array('stdWrap.' => array('wrap' => '&nbsp;')))))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentContentObject), array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0'), 'stdWrap.' => array('ifEmpty.' => array('stdWrap.' => array('wrap' => '&nbsp;')))))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0'), 'stdWrap.' => array('ifEmpty.' => array('stdWrap.' => array('wrap' => '&nbsp;')))), 'variables.content0')
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 305
                continue;
            }
            if (!in_array($variableName, $reservedVariables)) {
                $cObjConf = $variablesToProcess[$variableName . '.'] ?? [];
                $variables[$variableName] = $this->cObj->cObjGetSingle($cObjType, $cObjConf, '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('partialRootPath' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Partials', 'layoutRootPath' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Layouts', 'file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Standard.html'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Onecol.html'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Twocol.html'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Threecol.html'), 'pagets__styleguide' => 'TEXT', 'pagets__styleguide.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Styleguide.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Standard.html')))), 'variables.' => array('content5' => 'CONTENT', 'content5.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 5')), 'content0' => 'CONTENT', 'content0.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0'), 'stdWrap.' => array('ifEmpty.' => array('stdWrap.' => array('wrap' => '&nbsp;')))), 'content1' => 'CONTENT', 'content1.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')), 'content2' => 'CONTENT', 'content2.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2')), 'content3' => 'CONTENT', 'content3.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 3')), 'content4' => 'CONTENT', 'content4.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 4')), 'content10' => 'CONTENT', 'content10.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 10', 'pidInList' => '232')), 'content11' => 'CONTENT', 'content11.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 11', 'pidInList' => '232')), 'content12' => 'CONTENT', 'content12.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 12', 'pidInList' => '232')), 'menuType' => 'TEXT', 'menuType.' => array('value' => '0'), 'menuTheme' => 'TEXT', 'menuTheme.' => array('value' => 'standard'), 'showLang' => 'TEXT', 'showLang.' => array('value' => '0'), 'footerBackendLayout' => 'TEXT', 'footerBackendLayout.' => array('data' => 'DB:pages:232:backend_layout')), 'settings.' => array('showRootline' => '1', 'showSearch' => '1', 'logoFile' => 'EXT:jwmusterprojekt11/Resources/Public/Images/logo.png', 'logoWidth' => '215', 'logoAltText' => 'Martin-Schleyer-Gymnasium', 'logoLinkParameter' => '1', 'logoLinkTitle' => 'Martin-Schleyer-Gymnasium', 'imgMaxWidth' => '1280', 'useRss' => '0', 'showKlaro' => '1', 'mustConsent' => '1', 'privacyPolicy' => '62', 'useMatomo' => '', 'useGA' => '', 'gaPath' => '/', 'gaDomain' => 'domain.tld', 'fbp' => '', 'useTwitter' => '', 'externalMedia' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '10.' => array('languages' => 'auto', 'as' => 'languageMenu'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'menuMain', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'menuMeta', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image'))), 'maxItems' => '8'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('levels' => '1', 'special' => 'directory', 'special.' => array('value' => '2'), 'as' => 'menuServiceFooter'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('as' => 'rootline', 'includeNotInMenu' => '1', 'excludeUidList' => '4', 'entryLevel' => '1', 'special' => 'rootline', 'special.' => array('range' => '0|-1')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'verticalMenu1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image'))), 'entryLevel' => '1'), 'GeorgRinger\\News\\DataProcessing\\AddNewsToMenuProcessor', '900.' => array('menus' => 'rootline'))))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 100
        $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('partialRootPath' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Partials', 'layoutRootPath' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Layouts', 'file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Standard.html'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Onecol.html'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Twocol.html'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Threecol.html'), 'pagets__styleguide' => 'TEXT', 'pagets__styleguide.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Styleguide.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Standard.html')))), 'variables.' => array('content5' => 'CONTENT', 'content5.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 5')), 'content0' => 'CONTENT', 'content0.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0'), 'stdWrap.' => array('ifEmpty.' => array('stdWrap.' => array('wrap' => '&nbsp;')))), 'content1' => 'CONTENT', 'content1.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')), 'content2' => 'CONTENT', 'content2.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2')), 'content3' => 'CONTENT', 'content3.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 3')), 'content4' => 'CONTENT', 'content4.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 4')), 'content10' => 'CONTENT', 'content10.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 10', 'pidInList' => '232')), 'content11' => 'CONTENT', 'content11.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 11', 'pidInList' => '232')), 'content12' => 'CONTENT', 'content12.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 12', 'pidInList' => '232')), 'menuType' => 'TEXT', 'menuType.' => array('value' => '0'), 'menuTheme' => 'TEXT', 'menuTheme.' => array('value' => 'standard'), 'showLang' => 'TEXT', 'showLang.' => array('value' => '0'), 'footerBackendLayout' => 'TEXT', 'footerBackendLayout.' => array('data' => 'DB:pages:232:backend_layout')), 'settings.' => array('showRootline' => '1', 'showSearch' => '1', 'logoFile' => 'EXT:jwmusterprojekt11/Resources/Public/Images/logo.png', 'logoWidth' => '215', 'logoAltText' => 'Martin-Schleyer-Gymnasium', 'logoLinkParameter' => '1', 'logoLinkTitle' => 'Martin-Schleyer-Gymnasium', 'imgMaxWidth' => '1280', 'useRss' => '0', 'showKlaro' => '1', 'mustConsent' => '1', 'privacyPolicy' => '62', 'useMatomo' => '', 'useGA' => '', 'gaPath' => '/', 'gaDomain' => 'domain.tld', 'fbp' => '', 'useTwitter' => '', 'externalMedia' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '10.' => array('languages' => 'auto', 'as' => 'languageMenu'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'menuMain', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'menuMeta', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image'))), 'maxItems' => '8'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('levels' => '1', 'special' => 'directory', 'special.' => array('value' => '2'), 'as' => 'menuServiceFooter'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('as' => 'rootline', 'includeNotInMenu' => '1', 'excludeUidList' => '4', 'entryLevel' => '1', 'special' => 'rootline', 'special.' => array('range' => '0|-1')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'verticalMenu1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image'))), 'entryLevel' => '1'), 'GeorgRinger\\News\\DataProcessing\\AddNewsToMenuProcessor', '900.' => array('menus' => 'rootline'))))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('partialRootPath' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Partials', 'layoutRootPath' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Layouts', 'file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Standard.html'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Onecol.html'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Twocol.html'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Threecol.html'), 'pagets__styleguide' => 'TEXT', 'pagets__styleguide.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Styleguide.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Standard.html')))), 'variables.' => array('content5' => 'CONTENT', 'content5.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 5')), 'content0' => 'CONTENT', 'content0.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0'), 'stdWrap.' => array('ifEmpty.' => array('stdWrap.' => array('wrap' => '&nbsp;')))), 'content1' => 'CONTENT', 'content1.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')), 'content2' => 'CONTENT', 'content2.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2')), 'content3' => 'CONTENT', 'content3.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 3')), 'content4' => 'CONTENT', 'content4.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 4')), 'content10' => 'CONTENT', 'content10.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 10', 'pidInList' => '232')), 'content11' => 'CONTENT', 'content11.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 11', 'pidInList' => '232')), 'content12' => 'CONTENT', 'content12.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 12', 'pidInList' => '232')), 'menuType' => 'TEXT', 'menuType.' => array('value' => '0'), 'menuTheme' => 'TEXT', 'menuTheme.' => array('value' => 'standard'), 'showLang' => 'TEXT', 'showLang.' => array('value' => '0'), 'footerBackendLayout' => 'TEXT', 'footerBackendLayout.' => array('data' => 'DB:pages:232:backend_layout')), 'settings.' => array('showRootline' => '1', 'showSearch' => '1', 'logoFile' => 'EXT:jwmusterprojekt11/Resources/Public/Images/logo.png', 'logoWidth' => '215', 'logoAltText' => 'Martin-Schleyer-Gymnasium', 'logoLinkParameter' => '1', 'logoLinkTitle' => 'Martin-Schleyer-Gymnasium', 'imgMaxWidth' => '1280', 'useRss' => '0', 'showKlaro' => '1', 'mustConsent' => '1', 'privacyPolicy' => '62', 'useMatomo' => '', 'useGA' => '', 'gaPath' => '/', 'gaDomain' => 'domain.tld', 'fbp' => '', 'useTwitter' => '', 'externalMedia' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '10.' => array('languages' => 'auto', 'as' => 'languageMenu'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'menuMain', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'menuMeta', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image'))), 'maxItems' => '8'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('levels' => '1', 'special' => 'directory', 'special.' => array('value' => '2'), 'as' => 'menuServiceFooter'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('as' => 'rootline', 'includeNotInMenu' => '1', 'excludeUidList' => '4', 'entryLevel' => '1', 'special' => 'rootline', 'special.' => array('range' => '0|-1')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'verticalMenu1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image'))), 'entryLevel' => '1'), 'GeorgRinger\\News\\DataProcessing\\AddNewsToMenuProcessor', '900.' => array('menus' => 'rootline'))))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('partialRootPath' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Partials', 'layoutRootPath' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Layouts', 'file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Standard.html'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Onecol.html'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Twocol.html'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Threecol.html'), 'pagets__styleguide' => 'TEXT', 'pagets__styleguide.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Styleguide.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Standard.html')))), 'variables.' => array('content5' => 'CONTENT', 'content5.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 5')), 'content0' => 'CONTENT', 'content0.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0'), 'stdWrap.' => array('ifEmpty.' => array('stdWrap.' => array('wrap' => '&nbsp;')))), 'content1' => 'CONTENT', 'content1.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')), 'content2' => 'CONTENT', 'content2.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2')), 'content3' => 'CONTENT', 'content3.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 3')), 'content4' => 'CONTENT', 'content4.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 4')), 'content10' => 'CONTENT', 'content10.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 10', 'pidInList' => '232')), 'content11' => 'CONTENT', 'content11.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 11', 'pidInList' => '232')), 'content12' => 'CONTENT', 'content12.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 12', 'pidInList' => '232')), 'menuType' => 'TEXT', 'menuType.' => array('value' => '0'), 'menuTheme' => 'TEXT', 'menuTheme.' => array('value' => 'standard'), 'showLang' => 'TEXT', 'showLang.' => array('value' => '0'), 'footerBackendLayout' => 'TEXT', 'footerBackendLayout.' => array('data' => 'DB:pages:232:backend_layout')), 'settings.' => array('showRootline' => '1', 'showSearch' => '1', 'logoFile' => 'EXT:jwmusterprojekt11/Resources/Public/Images/logo.png', 'logoWidth' => '215', 'logoAltText' => 'Martin-Schleyer-Gymnasium', 'logoLinkParameter' => '1', 'logoLinkTitle' => 'Martin-Schleyer-Gymnasium', 'imgMaxWidth' => '1280', 'useRss' => '0', 'showKlaro' => '1', 'mustConsent' => '1', 'privacyPolicy' => '62', 'useMatomo' => '', 'useGA' => '', 'gaPath' => '/', 'gaDomain' => 'domain.tld', 'fbp' => '', 'useTwitter' => '', 'externalMedia' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '10.' => array('languages' => 'auto', 'as' => 'languageMenu'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'menuMain', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'menuMeta', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image'))), 'maxItems' => '8'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('levels' => '1', 'special' => 'directory', 'special.' => array('value' => '2'), 'as' => 'menuServiceFooter'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('as' => 'rootline', 'includeNotInMenu' => '1', 'excludeUidList' => '4', 'entryLevel' => '1', 'special' => 'rootline', 'special.' => array('range' => '0|-1')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'verticalMenu1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image'))), 'entryLevel' => '1'), 'GeorgRinger\\News\\DataProcessing\\AddNewsToMenuProcessor', '900.' => array('menus' => 'rootline'))), '10')
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 713
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && !str_contains($theKey, '.')) {
                $conf = $setup[$theKey . '.'] ?? [];
                $contentObjects[] = $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $contentObjects;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSeparated(array('includeCSS.' => array('eventsAutoComplete' => 'EXT:events2/Resources/Public/Css/AutoComplete.min.css', 'eventsTooltip' => 'EXT:events2/Resources/Public/Css/Tooltip.css', 'fontawesome' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Fontawesome/fontawesome.css', 'fontawesomesolid' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Fontawesome/solid.css', 'general' => 'EXT:jwmusterprojekt11/Resources/Public/Css/style.css', 'mainmenu' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Smartmenu/sm-clean.css', 'megamenu' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Smartmenu/mega-menu.css', 'megamenu.' => array('if.' => array('value' => 'megamenu', 'equals' => 'standard')), 'fancybox' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Extensions/jquery.fancybox.css', 'videoshariff' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Extensions/videoshariff.css', 'news' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Extensions/news.css', 'modifications' => 'fileadmin/CSS-Modifications/modifications.css', 'styleguide' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Modules/styleguidemodules.css', 'styleguide.' => array('if.' => array('value' => 'pagets__styleguide', 'equals.' => array('data' => 'pagelayout'))), 'prism' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Extensions/prismcoy.css', 'slickLibrary' => 'EXT:slick/Resources/Public/JavaScript/slick-1.9.0/slick/slick.min.css', 'slickTheme' => 'EXT:slick/Resources/Public/JavaScript/slick-1.9.0/slick/slick-theme.min.css', 'slickTheme.' => array('if' => '', 'if.' => array('isTrue' => '1')), 'slickDefault' => 'EXT:slick/Resources/Public/CSS/default.min.css', 'ce-timeline' => 'EXT:ce_timeline/Resources/Public/Css/light.css', 'video_shariff' => 'EXT:video_shariff/Resources/Public/Css/VideoShariff.min.css'), 'includeJSFooter.' => array('events2AutoComplete' => 'EXT:events2/Resources/Public/JavaScript/AutoComplete.min.js', 'events2Litepicker' => 'EXT:events2/Resources/Public/JavaScript/LitePicker.js', 'events2' => 'EXT:events2/Resources/Public/JavaScript/Events2.js', 'events2Calendar' => 'EXT:events2/Resources/Public/JavaScript/Calendar.js', 'smartMenu' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/Smartmenu/jquery.smartmenus.min.js', 'smartMenu.' => array('disableCompression' => '1'), 'initMoreSmartMenu' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/Smartmenu/initMoreSmartMenu.js', 'initMoreSmartMenu.' => array('if.' => array('isFalse' => '0', 'value' => 'standard', 'equals' => 'standard')), 'initSmartMenu' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/Smartmenu/initSmartMenu.js', 'fancyBox' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/jquery.fancybox.min.js', 'fancyBox.' => array('disableCompression' => '1'), 'toggleContent' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/contentToggle.js', 'klaro' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/Klaro/klaro.js', 'klaro.' => array('if.' => array('value' => '1', 'equals' => '1')), 'custom' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/custom.js', 'prism' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/prism.js', 'prism.' => array('excludeFromConcatenation' => '1'), 'prismts' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/prism-typoscript.js', 'prismts.' => array('excludeFromConcatenation' => '1'), 'slick' => 'EXT:slick/Resources/Public/JavaScript/slick-1.9.0/slick/slick.min.js', 'slickRandomize' => 'EXT:slick/Resources/Public/JavaScript/randomize.js'), 'meta.' => array('viewport' => 'width=device-width,initial-scale=1', 'msapplication-config' => 'none', 'msapplication-TileColor' => '#ffffff', 'msapplication-tooltip' => 'Martin-Schleyer-Gymnasium', 'application-name' => 'Martin-Schleyer-Gymnasium', 'theme-color' => '#ffffff'), 'headerData.' => array('COA', '2347.' => array('IMAGE', '10.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '60', 'height' => '60'), 'layoutKey' => 'apple-touch-icon', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '20.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '76', 'height' => '76'), 'layoutKey' => 'apple-touch-icon-with-sizes', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '30.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '120', 'height' => '120'), 'layoutKey' => 'apple-touch-icon-with-sizes', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '40.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '152', 'height' => '152'), 'layoutKey' => 'apple-touch-icon-with-sizes', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '110.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '144', 'height' => '144'), 'layoutKey' => 'msapplication-TileImage', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '120.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '70', 'height' => '70'), 'layoutKey' => 'msapplication-square', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '130.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '150', 'height' => '150'), 'layoutKey' => 'msapplication-square', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '140.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '310', 'height' => '310'), 'layoutKey' => 'msapplication-square', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '150.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon_lang.png', 'file.' => array('width' => '310', 'height' => '150c'), 'layoutKey' => 'msapplication-wide', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))))), 'shortcutIcon' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'includeJSLibs.' => array('jquery' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/Lib/jquery-3.5.1.min.js', 'jquery.' => array('forceOnTop' => '1', 'disableCompression' => '1', 'excludeFromConcatenation' => '1', 'allWrap' => '<!--[if lte IE 8]><script src="EXT:jwmusterprojekt11/Resources/Public/JavaScript/Lib/jquery-1.12.4.min.js"></script><![endif]--><!--[if gt IE 8]><!-->|<!--<![endif]-->')), 'FLUIDTEMPLATE', '10.' => array('partialRootPath' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Partials', 'layoutRootPath' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Layouts', 'file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Standard.html'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Onecol.html'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Twocol.html'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Threecol.html'), 'pagets__styleguide' => 'TEXT', 'pagets__styleguide.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Styleguide.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Standard.html')))), 'variables.' => array('content5' => 'CONTENT', 'content5.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 5')), 'content0' => 'CONTENT', 'content0.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0'), 'stdWrap.' => array('ifEmpty.' => array('stdWrap.' => array('wrap' => '&nbsp;')))), 'content1' => 'CONTENT', 'content1.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')), 'content2' => 'CONTENT', 'content2.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2')), 'content3' => 'CONTENT', 'content3.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 3')), 'content4' => 'CONTENT', 'content4.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 4')), 'content10' => 'CONTENT', 'content10.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 10', 'pidInList' => '232')), 'content11' => 'CONTENT', 'content11.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 11', 'pidInList' => '232')), 'content12' => 'CONTENT', 'content12.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 12', 'pidInList' => '232')), 'menuType' => 'TEXT', 'menuType.' => array('value' => '0'), 'menuTheme' => 'TEXT', 'menuTheme.' => array('value' => 'standard'), 'showLang' => 'TEXT', 'showLang.' => array('value' => '0'), 'footerBackendLayout' => 'TEXT', 'footerBackendLayout.' => array('data' => 'DB:pages:232:backend_layout')), 'settings.' => array('showRootline' => '1', 'showSearch' => '1', 'logoFile' => 'EXT:jwmusterprojekt11/Resources/Public/Images/logo.png', 'logoWidth' => '215', 'logoAltText' => 'Martin-Schleyer-Gymnasium', 'logoLinkParameter' => '1', 'logoLinkTitle' => 'Martin-Schleyer-Gymnasium', 'imgMaxWidth' => '1280', 'useRss' => '0', 'showKlaro' => '1', 'mustConsent' => '1', 'privacyPolicy' => '62', 'useMatomo' => '', 'useGA' => '', 'gaPath' => '/', 'gaDomain' => 'domain.tld', 'fbp' => '', 'useTwitter' => '', 'externalMedia' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '10.' => array('languages' => 'auto', 'as' => 'languageMenu'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'menuMain', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'menuMeta', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image'))), 'maxItems' => '8'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('levels' => '1', 'special' => 'directory', 'special.' => array('value' => '2'), 'as' => 'menuServiceFooter'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('as' => 'rootline', 'includeNotInMenu' => '1', 'excludeUidList' => '4', 'entryLevel' => '1', 'special' => 'rootline', 'special.' => array('range' => '0|-1')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'verticalMenu1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image'))), 'entryLevel' => '1'), 'GeorgRinger\\News\\DataProcessing\\AddNewsToMenuProcessor', '900.' => array('menus' => 'rootline'))), 'cssInline.' => array('FILECONTENT', '161113.' => array('file' => 'EXT:content_animations/Resources/Public/JavaScript/Vendor/AOS/aos.css'), 'TEXT', '62478.' => array('value' => ' .{$plugin.slick.carousel.css.class}{ margin:{$plugin.slick.carousel.css.margins.item}; } .slick-header { bottom: {$plugin.slick.carousel.css.header.bottom}; top: {$plugin.slick.carousel.css.header.top}; } .slick-text { bottom: {$plugin.slick.carousel.css.text.bottom}; top: {$plugin.slick.carousel.css.text.top}; } .slick-header .span { background-color: {$plugin.slick.carousel.css.header.background-color}; color: {$plugin.slick.carousel.css.header.color}; font-size: {$plugin.slick.carousel.css.header.font-size}; font-weight: {$plugin.slick.carousel.css.header.font-weight}; } /* color */ .slick-slider .slick-next:before, .slick-slider .slick-prev:before { color: {$plugin.slick.carousel.css.colors.arrows}; } .slick-slider .slick-dots li button:before { color: {$plugin.slick.carousel.css.colors.dots.default}; } .slick-slider .slick-dots li.slick-active button:before { color: {$plugin.slick.carousel.css.colors.dots.active}; } .slick-slider .slick-next:before, .slick-slider .slick-prev:before { color: {$plugin.slick.carousel.css.colors.arrows}; } .slick-slider .slick-dots li button:before { color: {$plugin.slick.carousel.css.colors.dots.default}; } .slick-slider .slick-dots li.slick-active button:before { color: {$plugin.slick.carousel.css.colors.dots.active}; } /* position */ .slick-dots { bottom: {$plugin.slick.carousel.css.position.dots.bottom}; margin-left:0; margin-right:0; }')), 'jsFooterInline.' => array('FILECONTENT', '161113.' => array('file' => 'EXT:content_animations/Resources/Public/JavaScript/Vendor/AOS/aos-3.0.0-beta-6.min.js'), 'TEXT', '161114.' => array('value' => 'AOS.init();'), 'COA', '60900.' => array('DEV9' => 'TEXT', 'DEV9.' => array('value' => 'XXX', 'wrap' => 'alert(\'|\');'), 'TEXT', '10.' => array('value' => ' var typeOfSlickUids = typeof slickUids; if( typeOfSlickUids != \'undefined\' ) { if(Array.isArray(slickUids)){ $(document).ready(function () { for (var i = 0; i < slickUids.length; i++) { var boolSlickRandomizeX = eval("boolSlickRandomize" + slickUids[i]); //alert(boolSlickRandomizeX); if( boolSlickRandomizeX == true ) { $(\'#slickid-\' + slickUids[i]).randomize(); } } }); } } $(document).ready(function () { if( (typeof obj === "object") && (obj !== null) ) { var sortedKeys = Object.keys(obj).sort(); //alert( sortedKeys[0] ); if(Array.isArray(sortedKeys)){ for (var i = 0; i < sortedKeys.length; i++) { obj[sortedKeys[i]](); } } } }); '))), 'cssInline' => '', 'jsFooterInline' => '', 'includeJSFooterlibs.' => array('video_shariff' => 'EXT:video_shariff/Resources/Public/JavaScript/VideoShariff.min.js')), '')
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 693
    {
        if (!is_array($setup)) {
            return '';
        }
        return implode('', $this->cObjGetSeparated($setup, $addKey));
    }

    /**
     * Rendering of a "numerical array" of cObjects from TypoScript
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('includeCSS.' => array('eventsAutoComplete' => 'EXT:events2/Resources/Public/Css/AutoComplete.min.css', 'eventsTooltip' => 'EXT:events2/Resources/Public/Css/Tooltip.css', 'fontawesome' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Fontawesome/fontawesome.css', 'fontawesomesolid' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Fontawesome/solid.css', 'general' => 'EXT:jwmusterprojekt11/Resources/Public/Css/style.css', 'mainmenu' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Smartmenu/sm-clean.css', 'megamenu' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Smartmenu/mega-menu.css', 'megamenu.' => array('if.' => array('value' => 'megamenu', 'equals' => 'standard')), 'fancybox' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Extensions/jquery.fancybox.css', 'videoshariff' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Extensions/videoshariff.css', 'news' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Extensions/news.css', 'modifications' => 'fileadmin/CSS-Modifications/modifications.css', 'styleguide' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Modules/styleguidemodules.css', 'styleguide.' => array('if.' => array('value' => 'pagets__styleguide', 'equals.' => array('data' => 'pagelayout'))), 'prism' => 'EXT:jwmusterprojekt11/Resources/Public/Css/Extensions/prismcoy.css', 'slickLibrary' => 'EXT:slick/Resources/Public/JavaScript/slick-1.9.0/slick/slick.min.css', 'slickTheme' => 'EXT:slick/Resources/Public/JavaScript/slick-1.9.0/slick/slick-theme.min.css', 'slickTheme.' => array('if' => '', 'if.' => array('isTrue' => '1')), 'slickDefault' => 'EXT:slick/Resources/Public/CSS/default.min.css', 'ce-timeline' => 'EXT:ce_timeline/Resources/Public/Css/light.css', 'video_shariff' => 'EXT:video_shariff/Resources/Public/Css/VideoShariff.min.css'), 'includeJSFooter.' => array('events2AutoComplete' => 'EXT:events2/Resources/Public/JavaScript/AutoComplete.min.js', 'events2Litepicker' => 'EXT:events2/Resources/Public/JavaScript/LitePicker.js', 'events2' => 'EXT:events2/Resources/Public/JavaScript/Events2.js', 'events2Calendar' => 'EXT:events2/Resources/Public/JavaScript/Calendar.js', 'smartMenu' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/Smartmenu/jquery.smartmenus.min.js', 'smartMenu.' => array('disableCompression' => '1'), 'initMoreSmartMenu' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/Smartmenu/initMoreSmartMenu.js', 'initMoreSmartMenu.' => array('if.' => array('isFalse' => '0', 'value' => 'standard', 'equals' => 'standard')), 'initSmartMenu' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/Smartmenu/initSmartMenu.js', 'fancyBox' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/jquery.fancybox.min.js', 'fancyBox.' => array('disableCompression' => '1'), 'toggleContent' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/contentToggle.js', 'klaro' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/Klaro/klaro.js', 'klaro.' => array('if.' => array('value' => '1', 'equals' => '1')), 'custom' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/custom.js', 'prism' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/prism.js', 'prism.' => array('excludeFromConcatenation' => '1'), 'prismts' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/prism-typoscript.js', 'prismts.' => array('excludeFromConcatenation' => '1'), 'slick' => 'EXT:slick/Resources/Public/JavaScript/slick-1.9.0/slick/slick.min.js', 'slickRandomize' => 'EXT:slick/Resources/Public/JavaScript/randomize.js'), 'meta.' => array('viewport' => 'width=device-width,initial-scale=1', 'msapplication-config' => 'none', 'msapplication-TileColor' => '#ffffff', 'msapplication-tooltip' => 'Martin-Schleyer-Gymnasium', 'application-name' => 'Martin-Schleyer-Gymnasium', 'theme-color' => '#ffffff'), 'headerData.' => array('COA', '2347.' => array('IMAGE', '10.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '60', 'height' => '60'), 'layoutKey' => 'apple-touch-icon', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '20.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '76', 'height' => '76'), 'layoutKey' => 'apple-touch-icon-with-sizes', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '30.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '120', 'height' => '120'), 'layoutKey' => 'apple-touch-icon-with-sizes', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '40.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '152', 'height' => '152'), 'layoutKey' => 'apple-touch-icon-with-sizes', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '110.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '144', 'height' => '144'), 'layoutKey' => 'msapplication-TileImage', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '120.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '70', 'height' => '70'), 'layoutKey' => 'msapplication-square', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '130.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '150', 'height' => '150'), 'layoutKey' => 'msapplication-square', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '140.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'file.' => array('width' => '310', 'height' => '310'), 'layoutKey' => 'msapplication-square', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))), 'IMAGE', '150.' => array('file' => 'fileadmin/user_upload/LOGO_MSG/favicon_lang.png', 'file.' => array('width' => '310', 'height' => '150c'), 'layoutKey' => 'msapplication-wide', 'layout.' => array('apple-touch-icon.' => array('element' => '<link rel="apple-touch-icon" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'apple-touch-icon-with-sizes.' => array('element' => '<link rel="apple-touch-icon" sizes="###WIDTH###x###HEIGHT###" href="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-TileImage.' => array('element' => '<meta name="msapplication-TileImage" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-square.' => array('element' => '<meta name="msapplication-square###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'), 'msapplication-wide.' => array('element' => '<meta name="msapplication-wide###WIDTH###x###HEIGHT###logo" content="###SRC###"###SELFCLOSINGTAGSLASH###>'))))), 'shortcutIcon' => 'fileadmin/user_upload/LOGO_MSG/favicon.png', 'includeJSLibs.' => array('jquery' => 'EXT:jwmusterprojekt11/Resources/Public/JavaScript/Lib/jquery-3.5.1.min.js', 'jquery.' => array('forceOnTop' => '1', 'disableCompression' => '1', 'excludeFromConcatenation' => '1', 'allWrap' => '<!--[if lte IE 8]><script src="EXT:jwmusterprojekt11/Resources/Public/JavaScript/Lib/jquery-1.12.4.min.js"></script><![endif]--><!--[if gt IE 8]><!-->|<!--<![endif]-->')), 'FLUIDTEMPLATE', '10.' => array('partialRootPath' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Partials', 'layoutRootPath' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Layouts', 'file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'pagelayout'), 'pagets__standard' => 'TEXT', 'pagets__standard.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Standard.html'), 'pagets__1col' => 'TEXT', 'pagets__1col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Onecol.html'), 'pagets__2col' => 'TEXT', 'pagets__2col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Twocol.html'), 'pagets__3col' => 'TEXT', 'pagets__3col.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Threecol.html'), 'pagets__styleguide' => 'TEXT', 'pagets__styleguide.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Styleguide.html'), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:jwmusterprojekt11/Resources/Private/Page/Templates/Standard.html')))), 'variables.' => array('content5' => 'CONTENT', 'content5.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 5')), 'content0' => 'CONTENT', 'content0.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0'), 'stdWrap.' => array('ifEmpty.' => array('stdWrap.' => array('wrap' => '&nbsp;')))), 'content1' => 'CONTENT', 'content1.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 1')), 'content2' => 'CONTENT', 'content2.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 2')), 'content3' => 'CONTENT', 'content3.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 3')), 'content4' => 'CONTENT', 'content4.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 4')), 'content10' => 'CONTENT', 'content10.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 10', 'pidInList' => '232')), 'content11' => 'CONTENT', 'content11.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 11', 'pidInList' => '232')), 'content12' => 'CONTENT', 'content12.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 12', 'pidInList' => '232')), 'menuType' => 'TEXT', 'menuType.' => array('value' => '0'), 'menuTheme' => 'TEXT', 'menuTheme.' => array('value' => 'standard'), 'showLang' => 'TEXT', 'showLang.' => array('value' => '0'), 'footerBackendLayout' => 'TEXT', 'footerBackendLayout.' => array('data' => 'DB:pages:232:backend_layout')), 'settings.' => array('showRootline' => '1', 'showSearch' => '1', 'logoFile' => 'EXT:jwmusterprojekt11/Resources/Public/Images/logo.png', 'logoWidth' => '215', 'logoAltText' => 'Martin-Schleyer-Gymnasium', 'logoLinkParameter' => '1', 'logoLinkTitle' => 'Martin-Schleyer-Gymnasium', 'imgMaxWidth' => '1280', 'useRss' => '0', 'showKlaro' => '1', 'mustConsent' => '1', 'privacyPolicy' => '62', 'useMatomo' => '', 'useGA' => '', 'gaPath' => '/', 'gaDomain' => 'domain.tld', 'fbp' => '', 'useTwitter' => '', 'externalMedia' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '10.' => array('languages' => 'auto', 'as' => 'languageMenu'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'menuMain', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'menuMeta', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image'))), 'maxItems' => '8'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('levels' => '1', 'special' => 'directory', 'special.' => array('value' => '2'), 'as' => 'menuServiceFooter'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('as' => 'rootline', 'includeNotInMenu' => '1', 'excludeUidList' => '4', 'entryLevel' => '1', 'special' => 'rootline', 'special.' => array('range' => '0|-1')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('levels' => '3', 'includeSpacer' => '0', 'as' => 'verticalMenu1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_image'))), 'entryLevel' => '1'), 'GeorgRinger\\News\\DataProcessing\\AddNewsToMenuProcessor', '900.' => array('menus' => 'rootline'))), 'cssInline.' => array('FILECONTENT', '161113.' => array('file' => 'EXT:content_animations/Resources/Public/JavaScript/Vendor/AOS/aos.css'), 'TEXT', '62478.' => array('value' => ' .{$plugin.slick.carousel.css.class}{ margin:{$plugin.slick.carousel.css.margins.item}; } .slick-header { bottom: {$plugin.slick.carousel.css.header.bottom}; top: {$plugin.slick.carousel.css.header.top}; } .slick-text { bottom: {$plugin.slick.carousel.css.text.bottom}; top: {$plugin.slick.carousel.css.text.top}; } .slick-header .span { background-color: {$plugin.slick.carousel.css.header.background-color}; color: {$plugin.slick.carousel.css.header.color}; font-size: {$plugin.slick.carousel.css.header.font-size}; font-weight: {$plugin.slick.carousel.css.header.font-weight}; } /* color */ .slick-slider .slick-next:before, .slick-slider .slick-prev:before { color: {$plugin.slick.carousel.css.colors.arrows}; } .slick-slider .slick-dots li button:before { color: {$plugin.slick.carousel.css.colors.dots.default}; } .slick-slider .slick-dots li.slick-active button:before { color: {$plugin.slick.carousel.css.colors.dots.active}; } .slick-slider .slick-next:before, .slick-slider .slick-prev:before { color: {$plugin.slick.carousel.css.colors.arrows}; } .slick-slider .slick-dots li button:before { color: {$plugin.slick.carousel.css.colors.dots.default}; } .slick-slider .slick-dots li.slick-active button:before { color: {$plugin.slick.carousel.css.colors.dots.active}; } /* position */ .slick-dots { bottom: {$plugin.slick.carousel.css.position.dots.bottom}; margin-left:0; margin-right:0; }')), 'jsFooterInline.' => array('FILECONTENT', '161113.' => array('file' => 'EXT:content_animations/Resources/Public/JavaScript/Vendor/AOS/aos-3.0.0-beta-6.min.js'), 'TEXT', '161114.' => array('value' => 'AOS.init();'), 'COA', '60900.' => array('DEV9' => 'TEXT', 'DEV9.' => array('value' => 'XXX', 'wrap' => 'alert(\'|\');'), 'TEXT', '10.' => array('value' => ' var typeOfSlickUids = typeof slickUids; if( typeOfSlickUids != \'undefined\' ) { if(Array.isArray(slickUids)){ $(document).ready(function () { for (var i = 0; i < slickUids.length; i++) { var boolSlickRandomizeX = eval("boolSlickRandomize" + slickUids[i]); //alert(boolSlickRandomizeX); if( boolSlickRandomizeX == true ) { $(\'#slickid-\' + slickUids[i]).randomize(); } } }); } } $(document).ready(function () { if( (typeof obj === "object") && (obj !== null) ) { var sortedKeys = Object.keys(obj).sort(); //alert( sortedKeys[0] ); if(Array.isArray(sortedKeys)){ for (var i = 0; i < sortedKeys.length; i++) { obj[sortedKeys[i]](); } } } }); '))), 'cssInline' => '', 'jsFooterInline' => '', 'includeJSFooterlibs.' => array('video_shariff' => 'EXT:video_shariff/Resources/Public/JavaScript/VideoShariff.min.js')))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 223
     * @return string
     */
    protected function generatePageBodyContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageBodyContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 189
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 141
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push($controller->sPre, 'PAGE');

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

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

at TYPO3\CMS\Frontend\Http\RequestHandler->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Middleware/ResponsePropagation.php line 34
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        try {
            $response = $handler->handle($request);
        } catch (PropagateResponseException $e) {
            $response = $e->getResponse();
        }

at TYPO3\CMS\Core\Middleware\ResponsePropagation->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/typo3conf/ext/events2/Classes/Middleware/GetUriForDayMiddleware.php line 47

    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        if ($request->getHeader('ext-events2') !== ['getUriForDay']) {
            return $handler->handle($request);
        }

        $startDate = $this->getStartDateFromRequest($request);
        if ($startDate === null) {
at JWeiland\Events2\Middleware\GetUriForDayMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/typo3conf/ext/events2/Classes/Middleware/GetSubCategoriesMiddleware.php line 42

    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        if ($request->getHeader('ext-events2') !== ['getSubCategories']) {
            return $handler->handle($request);
        }

        $categoryUid = (int)($request->getQueryParams()['events2Category'] ?? 0);
        if ($categoryUid === 0) {
at JWeiland\Events2\Middleware\GetSubCategoriesMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/typo3conf/ext/events2/Classes/Middleware/GetLocationsMiddleware.php line 41

    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        if ($request->getHeader('ext-events2') !== ['getLocations']) {
            return $handler->handle($request);
        }

        // Hint: search may fail with "&" in $search
        $search = trim(htmlspecialchars(strip_tags(
at JWeiland\Events2\Middleware\GetLocationsMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/typo3conf/ext/events2/Classes/Middleware/GetDaysForMonthMiddleware.php line 65

    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        if ($request->getHeader('ext-events2') !== ['getDaysForMonth']) {
            return $handler->handle($request);
        }

        $getParameters = $request->getQueryParams();

at JWeiland\Events2\Middleware\GetDaysForMonthMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 48
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/typo3conf/ext/view_statistics/Classes/Middleware/CheckDataSubmissionMiddleware.php line 141
        } else {
            // Track page view
            $this->trackPageview($fields, $extensionConfiguration);
        }
        return $handler->handle($request);
    }

    /**
     * @return array
at CodingMs\ViewStatistics\Middleware\CheckDataSubmissionMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if ($GLOBALS['TSFE'] instanceof TypoScriptFrontendController) {
            if (
                (!isset($GLOBALS['TSFE']->config['config']['enableContentLengthHeader']) || $GLOBALS['TSFE']->config['config']['enableContentLengthHeader'])
                && !$GLOBALS['TSFE']->isBackendUserLoggedIn() && !($GLOBALS['TYPO3_CONF_VARS']['FE']['debug'] ?? false)
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 79
                );
            }
        }

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

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 78
                $this->convertCharsetRecursivelyToUtf8($parsedBody, $controller->metaCharset);
                $request = $request->withParsedBody($parsedBody);
            }
        }
        $response = $handler->handle($request);

        /**
         * Release TSFE locks. They have been acquired in the above call to controller->getFromCache().
         * TSFE locks are usually released by the RequestHandler 'final' middleware.
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 104
        // Make TSFE globally available
        // @todo deprecate $GLOBALS['TSFE'] once TSFE is retrieved from the
        //       PSR-7 request attribute frontend.controller throughout TYPO3 core
        $GLOBALS['TSFE'] = $controller;
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/typo3conf/ext/yoast_seo/Classes/Middleware/PageRequestMiddleware.php line 32
        if (YoastRequestHash::isValid($request->getServerParams())) {
            $context = GeneralUtility::makeInstance(Context::class);
            $context->setAspect('visibility', new VisibilityAspect(true));
        }
        return $handler->handle($request);
    }
}
at YoastSeoForTypo3\YoastSeo\Middleware\PageRequestMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 132
            }
        }

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

    /**
     * Filters out the arguments that are necessary for calculating cHash
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/PreviewSimulator.php line 66
            $previewAspect = GeneralUtility::makeInstance(PreviewAspect::class, $isPreview);
            $this->context->setAspect('frontend.preview', $previewAspect);
        }

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

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 106
        // merge the PageArguments with the request query parameters
        $queryParams = array_replace_recursive($request->getQueryParams(), $pageArguments->getArguments());
        $request = $request->withQueryParams($queryParams);

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 80

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

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 94
                $uri = $requestedUri->withPath(rtrim($requestedUri->getPath(), '/'));
                return new RedirectResponse($uri, 307);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 89
                return $response;
            }
        }

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

    protected function buildRedirectResponse(UriInterface $uri, array $redirectRecord): ResponseInterface
    {
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 97
        if ($this->context->getAspect('frontend.user')->isLoggedIn() && $rateLimiter) {
            $rateLimiter->reset();
        }

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

        // Store session data for fe_users if it still exists
        if ($frontendUser instanceof FrontendUserAuthentication) {
            $frontendUser->storeSessionData();
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 78
            Bootstrap::loadExtTables();
            $this->setBackendUserAspect($GLOBALS['BE_USER']);
        }

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

        // If, when building the response, the user is still available, then ensure that the headers are sent properly
        if ($this->context->getAspect('backend.user')->isLoggedIn()) {
            return $this->applyHeadersToResponse($response);
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 55
        ) {
            return GeneralUtility::makeInstance(ErrorController::class)->unavailableAction($request, 'This page is temporarily unavailable.');
        }
        // Continue the regular stack if no maintenance mode is active
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\MaintenanceMode->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 65
        $request = $request->withAttribute('routing', $routeResult);
        if ($routeResult->getLanguage() instanceof SiteLanguage) {
            Locales::setSystemLocaleFromSiteLanguage($routeResult->getLanguage());
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 64
    {
        $eID = $request->getParsedBody()['eID'] ?? $request->getQueryParams()['eID'] ?? null;

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

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 45
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $request = $request->withAttribute('normalizedParams', NormalizedParams::createFromRequest($request));
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Middleware/VerifyHostHeader.php line 55
                1396795884
            );
        }

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

    /**
     * Checks if the provided host header value matches the trusted hosts pattern.
at TYPO3\CMS\Core\Middleware\VerifyHostHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 58
        $this->timeTracker->setEnabled($timeTrackingEnabled);
        $this->timeTracker->start(microtime(true));
        $this->timeTracker->push('');

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

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1ff->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 78
     * @return ResponseInterface
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

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

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

    /**
     * Create a PSR-7 Response that redirects to the install tool
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/typo3/sysext/core/Classes/Http/AbstractApplication.php line 100
     * @param callable $execute Deprecated, will be removed in TYPO3 v12.0
     */
    final public function run(callable $execute = null)
    {
        $response = $this->handle(ServerRequestFactory::fromGlobals());
        if ($execute !== null) {
            trigger_error('Custom execution of Application code will be removed in TYPO3 v12.0, use PSR-15 Middlewares instead.', E_USER_DEPRECATED);
            $execute();
        }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/index.php line 20
// Set up the application for the frontend
call_user_func(static 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 /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/index.php line 21
call_user_func(static 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 require('/var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/typo3_src-11.5.33/index.php')
in /var/www/vhosts/900907.jweiland-hosting.de/httpdocs/typo3cms/muster/index.php line 3
<?php

require __DIR__ . '/typo3_src/index.php';