Whoops, looks like something went wrong.

Get help in the TYPO3 Documentation

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

Find a solution for this exception in the TYPO3 Documentation.

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

Object of type Lns\LnsAuthor\Domain\Model\Author with identity "376" not found.

in /var/www/vhosts/baek/web/typo3/sysext/extbase/Classes/Property/TypeConverter/PersistentObjectConverter.php line 237
            throw new InvalidSourceException('The identity property "' . $identity . '" is no UID.', 1297931020);
        }

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

        return $object;
    }
at TYPO3\CMS\Extbase\Property\TypeConverter\PersistentObjectConverter->fetchObjectFromPersistence('376', 'Lns\\LnsAuthor\\Domain\\Model\\Author')
in /var/www/vhosts/baek/web/typo3/sysext/extbase/Classes/Property/TypeConverter/PersistentObjectConverter.php line 168
        } elseif (is_string($source) || is_int($source)) {
            if (empty($source)) {
                return null;
            }
            $object = $this->fetchObjectFromPersistence($source, $targetType);
        } else {
            // todo: this case is impossible as this converter is never called with a source that is not an integer, a string or an array
            throw new \InvalidArgumentException('Only integers, strings and arrays are accepted.', 1305630314);
        }
at TYPO3\CMS\Extbase\Property\TypeConverter\PersistentObjectConverter->convertFrom('376', 'Lns\\LnsAuthor\\Domain\\Model\\Author', array(), object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration))
in /var/www/vhosts/baek/web/typo3/sysext/extbase/Classes/Property/PropertyMapper.php line 204
            if (!($targetPropertyValue instanceof Error)) {
                $convertedChildProperties[$targetPropertyName] = $targetPropertyValue;
            }
        }
        $result = $typeConverter->convertFrom($source, $targetType, $convertedChildProperties, $configuration);

        if ($result instanceof Error) {
            $this->messages->forProperty(implode('.', $currentPropertyPath))->addError($result);
        }
at TYPO3\CMS\Extbase\Property\PropertyMapper->doMapping('376', 'Lns\\LnsAuthor\\Domain\\Model\\Author', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration), array())
in /var/www/vhosts/baek/web/typo3/sysext/extbase/Classes/Property/PropertyMapper.php line 113
            $configuration = $this->configurationBuilder->build();
        }
        $currentPropertyPath = [];
        try {
            $result = $this->doMapping($source, $targetType, $configuration, $currentPropertyPath);
            if ($result instanceof Error) {
                return null;
            }

at TYPO3\CMS\Extbase\Property\PropertyMapper->convert('376', 'Lns\\LnsAuthor\\Domain\\Model\\Author', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration))
in /var/www/vhosts/baek/web/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 1070
            $argument->setValue(
                $this->propertyMapper->convert(
                    $rawValue,
                    $dataType,
                    $argument->getPropertyMappingConfiguration()
                )
            );
        } catch (TargetNotFoundException $e) {
            // for optional arguments no exception is thrown.
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->setArgumentValue(object(TYPO3\CMS\Extbase\Mvc\Controller\Argument), '376')
in /var/www/vhosts/baek/web/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 1042
        /** @var Argument $argument */
        foreach ($this->arguments as $argument) {
            $argumentName = $argument->getName();
            if ($this->request->hasArgument($argumentName)) {
                $this->setArgumentValue($argument, $this->request->getArgument($argumentName));
            } elseif ($argument->isRequired()) {
                throw new RequiredArgumentMissingException('Required argument "' . $argumentName . '" is not set for ' . $this->request->getControllerObjectName() . '->' . $this->request->getControllerActionName() . '.', 1298012500);
            }
        }
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->mapRequestArgumentsToControllerArguments()
in /var/www/vhosts/baek/web/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 481
        $callable = [$this, $actionInitializationMethodName];
        if (is_callable($callable)) {
            $callable();
        }
        $this->mapRequestArgumentsToControllerArguments();
        // @deprecated since v11, will be removed with v12.
        $this->controllerContext = $this->buildControllerContext();
        $this->view = $this->resolveView();
        if ($this->view !== null && method_exists($this, 'initializeView')) {
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Request))
in /var/www/vhosts/baek/web/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/baek/web/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/baek/web/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/baek/web/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' => 'LnsAuthor', 'pluginName' => 'AuthorShow'), object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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' => 'LnsAuthor', 'pluginName' => 'AuthorShow'), '')
in /var/www/vhosts/baek/web/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' => 'LnsAuthor', 'pluginName' => 'AuthorShow'))
in /var/www/vhosts/baek/web/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' => 'LnsAuthor', 'pluginName' => 'AuthorShow'))
in /var/www/vhosts/baek/web/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' => 'LnsAuthor', 'pluginName' => 'AuthorShow'), 'tt_content.lnsauthor_authorshow.20')
in /var/www/vhosts/baek/web/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('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'AuthorShow')), 'tt_content.lnsauthor_authorshow.20', '20')
in /var/www/vhosts/baek/web/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' => 16349, 'rowDescription' => '', 'pid' => 7022, 'tstamp' => 1665143706, 'crdate' => 1655888628, 'cruser_id' => 4, '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' => '{"hidden":""}', 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 'CType' => 'lnsauthor_authorshow', 'header' => '', 'header_position' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 17, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => '0', 'frame_class' => 'default', 'cols' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => null, 'pages' => null, 'colPos' => 0, 'subheader' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '0', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, '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="sDEF"> <language index="lDEF"> <field index="settings.layout"> <value index="vDEF">1</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, 'container_classes' => '', 'container_width' => '', 'container_visibility' => '', 'container_margin' => 'default-margin', 'container_equalheight' => 0, 'image_focuspoint' => 0, 'tx_lns_widgets_showasgallery' => 0, 'tx_container_parent' => 0, 'tx_lnscewidgets_item_content_parent' => 0, 'tx_lnscewidgets_items' => 0, 'tx_lnscewidgets_heightstyle' => null, 'tx_lnscewidgets_collapsible' => null, 'tx_lnscewidgets_leaveallitemsclosed' => null, 'tx_lnscewidgets_singlepagemode' => null, 'tx_lnscewidgets_animation' => null, 'tx_lnscewidgets_animationloop' => 0, 'tx_lnscewidgets_controlnav' => null, 'tx_lnscewidgets_showdirectionnav' => null, 'tx_lnscewidgets_slidertype' => null, 'tx_lnscewidgets_slideshow' => 0, 'tx_lnscewidgets_slideshowspeed' => null, 'tx_mask_basebuttons_repeat' => 0, 'tx_lnsgadgets_item_content_parent' => 0, 'tx_lnsgadgets_items' => 0, 'tx_lnsgadgets_select_multiselect' => 0, 'tx_lnsgadgets_rendertype' => '', 'tx_lnsgadgets_autostart' => '', 'tx_lnsgadgets_showdirectionnav' => 'arrows', 'tx_lnsgadgets_slideshowspeed' => 5000, 'tx_lnsgadgets_stop' => 'off', 'tx_lnsgadgets_thumbs' => 'bubbles', 'tx_lnsgadgets_tabheightstyle' => 'height-style-auto', 'lns_sitepackage_showasgallery' => 0, 'tx_lnsgadgets_fullwidth' => 0, 'tx_lnsgadgets_animation' => 'slide', 'lns_import_info' => null, 'import_id' => '', 'import_source' => '', 'tx_mask_baek_heroimage_content_content' => 0, 'tx_mask_baek_heroimage_content_content_parent' => 0, 'tx_lnsgadgets_show_filter' => 0, 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'gridelements_shortcut_page_order_by' => 0, 'tx_mask_repeat_buttons' => 0, 'tx_mask_test' => '', 'tx_mask_test2' => null, 'tx_mask_themeboxes_repeat' => 0, 'tx_mask_themeboxes_repeat_appearance' => '', 'tx_mask_basebuttons_select_orientation' => '', 'tx_mask_content' => 0, 'tx_mask_content_parent' => 0, 'tx_mask_headline' => '', 'tx_mask_themebox_scrollable_file_backgroundimage' => 0, 'tx_mask_themebox_scrollable_file_image' => 0, 'tx_mask_themebox_scrollable_repeat_boxes' => 0, 'tx_mask_topiclist_repeat' => 0, 'tx_mask_topiclist_select_appearance' => '', 'tx_mask_topiclist_checkbox_showfigcaption' => 0, 'tx_mask_textmediacard_checkbox_visibility' => 1, 'tx_mask_textmediacard_file_image' => 0, 'tx_mask_textmediacard_repeat_buttons' => 0, 'tx_mask_textmediacard_select_headlinetype' => '', 'tx_mask_parallaximagebox_content' => 0, 'tx_mask_parallaximagebox_content_parent' => 0, 'tx_mask_parallaximagebox_file_image' => 0, 'tx_mask_parallaximagebox_link_link' => '', 'tx_mask_parallaximagebox_text_linktext' => null, 'tx_mask_baek_keywordsuggestions_repeat_searchwords' => 0, 'lns_foreign_id' => '', 'lns_import_date' => 0, 'lns_import_source' => '', 'tx_mask_akdae_eventitem' => 0, 'tx_mask_akdae_eventitem_style' => '', 'tx_mask_baek_heroimagefullwidth_file_image' => 0), 'typoscriptObjectPath' => 'tt_content.lnsauthor_authorshow.20', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/baek/var/cache/code/fluid_template/Standard_action_generic_a95e00dc6c158526afa986155a16986863c82f82.php line 164
$arguments8['typoscriptObjectPath'] = $output10;
$array12 = array (
);$arguments8['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array12);
$arguments8['table'] = 'tt_content';
$renderChildrenClosure9 = ($arguments8['data'] !== null) ? function() use ($arguments8) { return $arguments8['data']; } : $renderChildrenClosure9;return TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments8, $renderChildrenClosure9, $renderingContext);
};

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

at Standard_action_generic_a95e00dc6c158526afa986155a16986863c82f82->{closure}()
in /var/www/vhosts/baek/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 137
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            }
            if ($conditionClosures[$elseNodeIndex]()) {
                return $elseNodeClosure();
            }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/baek/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 83
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/baek/var/cache/code/fluid_template/Standard_action_generic_a95e00dc6c158526afa986155a16986863c82f82.php line 167
$arguments8['table'] = 'tt_content';
$renderChildrenClosure9 = ($arguments8['data'] !== null) ? function() use ($arguments8) { return $arguments8['data']; } : $renderChildrenClosure9;return TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments8, $renderChildrenClosure9, $renderingContext);
};

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

$output0 .= '

';
at Standard_action_generic_a95e00dc6c158526afa986155a16986863c82f82->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/baek/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/baek/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 172
            $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/baek/var/cache/code/fluid_template/layout_Default_html_714fe727dd5676fbce0ad720f6132b5a893ad84a.php line 2304
     ),
     $renderingContext
    );

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

$output6 .= '
    ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_714fe727dd5676fbce0ad720f6132b5a893ad84a->{closure}()
in /var/www/vhosts/baek/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/baek/var/cache/code/fluid_template/layout_Default_html_714fe727dd5676fbce0ad720f6132b5a893ad84a.php line 2983
  ';
return $output204;
};

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

$output3 .= '
';
return $output3;
at layout_Default_html_714fe727dd5676fbce0ad720f6132b5a893ad84a->{closure}()
in /var/www/vhosts/baek/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/baek/var/cache/code/fluid_template/layout_Default_html_714fe727dd5676fbce0ad720f6132b5a893ad84a.php line 2991
return $output3;
};
$arguments1 = array();

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

$output0 .= '


at layout_Default_html_714fe727dd5676fbce0ad720f6132b5a893ad84a->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/baek/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/baek/web/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/baek/web/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' => 'Generic', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'EXT:lns_cookiebot/Resources/Private/Fluid_styled_content/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/fluid_styled_content/Templates/', 'EXT:lns_theme_akdae/Resources/Private/Extensions/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/fluid_styled_content/Partials/', 'EXT:lns_theme_akdae/Resources/Private/Extensions/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/fluid_styled_content/Layouts/', 'EXT:lns_theme_akdae/Resources/Private/Extensions/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-type="lightbox"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'AuthorShow')))
in /var/www/vhosts/baek/web/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(MASK\Mask\Fluid\FluidTemplateContentObject), array('templateName' => 'Generic', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'EXT:lns_cookiebot/Resources/Private/Fluid_styled_content/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/fluid_styled_content/Templates/', 'EXT:lns_theme_akdae/Resources/Private/Extensions/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/fluid_styled_content/Partials/', 'EXT:lns_theme_akdae/Resources/Private/Extensions/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/fluid_styled_content/Layouts/', 'EXT:lns_theme_akdae/Resources/Private/Extensions/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-type="lightbox"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'AuthorShow')))
in /var/www/vhosts/baek/web/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' => 'Generic', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'EXT:lns_cookiebot/Resources/Private/Fluid_styled_content/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/fluid_styled_content/Templates/', 'EXT:lns_theme_akdae/Resources/Private/Extensions/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/fluid_styled_content/Partials/', 'EXT:lns_theme_akdae/Resources/Private/Extensions/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/fluid_styled_content/Layouts/', 'EXT:lns_theme_akdae/Resources/Private/Extensions/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-type="lightbox"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'AuthorShow')), 'lib.contentElement')
in /var/www/vhosts/baek/web/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' => 'Generic', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'EXT:lns_cookiebot/Resources/Private/Fluid_styled_content/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/fluid_styled_content/Templates/', 'EXT:lns_theme_akdae/Resources/Private/Extensions/fluid_styled_content/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/fluid_styled_content/Partials/', 'EXT:lns_theme_akdae/Resources/Private/Extensions/fluid_styled_content/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/fluid_styled_content/Layouts/', 'EXT:lns_theme_akdae/Resources/Private/Extensions/fluid_styled_content/Layouts/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'data-type="lightbox"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'AuthorShow')), 'lnsauthor_authorshow')
in /var/www/vhosts/baek/web/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')), 'mask_akdae_event_item' => '< lib.maskContentElement', 'mask_akdae_event_item.' => array('templateName' => 'AkdaeEventItem'), 'mask_baek_themeboxes' => '< lib.maskContentElement', 'mask_baek_themeboxes.' => array('templateName' => 'BaekThemeboxes'), 'mask_basebuttons' => '< lib.maskContentElement', 'mask_basebuttons.' => array('templateName' => 'Basebuttons'), 'mask_baek_heroimage' => '< lib.maskContentElement', 'mask_baek_heroimage.' => array('templateName' => 'BaekHeroimage'), 'mask_themebox_scrollable' => '< lib.maskContentElement', 'mask_themebox_scrollable.' => array('templateName' => 'ThemeboxScrollable'), 'mask_baek_topiclist' => '< lib.maskContentElement', 'mask_baek_topiclist.' => array('templateName' => 'BaekTopiclist'), 'mask_baek_textmediacard' => '< lib.maskContentElement', 'mask_baek_textmediacard.' => array('templateName' => 'BaekTextmediacard'), 'mask_baek_parallaximagebox' => '< lib.maskContentElement', 'mask_baek_parallaximagebox.' => array('templateName' => 'BaekParallaximagebox'), 'mask_baek_keywordsuggestions' => '< lib.maskContentElement', 'mask_baek_keywordsuggestions.' => array('templateName' => 'BaekKeywordsuggestions'), 'mask_baek_heroimagefullwidth' => '< lib.maskContentElement', 'mask_baek_heroimagefullwidth.' => array('templateName' => 'BaekHeroimagefullwidth'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000c', 'maxGalleryWidthInText' => '2000c', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'lnsauthor_lnsauthor' => 'USER', 'lnsauthor_lnsauthor.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'LnsAuthor'), 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000c', 'maxGalleryWidthInText' => '2000c', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000c', 'maxGalleryWidthInText' => '2000c', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => '{#tt_content}.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => '{#sys_category_record_mm} ON uid = {#sys_category_record_mm}.{#uid_foreign} AND {#sys_category_record_mm}.{#uid_local} IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => '{#tablenames}=\'tt_content\' and {#fieldname}=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), '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')), 'lnsissuearchive_issuelist' => '< lib.contentElement', 'lnsissuearchive_issuelist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Issuelist')), 'lnsissuearchive_issueshow' => '< lib.contentElement', 'lnsissuearchive_issueshow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Issueshow')), 'lnsissuearchive_articlelist' => '< lib.contentElement', 'lnsissuearchive_articlelist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Articlelist')), 'lnsissuearchive_articleshow' => '< lib.contentElement', 'lnsissuearchive_articleshow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Articleshow')), 'lnsauthor_authorlist' => '< lib.contentElement', 'lnsauthor_authorlist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'AuthorList')), 'lnsauthor_authorshow' => '< lib.contentElement', 'lnsauthor_authorshow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'AuthorShow')), 'lns-1col-container' => 'FLUIDTEMPLATE', 'lns-1col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '1')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lns-2col-container' => 'FLUIDTEMPLATE', 'lns-2col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '2')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'))), 'lns-3col-container' => 'FLUIDTEMPLATE', 'lns-3col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '3')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '230.' => array('colPos' => '230', 'as' => 'col3'))), 'lns-4col-container' => 'FLUIDTEMPLATE', 'lns-4col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '4')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '230.' => array('colPos' => '230', 'as' => 'col3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '240.' => array('colPos' => '240', 'as' => 'col4'))), 'lns-6col-container' => 'FLUIDTEMPLATE', 'lns-6col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '6')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '230.' => array('colPos' => '230', 'as' => 'col3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '240.' => array('colPos' => '240', 'as' => 'col4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '250.' => array('colPos' => '250', 'as' => 'col5'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '260.' => array('colPos' => '260', 'as' => 'col6'))), 'lns-floating-container' => 'FLUIDTEMPLATE', 'lns-floating-container.' => array('templateName' => 'FloatingContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_floating_container/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lns-floating-item' => 'FLUIDTEMPLATE', 'lns-floating-item.' => array('templateName' => 'FloatingItem', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_floating_container/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lns-floating-item-shortcut' => 'FLUIDTEMPLATE', 'lns-floating-item-shortcut.' => array('templateName' => 'FloatingItemShortcut', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_floating_container/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content')), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lnsgadgets_lnsgadgetsaccordion' => 'FLUIDTEMPLATE', 'lnsgadgets_lnsgadgetsaccordion.' => array('layoutRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Layouts/', '{$plugin.tx_lnsgadgets.view.layoutRootPath}', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_gadgets/Layouts/'), 'partialRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Partials/', '{$plugin.tx_lnsgadgets.view.partialRootPath}', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_gadgets/Partials/'), 'templateRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Templates/Content/', '{$plugin.tx_lnsgadgets.view.templateRootPath}', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_gadgets/Templates/'), 'templateName' => 'Lnsgadgetsaccordion', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_items')), 'table' => 'tx_lnsgadgets_items', 'pidInList.' => array('field' => 'pid'), 'where' => 'parentid=###uid### AND deleted=0 AND hidden=0', 'orderBy' => 'sorting', 'markers.' => array('uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_items', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_item_content')), 'table' => 'tt_content', 'pidInList.' => array('field' => 'pid'), 'where' => 'tx_lnsgadgets_item_content_parent=###uid### AND deleted=0 AND hidden=0 AND colPos=###colPos###', 'orderBy' => 'sorting', 'markers.' => array('colPos.' => array('value' => '999'), 'uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_item_content'))))), 'lnsgadgets_lnsgadgetsslider' => 'FLUIDTEMPLATE', 'lnsgadgets_lnsgadgetsslider.' => array('layoutRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Layouts/', '{$plugin.tx_lnsgadgets.view.layoutRootPath}'), 'partialRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Partials/', '{$plugin.tx_lnsgadgets.view.partialRootPath}'), 'templateRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Templates/Content/', '{$plugin.tx_lnsgadgets.view.templateRootPath}'), 'templateName' => 'Lnsgadgetsslider', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_items')), 'table' => 'tx_lnsgadgets_items', 'pidInList.' => array('field' => 'pid'), 'where' => 'parentid=###uid### AND deleted=0 AND hidden=0', 'orderBy' => 'sorting', 'markers.' => array('uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_items', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_item_content')), 'table' => 'tt_content', 'pidInList.' => array('field' => 'pid'), 'where' => 'tx_lnsgadgets_item_content_parent=###uid### AND deleted=0 AND hidden=0 AND colPos=###colPos###', 'orderBy' => 'sorting', 'markers.' => array('colPos.' => array('value' => '999'), 'uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_item_content'))))), 'lnsgadgets_lnsgadgetstabsheet' => 'FLUIDTEMPLATE', 'lnsgadgets_lnsgadgetstabsheet.' => array('layoutRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Layouts/', '{$plugin.tx_lnsgadgets.view.layoutRootPath}'), 'partialRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Partials/', '{$plugin.tx_lnsgadgets.view.partialRootPath}'), 'templateRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Templates/Content/', '{$plugin.tx_lnsgadgets.view.templateRootPath}'), 'templateName' => 'Lnsgadgetstabsheet', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_items')), 'table' => 'tx_lnsgadgets_items', 'pidInList.' => array('field' => 'pid'), 'where' => 'parentid=###uid### AND deleted=0 AND hidden=0', 'orderBy' => 'sorting', 'markers.' => array('uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_items', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_item_content')), 'table' => 'tt_content', 'pidInList.' => array('field' => 'pid'), 'where' => 'tx_lnsgadgets_item_content_parent=###uid### AND deleted=0 AND hidden=0 AND colPos=###colPos###', 'orderBy' => 'sorting', 'markers.' => array('colPos.' => array('value' => '999'), 'uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_item_content')))))))
in /var/www/vhosts/baek/web/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')), 'mask_akdae_event_item' => '< lib.maskContentElement', 'mask_akdae_event_item.' => array('templateName' => 'AkdaeEventItem'), 'mask_baek_themeboxes' => '< lib.maskContentElement', 'mask_baek_themeboxes.' => array('templateName' => 'BaekThemeboxes'), 'mask_basebuttons' => '< lib.maskContentElement', 'mask_basebuttons.' => array('templateName' => 'Basebuttons'), 'mask_baek_heroimage' => '< lib.maskContentElement', 'mask_baek_heroimage.' => array('templateName' => 'BaekHeroimage'), 'mask_themebox_scrollable' => '< lib.maskContentElement', 'mask_themebox_scrollable.' => array('templateName' => 'ThemeboxScrollable'), 'mask_baek_topiclist' => '< lib.maskContentElement', 'mask_baek_topiclist.' => array('templateName' => 'BaekTopiclist'), 'mask_baek_textmediacard' => '< lib.maskContentElement', 'mask_baek_textmediacard.' => array('templateName' => 'BaekTextmediacard'), 'mask_baek_parallaximagebox' => '< lib.maskContentElement', 'mask_baek_parallaximagebox.' => array('templateName' => 'BaekParallaximagebox'), 'mask_baek_keywordsuggestions' => '< lib.maskContentElement', 'mask_baek_keywordsuggestions.' => array('templateName' => 'BaekKeywordsuggestions'), 'mask_baek_heroimagefullwidth' => '< lib.maskContentElement', 'mask_baek_heroimagefullwidth.' => array('templateName' => 'BaekHeroimagefullwidth'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000c', 'maxGalleryWidthInText' => '2000c', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'lnsauthor_lnsauthor' => 'USER', 'lnsauthor_lnsauthor.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'LnsAuthor'), 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000c', 'maxGalleryWidthInText' => '2000c', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000c', 'maxGalleryWidthInText' => '2000c', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => '{#tt_content}.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => '{#sys_category_record_mm} ON uid = {#sys_category_record_mm}.{#uid_foreign} AND {#sys_category_record_mm}.{#uid_local} IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => '{#tablenames}=\'tt_content\' and {#fieldname}=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), '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')), 'lnsissuearchive_issuelist' => '< lib.contentElement', 'lnsissuearchive_issuelist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Issuelist')), 'lnsissuearchive_issueshow' => '< lib.contentElement', 'lnsissuearchive_issueshow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Issueshow')), 'lnsissuearchive_articlelist' => '< lib.contentElement', 'lnsissuearchive_articlelist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Articlelist')), 'lnsissuearchive_articleshow' => '< lib.contentElement', 'lnsissuearchive_articleshow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Articleshow')), 'lnsauthor_authorlist' => '< lib.contentElement', 'lnsauthor_authorlist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'AuthorList')), 'lnsauthor_authorshow' => '< lib.contentElement', 'lnsauthor_authorshow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'AuthorShow')), 'lns-1col-container' => 'FLUIDTEMPLATE', 'lns-1col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '1')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lns-2col-container' => 'FLUIDTEMPLATE', 'lns-2col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '2')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'))), 'lns-3col-container' => 'FLUIDTEMPLATE', 'lns-3col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '3')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '230.' => array('colPos' => '230', 'as' => 'col3'))), 'lns-4col-container' => 'FLUIDTEMPLATE', 'lns-4col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '4')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '230.' => array('colPos' => '230', 'as' => 'col3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '240.' => array('colPos' => '240', 'as' => 'col4'))), 'lns-6col-container' => 'FLUIDTEMPLATE', 'lns-6col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '6')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '230.' => array('colPos' => '230', 'as' => 'col3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '240.' => array('colPos' => '240', 'as' => 'col4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '250.' => array('colPos' => '250', 'as' => 'col5'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '260.' => array('colPos' => '260', 'as' => 'col6'))), 'lns-floating-container' => 'FLUIDTEMPLATE', 'lns-floating-container.' => array('templateName' => 'FloatingContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_floating_container/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lns-floating-item' => 'FLUIDTEMPLATE', 'lns-floating-item.' => array('templateName' => 'FloatingItem', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_floating_container/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lns-floating-item-shortcut' => 'FLUIDTEMPLATE', 'lns-floating-item-shortcut.' => array('templateName' => 'FloatingItemShortcut', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_floating_container/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content')), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lnsgadgets_lnsgadgetsaccordion' => 'FLUIDTEMPLATE', 'lnsgadgets_lnsgadgetsaccordion.' => array('layoutRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Layouts/', '{$plugin.tx_lnsgadgets.view.layoutRootPath}', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_gadgets/Layouts/'), 'partialRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Partials/', '{$plugin.tx_lnsgadgets.view.partialRootPath}', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_gadgets/Partials/'), 'templateRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Templates/Content/', '{$plugin.tx_lnsgadgets.view.templateRootPath}', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_gadgets/Templates/'), 'templateName' => 'Lnsgadgetsaccordion', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_items')), 'table' => 'tx_lnsgadgets_items', 'pidInList.' => array('field' => 'pid'), 'where' => 'parentid=###uid### AND deleted=0 AND hidden=0', 'orderBy' => 'sorting', 'markers.' => array('uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_items', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_item_content')), 'table' => 'tt_content', 'pidInList.' => array('field' => 'pid'), 'where' => 'tx_lnsgadgets_item_content_parent=###uid### AND deleted=0 AND hidden=0 AND colPos=###colPos###', 'orderBy' => 'sorting', 'markers.' => array('colPos.' => array('value' => '999'), 'uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_item_content'))))), 'lnsgadgets_lnsgadgetsslider' => 'FLUIDTEMPLATE', 'lnsgadgets_lnsgadgetsslider.' => array('layoutRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Layouts/', '{$plugin.tx_lnsgadgets.view.layoutRootPath}'), 'partialRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Partials/', '{$plugin.tx_lnsgadgets.view.partialRootPath}'), 'templateRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Templates/Content/', '{$plugin.tx_lnsgadgets.view.templateRootPath}'), 'templateName' => 'Lnsgadgetsslider', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_items')), 'table' => 'tx_lnsgadgets_items', 'pidInList.' => array('field' => 'pid'), 'where' => 'parentid=###uid### AND deleted=0 AND hidden=0', 'orderBy' => 'sorting', 'markers.' => array('uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_items', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_item_content')), 'table' => 'tt_content', 'pidInList.' => array('field' => 'pid'), 'where' => 'tx_lnsgadgets_item_content_parent=###uid### AND deleted=0 AND hidden=0 AND colPos=###colPos###', 'orderBy' => 'sorting', 'markers.' => array('colPos.' => array('value' => '999'), 'uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_item_content'))))), 'lnsgadgets_lnsgadgetstabsheet' => 'FLUIDTEMPLATE', 'lnsgadgets_lnsgadgetstabsheet.' => array('layoutRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Layouts/', '{$plugin.tx_lnsgadgets.view.layoutRootPath}'), 'partialRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Partials/', '{$plugin.tx_lnsgadgets.view.partialRootPath}'), 'templateRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Templates/Content/', '{$plugin.tx_lnsgadgets.view.templateRootPath}'), 'templateName' => 'Lnsgadgetstabsheet', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_items')), 'table' => 'tx_lnsgadgets_items', 'pidInList.' => array('field' => 'pid'), 'where' => 'parentid=###uid### AND deleted=0 AND hidden=0', 'orderBy' => 'sorting', 'markers.' => array('uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_items', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_item_content')), 'table' => 'tt_content', 'pidInList.' => array('field' => 'pid'), 'where' => 'tx_lnsgadgets_item_content_parent=###uid### AND deleted=0 AND hidden=0 AND colPos=###colPos###', 'orderBy' => 'sorting', 'markers.' => array('colPos.' => array('value' => '999'), 'uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_item_content')))))))
in /var/www/vhosts/baek/web/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')), 'mask_akdae_event_item' => '< lib.maskContentElement', 'mask_akdae_event_item.' => array('templateName' => 'AkdaeEventItem'), 'mask_baek_themeboxes' => '< lib.maskContentElement', 'mask_baek_themeboxes.' => array('templateName' => 'BaekThemeboxes'), 'mask_basebuttons' => '< lib.maskContentElement', 'mask_basebuttons.' => array('templateName' => 'Basebuttons'), 'mask_baek_heroimage' => '< lib.maskContentElement', 'mask_baek_heroimage.' => array('templateName' => 'BaekHeroimage'), 'mask_themebox_scrollable' => '< lib.maskContentElement', 'mask_themebox_scrollable.' => array('templateName' => 'ThemeboxScrollable'), 'mask_baek_topiclist' => '< lib.maskContentElement', 'mask_baek_topiclist.' => array('templateName' => 'BaekTopiclist'), 'mask_baek_textmediacard' => '< lib.maskContentElement', 'mask_baek_textmediacard.' => array('templateName' => 'BaekTextmediacard'), 'mask_baek_parallaximagebox' => '< lib.maskContentElement', 'mask_baek_parallaximagebox.' => array('templateName' => 'BaekParallaximagebox'), 'mask_baek_keywordsuggestions' => '< lib.maskContentElement', 'mask_baek_keywordsuggestions.' => array('templateName' => 'BaekKeywordsuggestions'), 'mask_baek_heroimagefullwidth' => '< lib.maskContentElement', 'mask_baek_heroimagefullwidth.' => array('templateName' => 'BaekHeroimagefullwidth'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000c', 'maxGalleryWidthInText' => '2000c', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'lnsauthor_lnsauthor' => 'USER', 'lnsauthor_lnsauthor.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'LnsAuthor'), 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000c', 'maxGalleryWidthInText' => '2000c', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000c', 'maxGalleryWidthInText' => '2000c', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => '{#tt_content}.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => '{#sys_category_record_mm} ON uid = {#sys_category_record_mm}.{#uid_foreign} AND {#sys_category_record_mm}.{#uid_local} IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => '{#tablenames}=\'tt_content\' and {#fieldname}=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), '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')), 'lnsissuearchive_issuelist' => '< lib.contentElement', 'lnsissuearchive_issuelist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Issuelist')), 'lnsissuearchive_issueshow' => '< lib.contentElement', 'lnsissuearchive_issueshow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Issueshow')), 'lnsissuearchive_articlelist' => '< lib.contentElement', 'lnsissuearchive_articlelist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Articlelist')), 'lnsissuearchive_articleshow' => '< lib.contentElement', 'lnsissuearchive_articleshow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Articleshow')), 'lnsauthor_authorlist' => '< lib.contentElement', 'lnsauthor_authorlist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'AuthorList')), 'lnsauthor_authorshow' => '< lib.contentElement', 'lnsauthor_authorshow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'AuthorShow')), 'lns-1col-container' => 'FLUIDTEMPLATE', 'lns-1col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '1')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lns-2col-container' => 'FLUIDTEMPLATE', 'lns-2col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '2')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'))), 'lns-3col-container' => 'FLUIDTEMPLATE', 'lns-3col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '3')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '230.' => array('colPos' => '230', 'as' => 'col3'))), 'lns-4col-container' => 'FLUIDTEMPLATE', 'lns-4col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '4')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '230.' => array('colPos' => '230', 'as' => 'col3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '240.' => array('colPos' => '240', 'as' => 'col4'))), 'lns-6col-container' => 'FLUIDTEMPLATE', 'lns-6col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '6')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '230.' => array('colPos' => '230', 'as' => 'col3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '240.' => array('colPos' => '240', 'as' => 'col4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '250.' => array('colPos' => '250', 'as' => 'col5'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '260.' => array('colPos' => '260', 'as' => 'col6'))), 'lns-floating-container' => 'FLUIDTEMPLATE', 'lns-floating-container.' => array('templateName' => 'FloatingContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_floating_container/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lns-floating-item' => 'FLUIDTEMPLATE', 'lns-floating-item.' => array('templateName' => 'FloatingItem', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_floating_container/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lns-floating-item-shortcut' => 'FLUIDTEMPLATE', 'lns-floating-item-shortcut.' => array('templateName' => 'FloatingItemShortcut', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_floating_container/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content')), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lnsgadgets_lnsgadgetsaccordion' => 'FLUIDTEMPLATE', 'lnsgadgets_lnsgadgetsaccordion.' => array('layoutRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Layouts/', '{$plugin.tx_lnsgadgets.view.layoutRootPath}', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_gadgets/Layouts/'), 'partialRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Partials/', '{$plugin.tx_lnsgadgets.view.partialRootPath}', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_gadgets/Partials/'), 'templateRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Templates/Content/', '{$plugin.tx_lnsgadgets.view.templateRootPath}', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_gadgets/Templates/'), 'templateName' => 'Lnsgadgetsaccordion', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_items')), 'table' => 'tx_lnsgadgets_items', 'pidInList.' => array('field' => 'pid'), 'where' => 'parentid=###uid### AND deleted=0 AND hidden=0', 'orderBy' => 'sorting', 'markers.' => array('uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_items', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_item_content')), 'table' => 'tt_content', 'pidInList.' => array('field' => 'pid'), 'where' => 'tx_lnsgadgets_item_content_parent=###uid### AND deleted=0 AND hidden=0 AND colPos=###colPos###', 'orderBy' => 'sorting', 'markers.' => array('colPos.' => array('value' => '999'), 'uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_item_content'))))), 'lnsgadgets_lnsgadgetsslider' => 'FLUIDTEMPLATE', 'lnsgadgets_lnsgadgetsslider.' => array('layoutRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Layouts/', '{$plugin.tx_lnsgadgets.view.layoutRootPath}'), 'partialRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Partials/', '{$plugin.tx_lnsgadgets.view.partialRootPath}'), 'templateRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Templates/Content/', '{$plugin.tx_lnsgadgets.view.templateRootPath}'), 'templateName' => 'Lnsgadgetsslider', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_items')), 'table' => 'tx_lnsgadgets_items', 'pidInList.' => array('field' => 'pid'), 'where' => 'parentid=###uid### AND deleted=0 AND hidden=0', 'orderBy' => 'sorting', 'markers.' => array('uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_items', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_item_content')), 'table' => 'tt_content', 'pidInList.' => array('field' => 'pid'), 'where' => 'tx_lnsgadgets_item_content_parent=###uid### AND deleted=0 AND hidden=0 AND colPos=###colPos###', 'orderBy' => 'sorting', 'markers.' => array('colPos.' => array('value' => '999'), 'uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_item_content'))))), 'lnsgadgets_lnsgadgetstabsheet' => 'FLUIDTEMPLATE', 'lnsgadgets_lnsgadgetstabsheet.' => array('layoutRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Layouts/', '{$plugin.tx_lnsgadgets.view.layoutRootPath}'), 'partialRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Partials/', '{$plugin.tx_lnsgadgets.view.partialRootPath}'), 'templateRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Templates/Content/', '{$plugin.tx_lnsgadgets.view.templateRootPath}'), 'templateName' => 'Lnsgadgetstabsheet', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_items')), 'table' => 'tx_lnsgadgets_items', 'pidInList.' => array('field' => 'pid'), 'where' => 'parentid=###uid### AND deleted=0 AND hidden=0', 'orderBy' => 'sorting', 'markers.' => array('uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_items', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_item_content')), 'table' => 'tt_content', 'pidInList.' => array('field' => 'pid'), 'where' => 'tx_lnsgadgets_item_content_parent=###uid### AND deleted=0 AND hidden=0 AND colPos=###colPos###', 'orderBy' => 'sorting', 'markers.' => array('colPos.' => array('value' => '999'), 'uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_item_content')))))), 'tt_content')
in /var/www/vhosts/baek/web/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')), 'mask_akdae_event_item' => '< lib.maskContentElement', 'mask_akdae_event_item.' => array('templateName' => 'AkdaeEventItem'), 'mask_baek_themeboxes' => '< lib.maskContentElement', 'mask_baek_themeboxes.' => array('templateName' => 'BaekThemeboxes'), 'mask_basebuttons' => '< lib.maskContentElement', 'mask_basebuttons.' => array('templateName' => 'Basebuttons'), 'mask_baek_heroimage' => '< lib.maskContentElement', 'mask_baek_heroimage.' => array('templateName' => 'BaekHeroimage'), 'mask_themebox_scrollable' => '< lib.maskContentElement', 'mask_themebox_scrollable.' => array('templateName' => 'ThemeboxScrollable'), 'mask_baek_topiclist' => '< lib.maskContentElement', 'mask_baek_topiclist.' => array('templateName' => 'BaekTopiclist'), 'mask_baek_textmediacard' => '< lib.maskContentElement', 'mask_baek_textmediacard.' => array('templateName' => 'BaekTextmediacard'), 'mask_baek_parallaximagebox' => '< lib.maskContentElement', 'mask_baek_parallaximagebox.' => array('templateName' => 'BaekParallaximagebox'), 'mask_baek_keywordsuggestions' => '< lib.maskContentElement', 'mask_baek_keywordsuggestions.' => array('templateName' => 'BaekKeywordsuggestions'), 'mask_baek_heroimagefullwidth' => '< lib.maskContentElement', 'mask_baek_heroimagefullwidth.' => array('templateName' => 'BaekHeroimagefullwidth'), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000c', 'maxGalleryWidthInText' => '2000c', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'lnsauthor_lnsauthor' => 'USER', 'lnsauthor_lnsauthor.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'LnsAuthor'), 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000c', 'maxGalleryWidthInText' => '2000c', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000c', 'maxGalleryWidthInText' => '2000c', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => '{#tt_content}.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => '{#sys_category_record_mm} ON uid = {#sys_category_record_mm}.{#uid_foreign} AND {#sys_category_record_mm}.{#uid_local} IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => '{#tablenames}=\'tt_content\' and {#fieldname}=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), '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')), 'lnsissuearchive_issuelist' => '< lib.contentElement', 'lnsissuearchive_issuelist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Issuelist')), 'lnsissuearchive_issueshow' => '< lib.contentElement', 'lnsissuearchive_issueshow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Issueshow')), 'lnsissuearchive_articlelist' => '< lib.contentElement', 'lnsissuearchive_articlelist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Articlelist')), 'lnsissuearchive_articleshow' => '< lib.contentElement', 'lnsissuearchive_articleshow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsIssuearchive', 'pluginName' => 'Articleshow')), 'lnsauthor_authorlist' => '< lib.contentElement', 'lnsauthor_authorlist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'AuthorList')), 'lnsauthor_authorshow' => '< lib.contentElement', 'lnsauthor_authorshow.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'LnsAuthor', 'pluginName' => 'AuthorShow')), 'lns-1col-container' => 'FLUIDTEMPLATE', 'lns-1col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '1')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lns-2col-container' => 'FLUIDTEMPLATE', 'lns-2col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '2')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'))), 'lns-3col-container' => 'FLUIDTEMPLATE', 'lns-3col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '3')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '230.' => array('colPos' => '230', 'as' => 'col3'))), 'lns-4col-container' => 'FLUIDTEMPLATE', 'lns-4col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '4')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '230.' => array('colPos' => '230', 'as' => 'col3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '240.' => array('colPos' => '240', 'as' => 'col4'))), 'lns-6col-container' => 'FLUIDTEMPLATE', 'lns-6col-container.' => array('templateName' => 'GenericContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_grid_container/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('colCount' => 'TEXT', 'colCount.' => array('value' => '6')), 'dataProcessing.' => array('Lns\\LnsGridContainer\\DataProcessing\\FlexFormProcessor', '10.' => array('as' => 'flexform'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '220.' => array('colPos' => '220', 'as' => 'col2'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '230.' => array('colPos' => '230', 'as' => 'col3'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '240.' => array('colPos' => '240', 'as' => 'col4'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '250.' => array('colPos' => '250', 'as' => 'col5'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '260.' => array('colPos' => '260', 'as' => 'col6'))), 'lns-floating-container' => 'FLUIDTEMPLATE', 'lns-floating-container.' => array('templateName' => 'FloatingContainer', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_floating_container/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lns-floating-item' => 'FLUIDTEMPLATE', 'lns-floating-item.' => array('templateName' => 'FloatingItem', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_floating_container/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lns-floating-item-shortcut' => 'FLUIDTEMPLATE', 'lns-floating-item-shortcut.' => array('templateName' => 'FloatingItemShortcut', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:lns_floating_container/Resources/Private/Templates'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', ''), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'imageDecoding' => '', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '2000m', 'height' => '{$styles.content.textmedia.linkWrap.height}', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '1')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content')), 'dataProcessing.' => array('B13\\Container\\DataProcessing\\ContainerProcessor', '210.' => array('colPos' => '210', 'as' => 'col1'))), 'lnsgadgets_lnsgadgetsaccordion' => 'FLUIDTEMPLATE', 'lnsgadgets_lnsgadgetsaccordion.' => array('layoutRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Layouts/', '{$plugin.tx_lnsgadgets.view.layoutRootPath}', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_gadgets/Layouts/'), 'partialRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Partials/', '{$plugin.tx_lnsgadgets.view.partialRootPath}', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_gadgets/Partials/'), 'templateRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Templates/Content/', '{$plugin.tx_lnsgadgets.view.templateRootPath}', 'EXT:lns_sitepackage_baek/Resources/Private/Extensions/lns_gadgets/Templates/'), 'templateName' => 'Lnsgadgetsaccordion', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_items')), 'table' => 'tx_lnsgadgets_items', 'pidInList.' => array('field' => 'pid'), 'where' => 'parentid=###uid### AND deleted=0 AND hidden=0', 'orderBy' => 'sorting', 'markers.' => array('uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_items', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_item_content')), 'table' => 'tt_content', 'pidInList.' => array('field' => 'pid'), 'where' => 'tx_lnsgadgets_item_content_parent=###uid### AND deleted=0 AND hidden=0 AND colPos=###colPos###', 'orderBy' => 'sorting', 'markers.' => array('colPos.' => array('value' => '999'), 'uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_item_content'))))), 'lnsgadgets_lnsgadgetsslider' => 'FLUIDTEMPLATE', 'lnsgadgets_lnsgadgetsslider.' => array('layoutRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Layouts/', '{$plugin.tx_lnsgadgets.view.layoutRootPath}'), 'partialRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Partials/', '{$plugin.tx_lnsgadgets.view.partialRootPath}'), 'templateRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Templates/Content/', '{$plugin.tx_lnsgadgets.view.templateRootPath}'), 'templateName' => 'Lnsgadgetsslider', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_items')), 'table' => 'tx_lnsgadgets_items', 'pidInList.' => array('field' => 'pid'), 'where' => 'parentid=###uid### AND deleted=0 AND hidden=0', 'orderBy' => 'sorting', 'markers.' => array('uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_items', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_item_content')), 'table' => 'tt_content', 'pidInList.' => array('field' => 'pid'), 'where' => 'tx_lnsgadgets_item_content_parent=###uid### AND deleted=0 AND hidden=0 AND colPos=###colPos###', 'orderBy' => 'sorting', 'markers.' => array('colPos.' => array('value' => '999'), 'uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_item_content'))))), 'lnsgadgets_lnsgadgetstabsheet' => 'FLUIDTEMPLATE', 'lnsgadgets_lnsgadgetstabsheet.' => array('layoutRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Layouts/', '{$plugin.tx_lnsgadgets.view.layoutRootPath}'), 'partialRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Partials/', '{$plugin.tx_lnsgadgets.view.partialRootPath}'), 'templateRootPaths.' => array('EXT:lns_gadgets/Resources/Private/Templates/Content/', '{$plugin.tx_lnsgadgets.view.templateRootPath}'), 'templateName' => 'Lnsgadgetstabsheet', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_items')), 'table' => 'tx_lnsgadgets_items', 'pidInList.' => array('field' => 'pid'), 'where' => 'parentid=###uid### AND deleted=0 AND hidden=0', 'orderBy' => 'sorting', 'markers.' => array('uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_items', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('if.' => array('isTrue.' => array('field' => 'tx_lnsgadgets_item_content')), 'table' => 'tt_content', 'pidInList.' => array('field' => 'pid'), 'where' => 'tx_lnsgadgets_item_content_parent=###uid### AND deleted=0 AND hidden=0 AND colPos=###colPos###', 'orderBy' => 'sorting', 'markers.' => array('colPos.' => array('value' => '999'), 'uid.' => array('field' => 'uid')), 'as' => 'data_tx_lnsgadgets_item_content')))))), '')
in /var/www/vhosts/baek/web/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.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('field' => 'colPos', 'intval' => '1', 'ifEmpty' => '0', 'noTrimWrap' => '| AND colPos=||')))), 'stdWrap.' => array('innerWrap' => '|')))
in /var/www/vhosts/baek/web/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.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('field' => 'colPos', 'intval' => '1', 'ifEmpty' => '0', 'noTrimWrap' => '| AND colPos=||')))), 'stdWrap.' => array('innerWrap' => '|')))
in /var/www/vhosts/baek/web/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.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('field' => 'colPos', 'intval' => '1', 'ifEmpty' => '0', 'noTrimWrap' => '| AND colPos=||')))), 'stdWrap.' => array('innerWrap' => '|')), 'lib.content.render')
in /var/www/vhosts/baek/web/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('render' => 'CONTENT', 'render.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('field' => 'colPos', 'intval' => '1', 'ifEmpty' => '0', 'noTrimWrap' => '| AND colPos=||')))), 'stdWrap.' => array('innerWrap' => '|'))), 'lib.content.render', 'render')
in /var/www/vhosts/baek/web/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('colPos' => 0), 'typoscriptObjectPath' => 'lib.content.render', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/baek/var/cache/code/fluid_template/Standard_action_twocolumns_c155b428f38ceb1503c55d7ca64e2445c32b34e6.php line 128
$array13 = array();
$array13['colPos'] = 0;
$arguments11['data'] = $array13;
$renderChildrenClosure12 = ($arguments11['data'] !== null) ? function() use ($arguments11) { return $arguments11['data']; } : $renderChildrenClosure12;
$output3 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments11, $renderChildrenClosure12, $renderingContext);

$output3 .= '
                            </div>
                            <div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-2 col-xxl-3 teasercolum hidden-print">
at Standard_action_twocolumns_c155b428f38ceb1503c55d7ca64e2445c32b34e6->{closure}()
in /var/www/vhosts/baek/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/baek/var/cache/code/fluid_template/Standard_action_twocolumns_c155b428f38ceb1503c55d7ca64e2445c32b34e6.php line 207
return $output3;
};
$arguments1 = array();

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

$output0 .= '
';

at Standard_action_twocolumns_c155b428f38ceb1503c55d7ca64e2445c32b34e6->section_02083f4579e08a612425c0c1a17ee47add783b94(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/baek/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('body', array(), false)
in /var/www/vhosts/baek/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 172
            $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' => 'body', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array(), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/baek/var/cache/code/fluid_template/layout_Default_html_01855eea64ff69560e037dcb366ac5f055330da5.php line 62
$arguments1['contentAs'] = NULL;
$arguments1['debug'] = true;
$arguments1['section'] = 'body';

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

$output0 .= '
';

at layout_Default_html_01855eea64ff69560e037dcb366ac5f055330da5->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/baek/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/baek/web/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/baek/web/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('layoutRootPaths.' => array('EXT:lns_sitepackage_baek/Resources/Private/Html/Layouts/', 'EXT:lns_theme_akdae/Resources/Private/Html/Layouts/'), 'partialRootPaths.' => array('EXT:lns_sitepackage_baek/Resources/Private/Html/Partials/', 'EXT:lns_theme_akdae/Resources/Private/Html/Partials/'), 'templateRootPaths.' => array('EXT:lns_sitepackage_baek/Resources/Private/Html/Templates/', 'EXT:lns_theme_akdae/Resources/Private/Html/Templates/'), 'templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'variables.' => array('backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'sitepackageExtKey' => 'TEXT', 'sitepackageExtKey.' => array('value' => 'lns_sitepackage_baek'), 'companyName' => 'TEXT', 'companyName.' => array('value' => 'Arzneimittelkommission der deutschen Ärzteschaft'), 'defaultLogo' => 'TEXT', 'defaultLogo.' => array('value' => 'akdea-logo.svg'), 'companyClaim' => 'TEXT', 'companyClaim.' => array('value' => ''), 'companyClaimSubline' => 'TEXT', 'companyClaimSubline.' => array('value' => 'Wissenschaftlicher Fachausschuss der Bundesärztekammer'), 'rootPageUid' => 'TEXT', 'rootPageUid.' => array('value' => '6907'), 'FrRootPageUid' => 'TEXT', 'FrRootPageUid.' => array('value' => '6731'), 'EnRootPageUid' => 'TEXT', 'EnRootPageUid.' => array('value' => '6732'), 'ArRootPageUid' => 'TEXT', 'ArRootPageUid.' => array('value' => '6730'), 'fakeLanguage' => 'TEXT', 'fakeLanguage.' => array('value' => 'DE'), 'logoLinkPage' => 'TEXT', 'logoLinkPage.' => array('value' => '6907'), 'schemaorgDefaultLogo' => 'TEXT', 'schemaorgDefaultLogo.' => array('value' => 'typo3conf/ext/lns_sitepackage_baek/Resources/Public/Images/logo/akdea-logo.svg'), 'schemaorgCompanyAddressStreet' => 'TEXT', 'schemaorgCompanyAddressStreet.' => array('value' => 'Herbert-Lewin-Platz 1 (Wegelystraße)'), 'schemaorgCompanyAddressPostalcode' => 'TEXT', 'schemaorgCompanyAddressPostalcode.' => array('value' => '10623'), 'schemaorgCompanyAddressCountry' => 'TEXT', 'schemaorgCompanyAddressCountry.' => array('value' => 'Berlin'), 'enableHighcontrastmode' => 'TEXT', 'enableHighcontrastmode.' => array('value' => '0'), 'enableLogin' => 'TEXT', 'enableLogin.' => array('value' => '0'), 'loginPageUid' => 'TEXT', 'loginPageUid.' => array('value' => ''), 'enableHeaderSearchfield' => 'TEXT', 'enableHeaderSearchfield.' => array('value' => '1'), 'searchPageUid' => 'TEXT', 'searchPageUid.' => array('value' => '6933'), 'enableHeaderLanguagemenu' => 'TEXT', 'enableHeaderLanguagemenu.' => array('value' => '0'), 'enable-facebook-sharing' => 'TEXT', 'enable-facebook-sharing.' => array('value' => '0'), 'enable-twitter-sharing' => 'TEXT', 'enable-twitter-sharing.' => array('value' => '1'), 'enable-xing-sharing' => 'TEXT', 'enable-xing-sharing.' => array('value' => '0'), 'enable-linkedin-sharing' => 'TEXT', 'enable-linkedin-sharing.' => array('value' => '0'), 'enable-whatsapp-sharing' => 'TEXT', 'enable-whatsapp-sharing.' => array('value' => '0'), 'enable-mail-sharing' => 'TEXT', 'enable-mail-sharing.' => array('value' => '1'), 'enable-native-sharing' => 'TEXT', 'enable-native-sharing.' => array('value' => '1'), 'facebook-channel' => 'TEXT', 'facebook-channel.' => array('value' => ''), 'twitter-channel' => 'TEXT', 'twitter-channel.' => array('value' => ''), 'youtube-channel' => 'TEXT', 'youtube-channel.' => array('value' => ''), 'xing-channel' => 'TEXT', 'xing-channel.' => array('value' => ''), 'linkedin-channel' => 'TEXT', 'linkedin-channel.' => array('value' => ''), 'instagram-channel' => 'TEXT', 'instagram-channel.' => array('value' => '')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value' => '6907'), 'levels' => '3', 'as' => 'mainMenu', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value' => '6930'), 'levels' => '2', 'as' => 'metaMenu', 'expandAll' => '0', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'directory', 'special.' => array('value' => '6931'), 'levels' => '0', 'as' => 'footerMenu', 'expandAll' => '0', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '0', 'as' => 'footerQuicklinks', 'expandAll' => '0', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '60.' => array('languages' => 'auto', 'as' => 'languageMenu'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\SiteProcessor', '100.' => array('as' => 'siteConfiguration'))))
in /var/www/vhosts/baek/web/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(MASK\Mask\Fluid\FluidTemplateContentObject), array('layoutRootPaths.' => array('EXT:lns_sitepackage_baek/Resources/Private/Html/Layouts/', 'EXT:lns_theme_akdae/Resources/Private/Html/Layouts/'), 'partialRootPaths.' => array('EXT:lns_sitepackage_baek/Resources/Private/Html/Partials/', 'EXT:lns_theme_akdae/Resources/Private/Html/Partials/'), 'templateRootPaths.' => array('EXT:lns_sitepackage_baek/Resources/Private/Html/Templates/', 'EXT:lns_theme_akdae/Resources/Private/Html/Templates/'), 'templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'variables.' => array('backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'sitepackageExtKey' => 'TEXT', 'sitepackageExtKey.' => array('value' => 'lns_sitepackage_baek'), 'companyName' => 'TEXT', 'companyName.' => array('value' => 'Arzneimittelkommission der deutschen Ärzteschaft'), 'defaultLogo' => 'TEXT', 'defaultLogo.' => array('value' => 'akdea-logo.svg'), 'companyClaim' => 'TEXT', 'companyClaim.' => array('value' => ''), 'companyClaimSubline' => 'TEXT', 'companyClaimSubline.' => array('value' => 'Wissenschaftlicher Fachausschuss der Bundesärztekammer'), 'rootPageUid' => 'TEXT', 'rootPageUid.' => array('value' => '6907'), 'FrRootPageUid' => 'TEXT', 'FrRootPageUid.' => array('value' => '6731'), 'EnRootPageUid' => 'TEXT', 'EnRootPageUid.' => array('value' => '6732'), 'ArRootPageUid' => 'TEXT', 'ArRootPageUid.' => array('value' => '6730'), 'fakeLanguage' => 'TEXT', 'fakeLanguage.' => array('value' => 'DE'), 'logoLinkPage' => 'TEXT', 'logoLinkPage.' => array('value' => '6907'), 'schemaorgDefaultLogo' => 'TEXT', 'schemaorgDefaultLogo.' => array('value' => 'typo3conf/ext/lns_sitepackage_baek/Resources/Public/Images/logo/akdea-logo.svg'), 'schemaorgCompanyAddressStreet' => 'TEXT', 'schemaorgCompanyAddressStreet.' => array('value' => 'Herbert-Lewin-Platz 1 (Wegelystraße)'), 'schemaorgCompanyAddressPostalcode' => 'TEXT', 'schemaorgCompanyAddressPostalcode.' => array('value' => '10623'), 'schemaorgCompanyAddressCountry' => 'TEXT', 'schemaorgCompanyAddressCountry.' => array('value' => 'Berlin'), 'enableHighcontrastmode' => 'TEXT', 'enableHighcontrastmode.' => array('value' => '0'), 'enableLogin' => 'TEXT', 'enableLogin.' => array('value' => '0'), 'loginPageUid' => 'TEXT', 'loginPageUid.' => array('value' => ''), 'enableHeaderSearchfield' => 'TEXT', 'enableHeaderSearchfield.' => array('value' => '1'), 'searchPageUid' => 'TEXT', 'searchPageUid.' => array('value' => '6933'), 'enableHeaderLanguagemenu' => 'TEXT', 'enableHeaderLanguagemenu.' => array('value' => '0'), 'enable-facebook-sharing' => 'TEXT', 'enable-facebook-sharing.' => array('value' => '0'), 'enable-twitter-sharing' => 'TEXT', 'enable-twitter-sharing.' => array('value' => '1'), 'enable-xing-sharing' => 'TEXT', 'enable-xing-sharing.' => array('value' => '0'), 'enable-linkedin-sharing' => 'TEXT', 'enable-linkedin-sharing.' => array('value' => '0'), 'enable-whatsapp-sharing' => 'TEXT', 'enable-whatsapp-sharing.' => array('value' => '0'), 'enable-mail-sharing' => 'TEXT', 'enable-mail-sharing.' => array('value' => '1'), 'enable-native-sharing' => 'TEXT', 'enable-native-sharing.' => array('value' => '1'), 'facebook-channel' => 'TEXT', 'facebook-channel.' => array('value' => ''), 'twitter-channel' => 'TEXT', 'twitter-channel.' => array('value' => ''), 'youtube-channel' => 'TEXT', 'youtube-channel.' => array('value' => ''), 'xing-channel' => 'TEXT', 'xing-channel.' => array('value' => ''), 'linkedin-channel' => 'TEXT', 'linkedin-channel.' => array('value' => ''), 'instagram-channel' => 'TEXT', 'instagram-channel.' => array('value' => '')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value' => '6907'), 'levels' => '3', 'as' => 'mainMenu', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value' => '6930'), 'levels' => '2', 'as' => 'metaMenu', 'expandAll' => '0', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'directory', 'special.' => array('value' => '6931'), 'levels' => '0', 'as' => 'footerMenu', 'expandAll' => '0', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '0', 'as' => 'footerQuicklinks', 'expandAll' => '0', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '60.' => array('languages' => 'auto', 'as' => 'languageMenu'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\SiteProcessor', '100.' => array('as' => 'siteConfiguration'))))
in /var/www/vhosts/baek/web/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('layoutRootPaths.' => array('EXT:lns_sitepackage_baek/Resources/Private/Html/Layouts/', 'EXT:lns_theme_akdae/Resources/Private/Html/Layouts/'), 'partialRootPaths.' => array('EXT:lns_sitepackage_baek/Resources/Private/Html/Partials/', 'EXT:lns_theme_akdae/Resources/Private/Html/Partials/'), 'templateRootPaths.' => array('EXT:lns_sitepackage_baek/Resources/Private/Html/Templates/', 'EXT:lns_theme_akdae/Resources/Private/Html/Templates/'), 'templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'variables.' => array('backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'sitepackageExtKey' => 'TEXT', 'sitepackageExtKey.' => array('value' => 'lns_sitepackage_baek'), 'companyName' => 'TEXT', 'companyName.' => array('value' => 'Arzneimittelkommission der deutschen Ärzteschaft'), 'defaultLogo' => 'TEXT', 'defaultLogo.' => array('value' => 'akdea-logo.svg'), 'companyClaim' => 'TEXT', 'companyClaim.' => array('value' => ''), 'companyClaimSubline' => 'TEXT', 'companyClaimSubline.' => array('value' => 'Wissenschaftlicher Fachausschuss der Bundesärztekammer'), 'rootPageUid' => 'TEXT', 'rootPageUid.' => array('value' => '6907'), 'FrRootPageUid' => 'TEXT', 'FrRootPageUid.' => array('value' => '6731'), 'EnRootPageUid' => 'TEXT', 'EnRootPageUid.' => array('value' => '6732'), 'ArRootPageUid' => 'TEXT', 'ArRootPageUid.' => array('value' => '6730'), 'fakeLanguage' => 'TEXT', 'fakeLanguage.' => array('value' => 'DE'), 'logoLinkPage' => 'TEXT', 'logoLinkPage.' => array('value' => '6907'), 'schemaorgDefaultLogo' => 'TEXT', 'schemaorgDefaultLogo.' => array('value' => 'typo3conf/ext/lns_sitepackage_baek/Resources/Public/Images/logo/akdea-logo.svg'), 'schemaorgCompanyAddressStreet' => 'TEXT', 'schemaorgCompanyAddressStreet.' => array('value' => 'Herbert-Lewin-Platz 1 (Wegelystraße)'), 'schemaorgCompanyAddressPostalcode' => 'TEXT', 'schemaorgCompanyAddressPostalcode.' => array('value' => '10623'), 'schemaorgCompanyAddressCountry' => 'TEXT', 'schemaorgCompanyAddressCountry.' => array('value' => 'Berlin'), 'enableHighcontrastmode' => 'TEXT', 'enableHighcontrastmode.' => array('value' => '0'), 'enableLogin' => 'TEXT', 'enableLogin.' => array('value' => '0'), 'loginPageUid' => 'TEXT', 'loginPageUid.' => array('value' => ''), 'enableHeaderSearchfield' => 'TEXT', 'enableHeaderSearchfield.' => array('value' => '1'), 'searchPageUid' => 'TEXT', 'searchPageUid.' => array('value' => '6933'), 'enableHeaderLanguagemenu' => 'TEXT', 'enableHeaderLanguagemenu.' => array('value' => '0'), 'enable-facebook-sharing' => 'TEXT', 'enable-facebook-sharing.' => array('value' => '0'), 'enable-twitter-sharing' => 'TEXT', 'enable-twitter-sharing.' => array('value' => '1'), 'enable-xing-sharing' => 'TEXT', 'enable-xing-sharing.' => array('value' => '0'), 'enable-linkedin-sharing' => 'TEXT', 'enable-linkedin-sharing.' => array('value' => '0'), 'enable-whatsapp-sharing' => 'TEXT', 'enable-whatsapp-sharing.' => array('value' => '0'), 'enable-mail-sharing' => 'TEXT', 'enable-mail-sharing.' => array('value' => '1'), 'enable-native-sharing' => 'TEXT', 'enable-native-sharing.' => array('value' => '1'), 'facebook-channel' => 'TEXT', 'facebook-channel.' => array('value' => ''), 'twitter-channel' => 'TEXT', 'twitter-channel.' => array('value' => ''), 'youtube-channel' => 'TEXT', 'youtube-channel.' => array('value' => ''), 'xing-channel' => 'TEXT', 'xing-channel.' => array('value' => ''), 'linkedin-channel' => 'TEXT', 'linkedin-channel.' => array('value' => ''), 'instagram-channel' => 'TEXT', 'instagram-channel.' => array('value' => '')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value' => '6907'), 'levels' => '3', 'as' => 'mainMenu', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value' => '6930'), 'levels' => '2', 'as' => 'metaMenu', 'expandAll' => '0', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'directory', 'special.' => array('value' => '6931'), 'levels' => '0', 'as' => 'footerMenu', 'expandAll' => '0', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '0', 'as' => 'footerQuicklinks', 'expandAll' => '0', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '60.' => array('languages' => 'auto', 'as' => 'languageMenu'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\SiteProcessor', '100.' => array('as' => 'siteConfiguration'))), '10')
in /var/www/vhosts/baek/web/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('includeJSFooter.' => array('EXT:lns_gadgets/Resources/Public/JavaScript/Vendor/intersectionObserver.min.js', '1627297316.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'EXT:lns_gadgets/Resources/Public/JavaScript/scroll.js', 'EXT:lns_gadgets/Resources/Public/JavaScript/click.min.js', '1627297516.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'EXT:lns_gadgets/Resources/Public/JavaScript/showmore.js', 'EXT:lns_gadgets/Resources/Public/JavaScript/lns_gadgets_tabsheets.min.js', '1627297716.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'EXT:lns_gadgets/Resources/Public/JavaScript/lns_gadgets_accordion.js', '1627297816.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'EXT:lns_gadgets/Resources/Public/JavaScript/lns_gadgets_slider.js', 'EXT:lns_gadgets/Resources/Public/JavaScript/pages.min.js', '1627298016.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'EXT:lns_gadgets/Resources/Public/JavaScript/counter.min.js', '1627298116.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'EXT:lns_gadgets/Resources/Public/JavaScript/sharing.min.js', '1627298216.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'EXT:lns_gadgets/Resources/Public/JavaScript/lightbox.js', 'focus' => 'EXT:lns_imagefocus/Resources/Public/JavaScript/focus.min.js', 'focus.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'viewport' => 'EXT:lns_imagefocus/Resources/Public/JavaScript/viewport.min.js', 'viewport.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'objectfit' => 'EXT:lns_imagefocus/Resources/Public/JavaScript/object-fit.min.js', 'objectfit.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'video' => 'EXT:lns_imagefocus/Resources/Public/JavaScript/video.min.js', 'video.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'youtube' => 'EXT:lns_cookiebot/Resources/Public/JavaScript/youtube.js', 'youtube.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'vimeo' => 'EXT:lns_cookiebot/Resources/Public/JavaScript/vimeo.js', 'vimeo.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'audio' => 'EXT:lns_cookiebot/Resources/Public/JavaScript/audio.js', 'audio.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'iframe' => 'EXT:lns_cookiebot/Resources/Public/JavaScript/iframe.js', 'iframe.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'twitter' => 'EXT:lns_cookiebot/Resources/Public/JavaScript/twitter.js', 'twitter.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'powermailJQueryDatepicker' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/jquery.datetimepicker.min.js', 'powermailJQueryFormValidation' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/parsley.min.js', 'powermailJQueryTabs' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Tabs.min.js', 'powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'EXT:lns_sitepackage_baek/Resources/Public/JavaScript/menu-navi.js', '1627994902.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'EXT:lns_sitepackage_baek/Resources/Public/JavaScript/search-as-you-type.js', 'EXT:lns_sitepackage_baek/Resources/Public/JavaScript/counter.js', 'EXT:lns_sitepackage_baek/Resources/Public/JavaScript/scrollable-tables.js', '1688888888.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'markExternalLinks' => 'EXT:lns_cookiebot/Resources/Public/JavaScript/markExternalLinks.min.js', 'markExternalLinks.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0')), 'includeCSS.' => array('youtube' => 'EXT:lns_cookiebot/Resources/Public/Styles/youtube.css', 'youtube.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'vimeo' => 'EXT:lns_cookiebot/Resources/Public/Styles/vimeo.css', 'vimeo.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'audio' => 'EXT:lns_cookiebot/Resources/Public/Styles/audio.css', 'audio.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'iframe' => 'EXT:lns_cookiebot/Resources/Public/Styles/iframe.css', 'iframe.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'bootstrap5' => 'EXT:lns_sitepackage_baek/Resources/Public/Styles/Vendor/Bootstrap/bootstrap-5.0.2/css/bootstrap-grid.css', 'bootstrap5.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'fontawesomenew' => 'EXT:lns_sitepackage_baek/Resources/Public/Styles/Vendor/icon-fonts/fontawesome/5.15.3/all.css', 'fontawesomenew.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '1'), 'fontIcons' => 'EXT:lns_sitepackage_baek/Resources/Public/Styles/Vendor/icon-fonts/font-icons/font-icons.css', 'fontIcons.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '1'), 'sitepackageMain' => 'EXT:lns_theme_akdae/Resources/Public/Styles/main.css', 'sitepackageMain.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'sitepackageGadgets' => 'EXT:lns_theme_akdae/Resources/Public/Styles/lns-gadgets.css', 'sitepackageGadgets.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'sitepackagePrint' => 'EXT:lns_theme_akdae/Resources/Public/Styles/print.css', 'sitepackagePrint.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'sitepackageOverwrite' => 'EXT:lns_theme_akdae/Resources/Public/Styles/overwrite.css', 'sitepackageOverwrite.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'sitepackageSecond' => 'EXT:lns_theme_akdae/Resources/Public/Styles/mainSecond.css', 'sitepackageSecond.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'solr-suggest' => 'EXT:solr/Resources/Public/StyleSheets/Frontend/suggest.css'), 'includeJSFooterlibs.' => array('powermailJQuery' => 'EXT:lns_sitepackage_baek/Resources/Public/JavaScript/Vendor/jquery-1.11.3/jquery.min.js', 'powermailJQuery.' => array('external' => '1'), 'solr-jquery' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery.min.js', 'solr-autocomplete' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery.autocomplete.min.js', 'solr-suggest' => 'EXT:solr/Resources/Public/JavaScript/suggest_controller.js'), 'config.' => array('headerComment' => ' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .:/+//-` `-:/++/:` `+yhhhhhhhhy+- `:oyhhhhhhhhs: .yhhhhhhhhhhhhhs+yhhhhhhhhhhhhh+yMMMMMN` +MMMMMy dMMMMM` dMMMMMMMMMMMMMd shhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh- yMMMMN` +MMMMMy dMMMMm` dMMMMMMMMMMMMMd hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh/ .NMMMMo dMMMMMM. -MMMMM/ dMMMMd yhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh: oMMMMN`-MMMMMMMs yMMMMm dMMMMs :hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhs` `mMMMMoyMMMMMMMN-MMMMM/ dMMMMNmmmmm+ /hhhhhhhhhhhhhhhhhhhhhhhhhhhhy. /MMMMNNMMMsMMMMNMMMMd dMMMMMMMMMM+ :yhhhhhhhhhhhhhhhhhhhhhhhhho` dMMMMMMMN`dMMMMMMMM: dMMMMh .ohhhhhhhhhhhhhhhhhhhhhhy:` -MMMMMMMy /MMMMMMMd dMMMMs -shhhhhhhhhhhhhhhhhhy+` yMMMMMM: `NMMMMMM: dMMMMNddddddddy `-ohhhhhhhhhhhhhhy+. .NMMMMm sMMMMMh dMMMMMMMMMMMMMd `-oyhhhhhhhhhy/. -oyhhhhhs/` .+yhs:` .:. MMMMMMMMMMMMMMMM :NMMMMo .mMMMMh` sMMMMMMMMMMMNd hNMMMMMMMNdo MMMMMMMMMMMMMs mmmmmMMMMMNmmmmm /MMMMM: `hMMMMd` sMMMMMmmmmMMMMMs MMMMMmdmNMMMMd mmmmmNMMMMMMMs dMMMMs +MMMMN.sMMMMd. sMMMMd oMMMMM :MMMMM/` -mMMMMs -odMMMMNdo. dMMMMo oMMMMmMMMMm. sMMMMd oMMMMM +MMMMM yMMMMd yMMMMMMMd/` dMMMMo sMMMMMMMN. sMMMMMmmmNMMMMN +MMMMM yMMMMd -dMNmNMMMMd. dMMMMo yMMMMMN- sMMMMMMMMMMNmy +MMMMM yMMMMd hMMMMh dMMMMo MMMMMo sMMMMm /MMMMM. dMMMMh hhhhs sMMMMN dMMMMo MMMMM+ sMMMMd `mMMMMms+odMMMMM: MMMMMy+sMMMMMs dMMMMo MMMMM+ sMMMMd `yMMMMMMMMMMMm: /mMMMMMMMMMNs dMMMMo MMMMM+ sMMMMd .+ydmmmmho- /sdmmmmmdy+`Auch unter der Haube geht’s bei uns mit Leidenschaft zu.© SCHAFFRATH ⋅|⋅ Deine TYPO3-Agentur ⋅|⋅ www.schaffrath.de/digital✔erfahren ✔agil ✔zertifiziert ✔partnerschaftlich- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -', 'doctype' => 'html5', 'xmlprologue' => 'none', 'noPageTitle' => '0', 'index_enable' => '1', 'extTarget' => '_blank', 'intTarget' => '_self', 'absRefPrefix' => 'auto', 'sendCacheHeaders' => '1', 'cache_period' => '86400', 'no_cache' => '0', 'disablePrefixComment' => '1', 'disableImgBorderAttr' => '1', 'contentObjectExceptionHandler' => '0', 'additionalHeaders.' => array('20.' => array('header' => 'Cache-control: no-cache, must-revalidate')), 'compressJs' => '1', 'compressCss' => '1', 'concatenateJs' => '1', 'concatenateCss' => '1'), 'shortcutIcon' => 'EXT:lns_theme_akdae/Resources/Public/Images/favicon.ico', 'typeNum' => '0', 'meta.' => array('viewport' => 'width=device-width, initial-scale=1.0001, minimum-scale=1.0001, maximum-scale=2.0001, user-scalable=yes', 'format-detection' => 'telephone=no', 'author.' => array('data' => 'TSFE:page|author'), 'robots' => 'index, follow'), 'headerData.' => array('30.' => array('stdWrap.' => array('wrap' => '<meta name="google-site-verification" content="|" />', 'required' => '1'))), 'FLUIDTEMPLATE', '10.' => array('layoutRootPaths.' => array('EXT:lns_sitepackage_baek/Resources/Private/Html/Layouts/', 'EXT:lns_theme_akdae/Resources/Private/Html/Layouts/'), 'partialRootPaths.' => array('EXT:lns_sitepackage_baek/Resources/Private/Html/Partials/', 'EXT:lns_theme_akdae/Resources/Private/Html/Partials/'), 'templateRootPaths.' => array('EXT:lns_sitepackage_baek/Resources/Private/Html/Templates/', 'EXT:lns_theme_akdae/Resources/Private/Html/Templates/'), 'templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'variables.' => array('backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'sitepackageExtKey' => 'TEXT', 'sitepackageExtKey.' => array('value' => 'lns_sitepackage_baek'), 'companyName' => 'TEXT', 'companyName.' => array('value' => 'Arzneimittelkommission der deutschen Ärzteschaft'), 'defaultLogo' => 'TEXT', 'defaultLogo.' => array('value' => 'akdea-logo.svg'), 'companyClaim' => 'TEXT', 'companyClaim.' => array('value' => ''), 'companyClaimSubline' => 'TEXT', 'companyClaimSubline.' => array('value' => 'Wissenschaftlicher Fachausschuss der Bundesärztekammer'), 'rootPageUid' => 'TEXT', 'rootPageUid.' => array('value' => '6907'), 'FrRootPageUid' => 'TEXT', 'FrRootPageUid.' => array('value' => '6731'), 'EnRootPageUid' => 'TEXT', 'EnRootPageUid.' => array('value' => '6732'), 'ArRootPageUid' => 'TEXT', 'ArRootPageUid.' => array('value' => '6730'), 'fakeLanguage' => 'TEXT', 'fakeLanguage.' => array('value' => 'DE'), 'logoLinkPage' => 'TEXT', 'logoLinkPage.' => array('value' => '6907'), 'schemaorgDefaultLogo' => 'TEXT', 'schemaorgDefaultLogo.' => array('value' => 'typo3conf/ext/lns_sitepackage_baek/Resources/Public/Images/logo/akdea-logo.svg'), 'schemaorgCompanyAddressStreet' => 'TEXT', 'schemaorgCompanyAddressStreet.' => array('value' => 'Herbert-Lewin-Platz 1 (Wegelystraße)'), 'schemaorgCompanyAddressPostalcode' => 'TEXT', 'schemaorgCompanyAddressPostalcode.' => array('value' => '10623'), 'schemaorgCompanyAddressCountry' => 'TEXT', 'schemaorgCompanyAddressCountry.' => array('value' => 'Berlin'), 'enableHighcontrastmode' => 'TEXT', 'enableHighcontrastmode.' => array('value' => '0'), 'enableLogin' => 'TEXT', 'enableLogin.' => array('value' => '0'), 'loginPageUid' => 'TEXT', 'loginPageUid.' => array('value' => ''), 'enableHeaderSearchfield' => 'TEXT', 'enableHeaderSearchfield.' => array('value' => '1'), 'searchPageUid' => 'TEXT', 'searchPageUid.' => array('value' => '6933'), 'enableHeaderLanguagemenu' => 'TEXT', 'enableHeaderLanguagemenu.' => array('value' => '0'), 'enable-facebook-sharing' => 'TEXT', 'enable-facebook-sharing.' => array('value' => '0'), 'enable-twitter-sharing' => 'TEXT', 'enable-twitter-sharing.' => array('value' => '1'), 'enable-xing-sharing' => 'TEXT', 'enable-xing-sharing.' => array('value' => '0'), 'enable-linkedin-sharing' => 'TEXT', 'enable-linkedin-sharing.' => array('value' => '0'), 'enable-whatsapp-sharing' => 'TEXT', 'enable-whatsapp-sharing.' => array('value' => '0'), 'enable-mail-sharing' => 'TEXT', 'enable-mail-sharing.' => array('value' => '1'), 'enable-native-sharing' => 'TEXT', 'enable-native-sharing.' => array('value' => '1'), 'facebook-channel' => 'TEXT', 'facebook-channel.' => array('value' => ''), 'twitter-channel' => 'TEXT', 'twitter-channel.' => array('value' => ''), 'youtube-channel' => 'TEXT', 'youtube-channel.' => array('value' => ''), 'xing-channel' => 'TEXT', 'xing-channel.' => array('value' => ''), 'linkedin-channel' => 'TEXT', 'linkedin-channel.' => array('value' => ''), 'instagram-channel' => 'TEXT', 'instagram-channel.' => array('value' => '')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value' => '6907'), 'levels' => '3', 'as' => 'mainMenu', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value' => '6930'), 'levels' => '2', 'as' => 'metaMenu', 'expandAll' => '0', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'directory', 'special.' => array('value' => '6931'), 'levels' => '0', 'as' => 'footerMenu', 'expandAll' => '0', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '0', 'as' => 'footerQuicklinks', 'expandAll' => '0', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '60.' => array('languages' => 'auto', 'as' => 'languageMenu'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\SiteProcessor', '100.' => array('as' => 'siteConfiguration'))), 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('stdWrap.' => array('noTrimWrap' => '| <body class="|"> |'), 'TEXT', 'CASE', '20.' => array('key.' => array('field' => 'is_siteroot'), 'default' => 'TEXT', 'default.' => array('noTrimWrap' => '| rootpage |'), 'TEXT', '0.' => array('noTrimWrap' => '| subpage |')), 'TEXT', '30.' => array('stdWrap.' => array('data' => 'layout', 'override.' => array('field' => 'layout'), 'dataWrap' => 'is-template-|')))), '')
in /var/www/vhosts/baek/web/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('includeJSFooter.' => array('EXT:lns_gadgets/Resources/Public/JavaScript/Vendor/intersectionObserver.min.js', '1627297316.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'EXT:lns_gadgets/Resources/Public/JavaScript/scroll.js', 'EXT:lns_gadgets/Resources/Public/JavaScript/click.min.js', '1627297516.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'EXT:lns_gadgets/Resources/Public/JavaScript/showmore.js', 'EXT:lns_gadgets/Resources/Public/JavaScript/lns_gadgets_tabsheets.min.js', '1627297716.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'EXT:lns_gadgets/Resources/Public/JavaScript/lns_gadgets_accordion.js', '1627297816.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'EXT:lns_gadgets/Resources/Public/JavaScript/lns_gadgets_slider.js', 'EXT:lns_gadgets/Resources/Public/JavaScript/pages.min.js', '1627298016.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'EXT:lns_gadgets/Resources/Public/JavaScript/counter.min.js', '1627298116.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'EXT:lns_gadgets/Resources/Public/JavaScript/sharing.min.js', '1627298216.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'EXT:lns_gadgets/Resources/Public/JavaScript/lightbox.js', 'focus' => 'EXT:lns_imagefocus/Resources/Public/JavaScript/focus.min.js', 'focus.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'viewport' => 'EXT:lns_imagefocus/Resources/Public/JavaScript/viewport.min.js', 'viewport.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'objectfit' => 'EXT:lns_imagefocus/Resources/Public/JavaScript/object-fit.min.js', 'objectfit.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'video' => 'EXT:lns_imagefocus/Resources/Public/JavaScript/video.min.js', 'video.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'youtube' => 'EXT:lns_cookiebot/Resources/Public/JavaScript/youtube.js', 'youtube.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'vimeo' => 'EXT:lns_cookiebot/Resources/Public/JavaScript/vimeo.js', 'vimeo.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'audio' => 'EXT:lns_cookiebot/Resources/Public/JavaScript/audio.js', 'audio.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'iframe' => 'EXT:lns_cookiebot/Resources/Public/JavaScript/iframe.js', 'iframe.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'twitter' => 'EXT:lns_cookiebot/Resources/Public/JavaScript/twitter.js', 'twitter.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'powermailJQueryDatepicker' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/jquery.datetimepicker.min.js', 'powermailJQueryFormValidation' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/parsley.min.js', 'powermailJQueryTabs' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Tabs.min.js', 'powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'EXT:lns_sitepackage_baek/Resources/Public/JavaScript/menu-navi.js', '1627994902.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'EXT:lns_sitepackage_baek/Resources/Public/JavaScript/search-as-you-type.js', 'EXT:lns_sitepackage_baek/Resources/Public/JavaScript/counter.js', 'EXT:lns_sitepackage_baek/Resources/Public/JavaScript/scrollable-tables.js', '1688888888.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'markExternalLinks' => 'EXT:lns_cookiebot/Resources/Public/JavaScript/markExternalLinks.min.js', 'markExternalLinks.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0')), 'includeCSS.' => array('youtube' => 'EXT:lns_cookiebot/Resources/Public/Styles/youtube.css', 'youtube.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'vimeo' => 'EXT:lns_cookiebot/Resources/Public/Styles/vimeo.css', 'vimeo.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'audio' => 'EXT:lns_cookiebot/Resources/Public/Styles/audio.css', 'audio.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'iframe' => 'EXT:lns_cookiebot/Resources/Public/Styles/iframe.css', 'iframe.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'bootstrap5' => 'EXT:lns_sitepackage_baek/Resources/Public/Styles/Vendor/Bootstrap/bootstrap-5.0.2/css/bootstrap-grid.css', 'bootstrap5.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '0'), 'fontawesomenew' => 'EXT:lns_sitepackage_baek/Resources/Public/Styles/Vendor/icon-fonts/fontawesome/5.15.3/all.css', 'fontawesomenew.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '1'), 'fontIcons' => 'EXT:lns_sitepackage_baek/Resources/Public/Styles/Vendor/icon-fonts/font-icons/font-icons.css', 'fontIcons.' => array('external' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '1'), 'sitepackageMain' => 'EXT:lns_theme_akdae/Resources/Public/Styles/main.css', 'sitepackageMain.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'sitepackageGadgets' => 'EXT:lns_theme_akdae/Resources/Public/Styles/lns-gadgets.css', 'sitepackageGadgets.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'sitepackagePrint' => 'EXT:lns_theme_akdae/Resources/Public/Styles/print.css', 'sitepackagePrint.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'sitepackageOverwrite' => 'EXT:lns_theme_akdae/Resources/Public/Styles/overwrite.css', 'sitepackageOverwrite.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'sitepackageSecond' => 'EXT:lns_theme_akdae/Resources/Public/Styles/mainSecond.css', 'sitepackageSecond.' => array('external' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'solr-suggest' => 'EXT:solr/Resources/Public/StyleSheets/Frontend/suggest.css'), 'includeJSFooterlibs.' => array('powermailJQuery' => 'EXT:lns_sitepackage_baek/Resources/Public/JavaScript/Vendor/jquery-1.11.3/jquery.min.js', 'powermailJQuery.' => array('external' => '1'), 'solr-jquery' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery.min.js', 'solr-autocomplete' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery.autocomplete.min.js', 'solr-suggest' => 'EXT:solr/Resources/Public/JavaScript/suggest_controller.js'), 'config.' => array('headerComment' => ' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - .:/+//-` `-:/++/:` `+yhhhhhhhhy+- `:oyhhhhhhhhs: .yhhhhhhhhhhhhhs+yhhhhhhhhhhhhh+yMMMMMN` +MMMMMy dMMMMM` dMMMMMMMMMMMMMd shhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh- yMMMMN` +MMMMMy dMMMMm` dMMMMMMMMMMMMMd hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh/ .NMMMMo dMMMMMM. -MMMMM/ dMMMMd yhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh: oMMMMN`-MMMMMMMs yMMMMm dMMMMs :hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhs` `mMMMMoyMMMMMMMN-MMMMM/ dMMMMNmmmmm+ /hhhhhhhhhhhhhhhhhhhhhhhhhhhhy. /MMMMNNMMMsMMMMNMMMMd dMMMMMMMMMM+ :yhhhhhhhhhhhhhhhhhhhhhhhhho` dMMMMMMMN`dMMMMMMMM: dMMMMh .ohhhhhhhhhhhhhhhhhhhhhhy:` -MMMMMMMy /MMMMMMMd dMMMMs -shhhhhhhhhhhhhhhhhhy+` yMMMMMM: `NMMMMMM: dMMMMNddddddddy `-ohhhhhhhhhhhhhhy+. .NMMMMm sMMMMMh dMMMMMMMMMMMMMd `-oyhhhhhhhhhy/. -oyhhhhhs/` .+yhs:` .:. MMMMMMMMMMMMMMMM :NMMMMo .mMMMMh` sMMMMMMMMMMMNd hNMMMMMMMNdo MMMMMMMMMMMMMs mmmmmMMMMMNmmmmm /MMMMM: `hMMMMd` sMMMMMmmmmMMMMMs MMMMMmdmNMMMMd mmmmmNMMMMMMMs dMMMMs +MMMMN.sMMMMd. sMMMMd oMMMMM :MMMMM/` -mMMMMs -odMMMMNdo. dMMMMo oMMMMmMMMMm. sMMMMd oMMMMM +MMMMM yMMMMd yMMMMMMMd/` dMMMMo sMMMMMMMN. sMMMMMmmmNMMMMN +MMMMM yMMMMd -dMNmNMMMMd. dMMMMo yMMMMMN- sMMMMMMMMMMNmy +MMMMM yMMMMd hMMMMh dMMMMo MMMMMo sMMMMm /MMMMM. dMMMMh hhhhs sMMMMN dMMMMo MMMMM+ sMMMMd `mMMMMms+odMMMMM: MMMMMy+sMMMMMs dMMMMo MMMMM+ sMMMMd `yMMMMMMMMMMMm: /mMMMMMMMMMNs dMMMMo MMMMM+ sMMMMd .+ydmmmmho- /sdmmmmmdy+`Auch unter der Haube geht’s bei uns mit Leidenschaft zu.© SCHAFFRATH ⋅|⋅ Deine TYPO3-Agentur ⋅|⋅ www.schaffrath.de/digital✔erfahren ✔agil ✔zertifiziert ✔partnerschaftlich- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -', 'doctype' => 'html5', 'xmlprologue' => 'none', 'noPageTitle' => '0', 'index_enable' => '1', 'extTarget' => '_blank', 'intTarget' => '_self', 'absRefPrefix' => 'auto', 'sendCacheHeaders' => '1', 'cache_period' => '86400', 'no_cache' => '0', 'disablePrefixComment' => '1', 'disableImgBorderAttr' => '1', 'contentObjectExceptionHandler' => '0', 'additionalHeaders.' => array('20.' => array('header' => 'Cache-control: no-cache, must-revalidate')), 'compressJs' => '1', 'compressCss' => '1', 'concatenateJs' => '1', 'concatenateCss' => '1'), 'shortcutIcon' => 'EXT:lns_theme_akdae/Resources/Public/Images/favicon.ico', 'typeNum' => '0', 'meta.' => array('viewport' => 'width=device-width, initial-scale=1.0001, minimum-scale=1.0001, maximum-scale=2.0001, user-scalable=yes', 'format-detection' => 'telephone=no', 'author.' => array('data' => 'TSFE:page|author'), 'robots' => 'index, follow'), 'headerData.' => array('30.' => array('stdWrap.' => array('wrap' => '<meta name="google-site-verification" content="|" />', 'required' => '1'))), 'FLUIDTEMPLATE', '10.' => array('layoutRootPaths.' => array('EXT:lns_sitepackage_baek/Resources/Private/Html/Layouts/', 'EXT:lns_theme_akdae/Resources/Private/Html/Layouts/'), 'partialRootPaths.' => array('EXT:lns_sitepackage_baek/Resources/Private/Html/Partials/', 'EXT:lns_theme_akdae/Resources/Private/Html/Partials/'), 'templateRootPaths.' => array('EXT:lns_sitepackage_baek/Resources/Private/Html/Templates/', 'EXT:lns_theme_akdae/Resources/Private/Html/Templates/'), 'templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'variables.' => array('backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'sitepackageExtKey' => 'TEXT', 'sitepackageExtKey.' => array('value' => 'lns_sitepackage_baek'), 'companyName' => 'TEXT', 'companyName.' => array('value' => 'Arzneimittelkommission der deutschen Ärzteschaft'), 'defaultLogo' => 'TEXT', 'defaultLogo.' => array('value' => 'akdea-logo.svg'), 'companyClaim' => 'TEXT', 'companyClaim.' => array('value' => ''), 'companyClaimSubline' => 'TEXT', 'companyClaimSubline.' => array('value' => 'Wissenschaftlicher Fachausschuss der Bundesärztekammer'), 'rootPageUid' => 'TEXT', 'rootPageUid.' => array('value' => '6907'), 'FrRootPageUid' => 'TEXT', 'FrRootPageUid.' => array('value' => '6731'), 'EnRootPageUid' => 'TEXT', 'EnRootPageUid.' => array('value' => '6732'), 'ArRootPageUid' => 'TEXT', 'ArRootPageUid.' => array('value' => '6730'), 'fakeLanguage' => 'TEXT', 'fakeLanguage.' => array('value' => 'DE'), 'logoLinkPage' => 'TEXT', 'logoLinkPage.' => array('value' => '6907'), 'schemaorgDefaultLogo' => 'TEXT', 'schemaorgDefaultLogo.' => array('value' => 'typo3conf/ext/lns_sitepackage_baek/Resources/Public/Images/logo/akdea-logo.svg'), 'schemaorgCompanyAddressStreet' => 'TEXT', 'schemaorgCompanyAddressStreet.' => array('value' => 'Herbert-Lewin-Platz 1 (Wegelystraße)'), 'schemaorgCompanyAddressPostalcode' => 'TEXT', 'schemaorgCompanyAddressPostalcode.' => array('value' => '10623'), 'schemaorgCompanyAddressCountry' => 'TEXT', 'schemaorgCompanyAddressCountry.' => array('value' => 'Berlin'), 'enableHighcontrastmode' => 'TEXT', 'enableHighcontrastmode.' => array('value' => '0'), 'enableLogin' => 'TEXT', 'enableLogin.' => array('value' => '0'), 'loginPageUid' => 'TEXT', 'loginPageUid.' => array('value' => ''), 'enableHeaderSearchfield' => 'TEXT', 'enableHeaderSearchfield.' => array('value' => '1'), 'searchPageUid' => 'TEXT', 'searchPageUid.' => array('value' => '6933'), 'enableHeaderLanguagemenu' => 'TEXT', 'enableHeaderLanguagemenu.' => array('value' => '0'), 'enable-facebook-sharing' => 'TEXT', 'enable-facebook-sharing.' => array('value' => '0'), 'enable-twitter-sharing' => 'TEXT', 'enable-twitter-sharing.' => array('value' => '1'), 'enable-xing-sharing' => 'TEXT', 'enable-xing-sharing.' => array('value' => '0'), 'enable-linkedin-sharing' => 'TEXT', 'enable-linkedin-sharing.' => array('value' => '0'), 'enable-whatsapp-sharing' => 'TEXT', 'enable-whatsapp-sharing.' => array('value' => '0'), 'enable-mail-sharing' => 'TEXT', 'enable-mail-sharing.' => array('value' => '1'), 'enable-native-sharing' => 'TEXT', 'enable-native-sharing.' => array('value' => '1'), 'facebook-channel' => 'TEXT', 'facebook-channel.' => array('value' => ''), 'twitter-channel' => 'TEXT', 'twitter-channel.' => array('value' => ''), 'youtube-channel' => 'TEXT', 'youtube-channel.' => array('value' => ''), 'xing-channel' => 'TEXT', 'xing-channel.' => array('value' => ''), 'linkedin-channel' => 'TEXT', 'linkedin-channel.' => array('value' => ''), 'instagram-channel' => 'TEXT', 'instagram-channel.' => array('value' => '')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value' => '6907'), 'levels' => '3', 'as' => 'mainMenu', 'expandAll' => '1', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value' => '6930'), 'levels' => '2', 'as' => 'metaMenu', 'expandAll' => '0', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'directory', 'special.' => array('value' => '6931'), 'levels' => '0', 'as' => 'footerMenu', 'expandAll' => '0', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '40.' => array('special' => 'directory', 'special.' => array('value' => ''), 'levels' => '0', 'as' => 'footerQuicklinks', 'expandAll' => '0', 'includeSpacer' => '0', 'titleField' => 'nav_title // title'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '60.' => array('languages' => 'auto', 'as' => 'languageMenu'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\SiteProcessor', '100.' => array('as' => 'siteConfiguration'))), 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('stdWrap.' => array('noTrimWrap' => '| <body class="|"> |'), 'TEXT', 'CASE', '20.' => array('key.' => array('field' => 'is_siteroot'), 'default' => 'TEXT', 'default.' => array('noTrimWrap' => '| rootpage |'), 'TEXT', '0.' => array('noTrimWrap' => '| subpage |')), 'TEXT', '30.' => array('stdWrap.' => array('data' => 'layout', 'override.' => array('field' => 'layout'), 'dataWrap' => 'is-template-|')))))
in /var/www/vhosts/baek/web/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(Lns\LnsSeo\Controller\SeoTypoScriptFrontendController))
in /var/www/vhosts/baek/web/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(Lns\LnsSeo\Controller\SeoTypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/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/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/typo3conf/ext/solr/Classes/Middleware/PageIndexerFinisher.php line 42
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if ($request->hasHeader(PageIndexerRequest::SOLR_INDEX_HEADER)) {
            /* @var PageIndexerRequestHandler $pageIndexerRequestHandler */
            $pageIndexerRequestHandler = GeneralUtility::makeInstance(PageIndexerRequestHandler::class);
            $pageIndexerRequestHandler->shutdown();
at ApacheSolrForTypo3\Solr\Middleware\PageIndexerFinisher->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/typo3conf/ext/solr/Classes/Middleware/PageIndexerInitialization.php line 66
            }
            $pageIndexerRequestHandler->run();
        }

        return $handler->handle($request);
    }
}
at ApacheSolrForTypo3\Solr\Middleware\PageIndexerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/typo3conf/ext/solr/Classes/Middleware/SolrRoutingMiddleware.php line 140
            $this->language->getLanguageId() === 0 ? (int)$page['uid'] : (int)$page['l10n_parent']
        );

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

        $this->configure($enhancerConfiguration);

at ApacheSolrForTypo3\Solr\Middleware\SolrRoutingMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273))
in /var/www/vhosts/baek/web/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/baek/web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$273->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/baek/web/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/baek/web/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/baek/web/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/baek/web/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/baek/web/index.php line 20
// Set up the application for the frontend
call_user_func(static function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /var/www/vhosts/baek/web/index.php line 21
call_user_func(static function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});