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 Xevents\Xevents\Domain\Model\Event with identity "36" not found.

in /html/typo3-10/releases/437/typo3_src/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('36', 'Xevents\\Xevents\\Domain\\Model\\Event')
in /html/typo3-10/releases/437/typo3_src/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('36', 'Xevents\\Xevents\\Domain\\Model\\Event', array(), object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/extbase/Classes/Property/PropertyMapper.php line 205
            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('36', 'Xevents\\Xevents\\Domain\\Model\\Event', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration), array())
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/extbase/Classes/Property/PropertyMapper.php line 122
        }
        $currentPropertyPath = [];
        $this->messages = new Result();
        try {
            $result = $this->doMapping($source, $targetType, $configuration, $currentPropertyPath);
            if ($result instanceof Error) {
                return null;
            }

at TYPO3\CMS\Extbase\Property\PropertyMapper->convert('36', 'Xevents\\Xevents\\Domain\\Model\\Event', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/extbase/Classes/Mvc/Controller/Argument.php line 268
            $this->value = $rawValue;
            return $this;
        }
        try {
            $this->value = $this->propertyMapper->convert($rawValue, $this->dataType, $this->propertyMappingConfiguration);
        } catch (TargetNotFoundException $e) {
            // for optional arguments no exception is thrown.
            if ($this->isRequired()) {
                throw $e;
at TYPO3\CMS\Extbase\Mvc\Controller\Argument->setValue('36')
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 962
        /** @var \TYPO3\CMS\Extbase\Mvc\Controller\Argument $argument */
        foreach ($this->arguments as $argument) {
            $argumentName = $argument->getName();
            if ($this->request->hasArgument($argumentName)) {
                $argument->setValue($this->request->getArgument($argumentName));
            } elseif ($argument->isRequired()) {
                throw new RequiredArgumentMissingException('Required argument "' . $argumentName . '" is not set for ' . $this->request->getControllerObjectName() . '->' . $this->request->getControllerActionName() . '.', 1298012500);
            }
        }
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->mapRequestArgumentsToControllerArguments()
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 420
            // todo: replace method_exists with is_callable or even both
            //       method_exists alone does not guarantee that $callable is actually callable
            call_user_func($callable);
        }
        $this->mapRequestArgumentsToControllerArguments();
        $this->controllerContext = $this->buildControllerContext();
        $this->view = $this->resolveView();
        if ($this->view !== null) {
            $this->initializeView($this->view);
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 89
                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 {
                $controller->processRequest($request, $response);
            } catch (StopActionException $ignoredException) {
            }
        }

at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 66
        }

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

    /**
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest()
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 183
    protected function handleRequest(): string
    {
        $requestHandler = $this->requestHandlerResolver->resolveRequestHandler();

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

    /**
     * @return string
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xevents', 'pluginName' => 'Xevents'))
at call_user_func_array(array(object(TYPO3\CMS\Extbase\Core\Bootstrap), 'run'), array('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xevents', 'pluginName' => 'Xevents')))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5720
                if (is_object($classObj) && method_exists($classObj, $parts[1]) && is_callable($callable)) {
                    $classObj->cObj = $this;
                    $content = call_user_func_array($callable, [
                        $content,
                        $conf
                    ]);
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', 3);
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xevents', 'pluginName' => 'Xevents'), '')
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 43
        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' => 'Xevents', 'pluginName' => 'Xevents'))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // 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' => 'Xevents', 'pluginName' => 'Xevents'))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xevents', 'pluginName' => 'Xevents'), 'tt_content.list.20.xevents_xevents')
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 193
        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('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'sitetemplate_pages' => 'USER', 'sitetemplate_pages.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Sitetemplate', 'pluginName' => 'Pages'), 'xdocfinder_xdocfinder' => 'USER', 'xdocfinder_xdocfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xdocfinder', 'pluginName' => 'Xdocfinder'), 'falsecuredownload_filetree' => 'USER', 'falsecuredownload_filetree.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FalSecuredownload', 'pluginName' => 'Filetree'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'omxawss3_listfiles' => 'USER', 'omxawss3_listfiles.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxAwsS3', 'pluginName' => 'Listfiles'), 'omxgeoipbanner_pi1' => 'USER', 'omxgeoipbanner_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxGeoipBanner', 'pluginName' => 'Pi1'), 'omxproductfinder_productfinder' => 'USER', 'omxproductfinder_productfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinder'), 'omxproductfinder_productfinderajax' => 'USER', 'omxproductfinder_productfinderajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinderajax'), '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'), 'xclinicallibrary_xcl' => 'USER', 'xclinicallibrary_xcl.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XClinicallibrary', 'pluginName' => 'Xcl'), 'xseller_ommaxseller' => 'USER', 'xseller_ommaxseller.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XSeller', 'pluginName' => 'Ommaxseller'), 'xevents_xevents' => 'USER', 'xevents_xevents.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xevents', 'pluginName' => 'Xevents')), 'tt_content.list.20.xevents_xevents', 'xevents_xevents')
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 170
                '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' => 4880, 'pid' => 113, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 4867, 'tstamp' => 1587658991, 'crdate' => 1587657646, 'cruser_id' => 1, 'editlock' => 0, 'hidden' => 0, 'sorting' => 32, 'CType' => 'list', 'header' => ' (copy 2)', 'header_position' => '', 'rowDescription' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => '100', 'frame_class' => '0', 'deleted' => 0, 'cols' => 0, 'spaceBefore' => 0, 'spaceAfter' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => '', 'pages' => '151', 'starttime' => 0, 'endtime' => 0, 'colPos' => 4, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '1', 'list_type' => 'xevents_xevents', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 3, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:27:{s:5:"CType";N;s:6:"colPos";N;s:6:"header";N;s:13:"header_layout";N;s:15:"header_position";N;s:4:"date";N;s:11:"header_link";N;s:9:"subheader";N;s:9:"list_type";N;s:5:"pages";N;s:9:"recursive";N;s:6:"layout";N;s:11:"frame_class";N;s:18:"space_before_class";N;s:17:"space_after_class";N;s:12:"sectionIndex";N;s:9:"linkToTop";N;s:16:"sys_language_uid";N;s:11:"l18n_parent";N;s:6:"hidden";N;s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:25:"tx_gridelements_container";N;}', 'l10n_source' => 0, 'selected_categories' => '', 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 0, 'l10n_state' => null, 'categories' => 0, 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '0', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'tx_sitetemplate_bgcolor' => '', 'tx_sitetemplate_nomargintop' => 0, 'tx_sitetemplate_nomarginbottom' => 0, 'tx_sitetemplate_twocolumns' => 0, 'tx_sitetemplate_textposition' => '', 'tx_sitetemplate_backgroundpositionx' => 0, 'tx_sitetemplate_backgroundpositiony' => 0, 'tx_sitetemplate_backgroundposition' => '', 'tx_sitetemplate_bluebox' => 0, 'tx_sitetemplate_fullsize' => 0, 'tx_sitetemplate_cta' => 0, 'tx_sitetemplate_title' => '', 'tx_sitetemplate_link' => '', 'tx_news_related_news' => 0, 'filelink_sorting_direction' => '', 'gridelements_shortcut_page_order_by' => 0, 'tx_dce_dce' => 0, 'tx_dce_index' => null, 'tx_dce_new_container' => 0, 'tx_dce_slug' => '', 'tx_sitetemplate_download_overview' => 0, 'tx_sitetemplate_timeline_slider_icon' => 0), 'typoscriptObjectPath' => 'tt_content.list.20.xevents_xevents', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3-10/shared/typo3temp/var/cache/code/fluid_template/Standard_action_list_d68ac1b105e0ff86d50c74529f564244bcbdb7c9.php line 60
$array5 = array (
);$arguments1['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array5);
$arguments1['table'] = 'tt_content';
$renderChildrenClosure2 = ($arguments1['data'] !== null) ? function() use ($arguments1) { return $arguments1['data']; } : $renderChildrenClosure2;
$output0 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '

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

$output3 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments1490, $renderChildrenClosure1491, $renderingContext);

$output3 .= '

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

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

$output0 .= '
';

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

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

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

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'EXT:sitetemplate/Resources/Private/Templates/FluidStyledContent/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'EXT:sitetemplate/Resources/Private/Partials/FluidStyledContent/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'EXT:sitetemplate/Resources/Private/Layouts/FluidStyledContent/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), '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'), 'sitetemplate_pages' => 'USER', 'sitetemplate_pages.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Sitetemplate', 'pluginName' => 'Pages'), 'xdocfinder_xdocfinder' => 'USER', 'xdocfinder_xdocfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xdocfinder', 'pluginName' => 'Xdocfinder'), 'falsecuredownload_filetree' => 'USER', 'falsecuredownload_filetree.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FalSecuredownload', 'pluginName' => 'Filetree'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'omxawss3_listfiles' => 'USER', 'omxawss3_listfiles.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxAwsS3', 'pluginName' => 'Listfiles'), 'omxgeoipbanner_pi1' => 'USER', 'omxgeoipbanner_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxGeoipBanner', 'pluginName' => 'Pi1'), 'omxproductfinder_productfinder' => 'USER', 'omxproductfinder_productfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinder'), 'omxproductfinder_productfinderajax' => 'USER', 'omxproductfinder_productfinderajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinderajax'), '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'), 'xclinicallibrary_xcl' => 'USER', 'xclinicallibrary_xcl.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XClinicallibrary', 'pluginName' => 'Xcl'), 'xseller_ommaxseller' => 'USER', 'xseller_ommaxseller.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XSeller', 'pluginName' => 'Ommaxseller'), 'xevents_xevents' => 'USER', 'xevents_xevents.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xevents', 'pluginName' => 'Xevents'))))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'EXT:sitetemplate/Resources/Private/Templates/FluidStyledContent/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'EXT:sitetemplate/Resources/Private/Partials/FluidStyledContent/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'EXT:sitetemplate/Resources/Private/Layouts/FluidStyledContent/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), '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'), 'sitetemplate_pages' => 'USER', 'sitetemplate_pages.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Sitetemplate', 'pluginName' => 'Pages'), 'xdocfinder_xdocfinder' => 'USER', 'xdocfinder_xdocfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xdocfinder', 'pluginName' => 'Xdocfinder'), 'falsecuredownload_filetree' => 'USER', 'falsecuredownload_filetree.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FalSecuredownload', 'pluginName' => 'Filetree'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'omxawss3_listfiles' => 'USER', 'omxawss3_listfiles.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxAwsS3', 'pluginName' => 'Listfiles'), 'omxgeoipbanner_pi1' => 'USER', 'omxgeoipbanner_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxGeoipBanner', 'pluginName' => 'Pi1'), 'omxproductfinder_productfinder' => 'USER', 'omxproductfinder_productfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinder'), 'omxproductfinder_productfinderajax' => 'USER', 'omxproductfinder_productfinderajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinderajax'), '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'), 'xclinicallibrary_xcl' => 'USER', 'xclinicallibrary_xcl.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XClinicallibrary', 'pluginName' => 'Xcl'), 'xseller_ommaxseller' => 'USER', 'xseller_ommaxseller.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XSeller', 'pluginName' => 'Ommaxseller'), 'xevents_xevents' => 'USER', 'xevents_xevents.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xevents', 'pluginName' => 'Xevents'))))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'EXT:sitetemplate/Resources/Private/Templates/FluidStyledContent/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'EXT:sitetemplate/Resources/Private/Partials/FluidStyledContent/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'EXT:sitetemplate/Resources/Private/Layouts/FluidStyledContent/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), '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'), 'sitetemplate_pages' => 'USER', 'sitetemplate_pages.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Sitetemplate', 'pluginName' => 'Pages'), 'xdocfinder_xdocfinder' => 'USER', 'xdocfinder_xdocfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xdocfinder', 'pluginName' => 'Xdocfinder'), 'falsecuredownload_filetree' => 'USER', 'falsecuredownload_filetree.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FalSecuredownload', 'pluginName' => 'Filetree'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'omxawss3_listfiles' => 'USER', 'omxawss3_listfiles.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxAwsS3', 'pluginName' => 'Listfiles'), 'omxgeoipbanner_pi1' => 'USER', 'omxgeoipbanner_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxGeoipBanner', 'pluginName' => 'Pi1'), 'omxproductfinder_productfinder' => 'USER', 'omxproductfinder_productfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinder'), 'omxproductfinder_productfinderajax' => 'USER', 'omxproductfinder_productfinderajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinderajax'), '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'), 'xclinicallibrary_xcl' => 'USER', 'xclinicallibrary_xcl.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XClinicallibrary', 'pluginName' => 'Xcl'), 'xseller_ommaxseller' => 'USER', 'xseller_ommaxseller.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XSeller', 'pluginName' => 'Ommaxseller'), 'xevents_xevents' => 'USER', 'xevents_xevents.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xevents', 'pluginName' => 'Xevents'))), 'lib.contentElement')
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'EXT:sitetemplate/Resources/Private/Templates/FluidStyledContent/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'EXT:sitetemplate/Resources/Private/Partials/FluidStyledContent/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'EXT:sitetemplate/Resources/Private/Layouts/FluidStyledContent/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), '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'), 'sitetemplate_pages' => 'USER', 'sitetemplate_pages.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Sitetemplate', 'pluginName' => 'Pages'), 'xdocfinder_xdocfinder' => 'USER', 'xdocfinder_xdocfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xdocfinder', 'pluginName' => 'Xdocfinder'), 'falsecuredownload_filetree' => 'USER', 'falsecuredownload_filetree.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FalSecuredownload', 'pluginName' => 'Filetree'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'omxawss3_listfiles' => 'USER', 'omxawss3_listfiles.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxAwsS3', 'pluginName' => 'Listfiles'), 'omxgeoipbanner_pi1' => 'USER', 'omxgeoipbanner_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxGeoipBanner', 'pluginName' => 'Pi1'), 'omxproductfinder_productfinder' => 'USER', 'omxproductfinder_productfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinder'), 'omxproductfinder_productfinderajax' => 'USER', 'omxproductfinder_productfinderajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinderajax'), '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'), 'xclinicallibrary_xcl' => 'USER', 'xclinicallibrary_xcl.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XClinicallibrary', 'pluginName' => 'Xcl'), 'xseller_ommaxseller' => 'USER', 'xseller_ommaxseller.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XSeller', 'pluginName' => 'Ommaxseller'), 'xevents_xevents' => 'USER', 'xevents_xevents.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xevents', 'pluginName' => 'Xevents'))), 'list')
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 47
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'shortcut.' => array('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')))), 'variables.' => array('shortcuts.' => array('tables' => 'tt_content,pages', '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')), 'pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')), 'source.' => array('field' => 'records')), 'shortcuts' => 'RECORDS'), 'templateName' => 'Shortcut', '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')))), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '|', 'insertData' => '1'), 'TEXT', '16.' => array('value' => '<div class="contentdiv-b" id="c{field:uid}"><div class="container"><div class="row">|</div></div></div>', 'insertData' => '1'), 'TEXT', '17.' => array('value' => '<section class="mainslick" id="c{field:uid}">|</section>', 'insertData' => '1'), 'TEXT', '18.' => array('value' => '|')))), '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' => 'All', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '2000', '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'), 'sitetemplate_pages' => 'USER', 'sitetemplate_pages.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Sitetemplate', 'pluginName' => 'Pages'), 'xdocfinder_xdocfinder' => 'USER', 'xdocfinder_xdocfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xdocfinder', 'pluginName' => 'Xdocfinder'), 'falsecuredownload_filetree' => 'USER', 'falsecuredownload_filetree.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FalSecuredownload', 'pluginName' => 'Filetree'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'omxawss3_listfiles' => 'USER', 'omxawss3_listfiles.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxAwsS3', 'pluginName' => 'Listfiles'), 'omxgeoipbanner_pi1' => 'USER', 'omxgeoipbanner_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxGeoipBanner', 'pluginName' => 'Pi1'), 'omxproductfinder_productfinder' => 'USER', 'omxproductfinder_productfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinder'), 'omxproductfinder_productfinderajax' => 'USER', 'omxproductfinder_productfinderajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinderajax'), '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'), 'xclinicallibrary_xcl' => 'USER', 'xclinicallibrary_xcl.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XClinicallibrary', 'pluginName' => 'Xcl'), 'xseller_ommaxseller' => 'USER', 'xseller_ommaxseller.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XSeller', 'pluginName' => 'Ommaxseller'), 'xevents_xevents' => 'USER', 'xevents_xevents.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xevents', 'pluginName' => 'Xevents'))), 'shortcut' => '< lib.contentElement', 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '2000', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '2000', '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'), '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')))), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), '1.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/clients_slider.html')), '2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-blue">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-brown">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters">|</div></section>'), '3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="row fullbg-big"><article class="col-xs-12 col-md-4">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4">|</article></div>'), '40.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="fullbg">|</div>')), 'wrap' => '<section class="container-full">|</section>'), '4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/4-66-33.html')), '5.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 col-md-offset-1 clrdbox clrdbox-blue">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>'), '40.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>'), '50.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters minus-offset">|</div></section>'), '6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-sm-4 imghover-item">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-sm-4 imghover-item">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-sm-4 imghover-item">|</article>')), 'wrap' => '<section class="container-full"><div class="row no-gutters imghover">|</div></section>'), '7.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/timeline.html')), '8.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/team.html')), '9.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/accordeon.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'backgroundimage')))), '10.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 clrdbox clrdbox-topBorder">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 clrdbox clrdbox-topBorder">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 clrdbox clrdbox-topBorder">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters">|</div></section>'), '11.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/accordeon.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'backgroundimage')))), '15.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/accordeon.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'backgroundimage')))), '12.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/50-50.html')), '13.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 column">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 column">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 column">|</article>')), 'wrap' => '<section class="container normalThreeColGrid"><div class="row">|</div></section>'), '14.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/70-30.html')), '16.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-topBorder">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-topBorder">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters">|</div></section>'), '17.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/timeline-v2.html')))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))))))))))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'shortcut.' => array('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')))), 'variables.' => array('shortcuts.' => array('tables' => 'tt_content,pages', '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')), 'pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')), 'source.' => array('field' => 'records')), 'shortcuts' => 'RECORDS'), 'templateName' => 'Shortcut', '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')))), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '|', 'insertData' => '1'), 'TEXT', '16.' => array('value' => '<div class="contentdiv-b" id="c{field:uid}"><div class="container"><div class="row">|</div></div></div>', 'insertData' => '1'), 'TEXT', '17.' => array('value' => '<section class="mainslick" id="c{field:uid}">|</section>', 'insertData' => '1'), 'TEXT', '18.' => array('value' => '|')))), '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' => 'All', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '2000', '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'), 'sitetemplate_pages' => 'USER', 'sitetemplate_pages.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Sitetemplate', 'pluginName' => 'Pages'), 'xdocfinder_xdocfinder' => 'USER', 'xdocfinder_xdocfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xdocfinder', 'pluginName' => 'Xdocfinder'), 'falsecuredownload_filetree' => 'USER', 'falsecuredownload_filetree.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FalSecuredownload', 'pluginName' => 'Filetree'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'omxawss3_listfiles' => 'USER', 'omxawss3_listfiles.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxAwsS3', 'pluginName' => 'Listfiles'), 'omxgeoipbanner_pi1' => 'USER', 'omxgeoipbanner_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxGeoipBanner', 'pluginName' => 'Pi1'), 'omxproductfinder_productfinder' => 'USER', 'omxproductfinder_productfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinder'), 'omxproductfinder_productfinderajax' => 'USER', 'omxproductfinder_productfinderajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinderajax'), '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'), 'xclinicallibrary_xcl' => 'USER', 'xclinicallibrary_xcl.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XClinicallibrary', 'pluginName' => 'Xcl'), 'xseller_ommaxseller' => 'USER', 'xseller_ommaxseller.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XSeller', 'pluginName' => 'Ommaxseller'), 'xevents_xevents' => 'USER', 'xevents_xevents.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xevents', 'pluginName' => 'Xevents'))), 'shortcut' => '< lib.contentElement', 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '2000', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '2000', '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'), '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')))), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), '1.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/clients_slider.html')), '2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-blue">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-brown">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters">|</div></section>'), '3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="row fullbg-big"><article class="col-xs-12 col-md-4">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4">|</article></div>'), '40.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="fullbg">|</div>')), 'wrap' => '<section class="container-full">|</section>'), '4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/4-66-33.html')), '5.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 col-md-offset-1 clrdbox clrdbox-blue">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>'), '40.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>'), '50.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters minus-offset">|</div></section>'), '6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-sm-4 imghover-item">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-sm-4 imghover-item">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-sm-4 imghover-item">|</article>')), 'wrap' => '<section class="container-full"><div class="row no-gutters imghover">|</div></section>'), '7.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/timeline.html')), '8.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/team.html')), '9.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/accordeon.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'backgroundimage')))), '10.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 clrdbox clrdbox-topBorder">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 clrdbox clrdbox-topBorder">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 clrdbox clrdbox-topBorder">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters">|</div></section>'), '11.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/accordeon.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'backgroundimage')))), '15.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/accordeon.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'backgroundimage')))), '12.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/50-50.html')), '13.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 column">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 column">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 column">|</article>')), 'wrap' => '<section class="container normalThreeColGrid"><div class="row">|</div></section>'), '14.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/70-30.html')), '16.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-topBorder">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-topBorder">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters">|</div></section>'), '17.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/timeline-v2.html')))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))))))))))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'shortcut.' => array('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')))), 'variables.' => array('shortcuts.' => array('tables' => 'tt_content,pages', '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')), 'pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')), 'source.' => array('field' => 'records')), 'shortcuts' => 'RECORDS'), 'templateName' => 'Shortcut', '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')))), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '|', 'insertData' => '1'), 'TEXT', '16.' => array('value' => '<div class="contentdiv-b" id="c{field:uid}"><div class="container"><div class="row">|</div></div></div>', 'insertData' => '1'), 'TEXT', '17.' => array('value' => '<section class="mainslick" id="c{field:uid}">|</section>', 'insertData' => '1'), 'TEXT', '18.' => array('value' => '|')))), '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' => 'All', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '2000', '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'), 'sitetemplate_pages' => 'USER', 'sitetemplate_pages.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Sitetemplate', 'pluginName' => 'Pages'), 'xdocfinder_xdocfinder' => 'USER', 'xdocfinder_xdocfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xdocfinder', 'pluginName' => 'Xdocfinder'), 'falsecuredownload_filetree' => 'USER', 'falsecuredownload_filetree.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FalSecuredownload', 'pluginName' => 'Filetree'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'omxawss3_listfiles' => 'USER', 'omxawss3_listfiles.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxAwsS3', 'pluginName' => 'Listfiles'), 'omxgeoipbanner_pi1' => 'USER', 'omxgeoipbanner_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxGeoipBanner', 'pluginName' => 'Pi1'), 'omxproductfinder_productfinder' => 'USER', 'omxproductfinder_productfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinder'), 'omxproductfinder_productfinderajax' => 'USER', 'omxproductfinder_productfinderajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinderajax'), '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'), 'xclinicallibrary_xcl' => 'USER', 'xclinicallibrary_xcl.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XClinicallibrary', 'pluginName' => 'Xcl'), 'xseller_ommaxseller' => 'USER', 'xseller_ommaxseller.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XSeller', 'pluginName' => 'Ommaxseller'), 'xevents_xevents' => 'USER', 'xevents_xevents.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xevents', 'pluginName' => 'Xevents'))), 'shortcut' => '< lib.contentElement', 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '2000', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '2000', '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'), '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')))), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), '1.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/clients_slider.html')), '2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-blue">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-brown">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters">|</div></section>'), '3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="row fullbg-big"><article class="col-xs-12 col-md-4">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4">|</article></div>'), '40.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="fullbg">|</div>')), 'wrap' => '<section class="container-full">|</section>'), '4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/4-66-33.html')), '5.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 col-md-offset-1 clrdbox clrdbox-blue">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>'), '40.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>'), '50.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters minus-offset">|</div></section>'), '6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-sm-4 imghover-item">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-sm-4 imghover-item">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-sm-4 imghover-item">|</article>')), 'wrap' => '<section class="container-full"><div class="row no-gutters imghover">|</div></section>'), '7.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/timeline.html')), '8.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/team.html')), '9.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/accordeon.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'backgroundimage')))), '10.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 clrdbox clrdbox-topBorder">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 clrdbox clrdbox-topBorder">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 clrdbox clrdbox-topBorder">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters">|</div></section>'), '11.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/accordeon.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'backgroundimage')))), '15.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/accordeon.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'backgroundimage')))), '12.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/50-50.html')), '13.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 column">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 column">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 column">|</article>')), 'wrap' => '<section class="container normalThreeColGrid"><div class="row">|</div></section>'), '14.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/70-30.html')), '16.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-topBorder">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-topBorder">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters">|</div></section>'), '17.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/timeline-v2.html')))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))))))))), 'tt_content')
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'shortcut.' => array('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')))), 'variables.' => array('shortcuts.' => array('tables' => 'tt_content,pages', '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')), 'pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')), 'source.' => array('field' => 'records')), 'shortcuts' => 'RECORDS'), 'templateName' => 'Shortcut', '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')))), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '|', 'insertData' => '1'), 'TEXT', '16.' => array('value' => '<div class="contentdiv-b" id="c{field:uid}"><div class="container"><div class="row">|</div></div></div>', 'insertData' => '1'), 'TEXT', '17.' => array('value' => '<section class="mainslick" id="c{field:uid}">|</section>', 'insertData' => '1'), 'TEXT', '18.' => array('value' => '|')))), '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' => 'All', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '2000', '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'), 'sitetemplate_pages' => 'USER', 'sitetemplate_pages.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Sitetemplate', 'pluginName' => 'Pages'), 'xdocfinder_xdocfinder' => 'USER', 'xdocfinder_xdocfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xdocfinder', 'pluginName' => 'Xdocfinder'), 'falsecuredownload_filetree' => 'USER', 'falsecuredownload_filetree.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FalSecuredownload', 'pluginName' => 'Filetree'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'omxawss3_listfiles' => 'USER', 'omxawss3_listfiles.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxAwsS3', 'pluginName' => 'Listfiles'), 'omxgeoipbanner_pi1' => 'USER', 'omxgeoipbanner_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxGeoipBanner', 'pluginName' => 'Pi1'), 'omxproductfinder_productfinder' => 'USER', 'omxproductfinder_productfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinder'), 'omxproductfinder_productfinderajax' => 'USER', 'omxproductfinder_productfinderajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinderajax'), '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'), 'xclinicallibrary_xcl' => 'USER', 'xclinicallibrary_xcl.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XClinicallibrary', 'pluginName' => 'Xcl'), 'xseller_ommaxseller' => 'USER', 'xseller_ommaxseller.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XSeller', 'pluginName' => 'Ommaxseller'), 'xevents_xevents' => 'USER', 'xevents_xevents.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xevents', 'pluginName' => 'Xevents'))), 'shortcut' => '< lib.contentElement', 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '2000', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '2000', 'maxGalleryWidthInText' => '2000', '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'), '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')))), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), '1.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/clients_slider.html')), '2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-blue">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-brown">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters">|</div></section>'), '3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="row fullbg-big"><article class="col-xs-12 col-md-4">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4">|</article></div>'), '40.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="fullbg">|</div>')), 'wrap' => '<section class="container-full">|</section>'), '4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/4-66-33.html')), '5.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 col-md-offset-1 clrdbox clrdbox-blue">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>'), '40.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>'), '50.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-2 clrdbox clrdbox-blue">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters minus-offset">|</div></section>'), '6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-sm-4 imghover-item">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-sm-4 imghover-item">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-sm-4 imghover-item">|</article>')), 'wrap' => '<section class="container-full"><div class="row no-gutters imghover">|</div></section>'), '7.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/timeline.html')), '8.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/team.html')), '9.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/accordeon.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'backgroundimage')))), '10.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 clrdbox clrdbox-topBorder">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 clrdbox clrdbox-topBorder">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 clrdbox clrdbox-topBorder">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters">|</div></section>'), '11.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/accordeon.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'backgroundimage')))), '15.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/accordeon.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'as' => 'backgroundimage')))), '12.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/50-50.html')), '13.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 column">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 column">|</article>'), '30.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-4 column">|</article>')), 'wrap' => '<section class="container normalThreeColGrid"><div class="row">|</div></section>'), '14.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/70-30.html')), '16.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '10.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-topBorder">|</article>'), '20.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<article class="col-xs-12 col-md-6 clrdbox clrdbox-topBorder">|</article>')), 'wrap' => '<section class="container"><div class="row no-gutters">|</div></section>'), '17.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))), 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('file' => 'typo3conf/ext/sitetemplate/gridelements/timeline-v2.html')))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))))))))), '')
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 95
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $conf['table'] . ':' . $row['uid'];
                        $this->cObj->lastChanged($row['tstamp']);
                        $cObj->start($row, $conf['table']);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1')), 'renderObj.' => array('stdWrap.' => array('wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '|', 'insertData' => '1'), 'TEXT', '16.' => array('value' => '<div class="contentdiv-b" id="c{field:uid}"><div class="container"><div class="row">|</div></div></div>', 'insertData' => '1'), 'TEXT', '17.' => array('value' => '<section class="mainslick" id="c{field:uid}">|</section>', 'insertData' => '1'), 'TEXT', '18.' => array('value' => '|')))))))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentContentObject), array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1')), 'renderObj.' => array('stdWrap.' => array('wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '|', 'insertData' => '1'), 'TEXT', '16.' => array('value' => '<div class="contentdiv-b" id="c{field:uid}"><div class="container"><div class="row">|</div></div></div>', 'insertData' => '1'), 'TEXT', '17.' => array('value' => '<section class="mainslick" id="c{field:uid}">|</section>', 'insertData' => '1'), 'TEXT', '18.' => array('value' => '|')))))))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1')), 'renderObj.' => array('stdWrap.' => array('wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '|', 'insertData' => '1'), 'TEXT', '16.' => array('value' => '<div class="contentdiv-b" id="c{field:uid}"><div class="container"><div class="row">|</div></div></div>', 'insertData' => '1'), 'TEXT', '17.' => array('value' => '<section class="mainslick" id="c{field:uid}">|</section>', 'insertData' => '1'), 'TEXT', '18.' => array('value' => '|')))))), '20')
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 688
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0'))))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1')), 'renderObj.' => array('stdWrap.' => array('wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '|', 'insertData' => '1'), 'TEXT', '16.' => array('value' => '<div class="contentdiv-b" id="c{field:uid}"><div class="container"><div class="row">|</div></div></div>', 'insertData' => '1'), 'TEXT', '17.' => array('value' => '<section class="mainslick" id="c{field:uid}">|</section>', 'insertData' => '1'), 'TEXT', '18.' => array('value' => '|')))))), 'RESTORE_REGISTER', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '# width="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'), '20.' => array('search' => '# height="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1')))))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php line 42
        if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
            return '';
        }

        $content = $this->cObj->cObjGet($conf);
        $wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
        if ($wrap) {
            $content = $this->cObj->wrap($content, $wrap);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject->render(array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0'))))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1')), 'renderObj.' => array('stdWrap.' => array('wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '|', 'insertData' => '1'), 'TEXT', '16.' => array('value' => '<div class="contentdiv-b" id="c{field:uid}"><div class="container"><div class="row">|</div></div></div>', 'insertData' => '1'), 'TEXT', '17.' => array('value' => '<section class="mainslick" id="c{field:uid}">|</section>', 'insertData' => '1'), 'TEXT', '18.' => array('value' => '|')))))), 'RESTORE_REGISTER', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '# width="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'), '20.' => array('search' => '# height="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1')))))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject), array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0'))))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1')), 'renderObj.' => array('stdWrap.' => array('wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '|', 'insertData' => '1'), 'TEXT', '16.' => array('value' => '<div class="contentdiv-b" id="c{field:uid}"><div class="container"><div class="row">|</div></div></div>', 'insertData' => '1'), 'TEXT', '17.' => array('value' => '<section class="mainslick" id="c{field:uid}">|</section>', 'insertData' => '1'), 'TEXT', '18.' => array('value' => '|')))))), 'RESTORE_REGISTER', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '# width="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'), '20.' => array('search' => '# height="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1')))))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('COA', array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0'))))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1')), 'renderObj.' => array('stdWrap.' => array('wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '|', 'insertData' => '1'), 'TEXT', '16.' => array('value' => '<div class="contentdiv-b" id="c{field:uid}"><div class="container"><div class="row">|</div></div></div>', 'insertData' => '1'), 'TEXT', '17.' => array('value' => '<section class="mainslick" id="c{field:uid}">|</section>', 'insertData' => '1'), 'TEXT', '18.' => array('value' => '|')))))), 'RESTORE_REGISTER', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '# width="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'), '20.' => array('search' => '# height="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1')))), 'lib.dynamicContent')
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 193
        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('parseFunc.' => array('tags.' => array('img' => 'TEXT', 'img.' => array('current' => '1', 'preUserFunc' => 'Netresearch\\RteCKEditorImage\\Controller\\ImageRenderingController->renderImageAttributes'), 'a' => 'TEXT', 'a.' => array('current' => '1', 'preUserFunc' => 'Netresearch\\RteCKEditorImage\\Controller\\ImageLinkRenderingController->renderImages', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'nonTypoTagStdWrap.' => array('HTMLparser.' => array('tags.' => array('img.' => array('fixAttrib.' => array('allparams.' => array('unset' => '1'), 'data-htmlarea-file-uid.' => array('unset' => '1'), 'data-htmlarea-file-table.' => array('unset' => '1'), 'data-htmlarea-zoom.' => array('unset' => '1'), 'data-htmlarea-clickenlarge.' => array('unset' => '1')))), 'keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'HTMLparser' => '1'), 'makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'htmlSanitize' => '1'), 'tx_news.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', '', 'EXT:sitetemplate/Resources/Private/Templates/FluidStyledContent/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', '', 'EXT:sitetemplate/Resources/Private/Partials/FluidStyledContent/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', '', 'EXT:sitetemplate/Resources/Private/Layouts/FluidStyledContent/'), 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')))), 'parseFunc_RTE.' => array('tags.' => array('img' => 'TEXT', 'img.' => array('current' => '1', 'preUserFunc' => 'Netresearch\\RteCKEditorImage\\Controller\\ImageRenderingController->renderImageAttributes'), 'a' => 'TEXT', 'a.' => array('current' => '1', 'preUserFunc' => 'Netresearch\\RteCKEditorImage\\Controller\\ImageLinkRenderingController->renderImages', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'nonTypoTagStdWrap.' => array('HTMLparser.' => array('tags.' => array('img.' => array('fixAttrib.' => array('allparams.' => array('unset' => '1'), 'data-htmlarea-file-uid.' => array('unset' => '1'), 'data-htmlarea-file-table.' => array('unset' => '1'), 'data-htmlarea-zoom.' => array('unset' => '1'), 'data-htmlarea-clickenlarge.' => array('unset' => '1')))), 'keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'HTMLparser' => '1', 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('tags.' => array('img' => 'TEXT', 'img.' => array('current' => '1', 'preUserFunc' => 'Netresearch\\RteCKEditorImage\\Controller\\ImageRenderingController->renderImageAttributes'), 'a' => 'TEXT', 'a.' => array('current' => '1', 'preUserFunc' => 'Netresearch\\RteCKEditorImage\\Controller\\ImageLinkRenderingController->renderImages', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'nonTypoTagStdWrap.' => array('HTMLparser.' => array('tags.' => array('img.' => array('fixAttrib.' => array('allparams.' => array(*DEEP NESTED ARRAY*), 'data-htmlarea-file-uid.' => array(*DEEP NESTED ARRAY*), 'data-htmlarea-file-table.' => array(*DEEP NESTED ARRAY*), 'data-htmlarea-zoom.' => array(*DEEP NESTED ARRAY*), 'data-htmlarea-clickenlarge.' => array(*DEEP NESTED ARRAY*)))), 'keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'HTMLparser' => '1'), 'makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array('fixAttrib.' => array('class.' => array('default' => 'contenttable', 'always' => '1', 'list' => 'contenttable')))), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => '', 'innerStdWrap_all.' => array('ifBlank' => '')))))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'gridelements.' => array('defaultGridSetup.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))))), 'tt_content.' => array('shortcut.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'))), 'events' => 'TEXT', 'events.' => array('value' => '1'), 'navigationMain' => 'FLUIDTEMPLATE', 'navigationMain.' => array('partialRootPath' => 'EXT:sitetemplate/Resources/Private/Partials/', 'file' => 'EXT:sitetemplate/Resources/Private/Templates/Page/Menu/Main.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('excludeUidList' => '0', 'levels' => '3', 'as' => 'menuMain'))), 'navigationMainITSpecial' => 'FLUIDTEMPLATE', 'navigationMainITSpecial.' => array('partialRootPath' => 'EXT:sitetemplate/Resources/Private/Partials/', 'file' => 'EXT:sitetemplate/Resources/Private/Templates/Page/Menu/MainITSpecial.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value' => '122'), 'excludeUidList' => '0', 'levels' => '1', 'as' => 'menuMain', 'maxItems' => '1'))), 'navigationMainBegin' => 'FLUIDTEMPLATE', 'navigationMainBegin.' => array('partialRootPath' => 'EXT:sitetemplate/Resources/Private/Partials/', 'file' => 'EXT:sitetemplate/Resources/Private/Templates/Page/Menu/MainITBegin.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '2', 'as' => 'menuMain'))), 'navigationMainIT' => 'FLUIDTEMPLATE', 'navigationMainIT.' => array('partialRootPath' => 'EXT:sitetemplate/Resources/Private/Partials/', 'file' => 'EXT:sitetemplate/Resources/Private/Templates/Page/Menu/MainIT.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('excludeUidList' => '0', 'levels' => '3', 'as' => 'menuMain', 'maxItems' => '20'))), 'navigationBreadcrumb' => 'COA', 'navigationBreadcrumb.' => array('wrap' => '<div class="breadcrumbs col-xs-12"><div class="breadcrumb" itemscope itemtype="http://schema.org/BreadcrumbList">|</div></div>', 'HMENU', '10.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'TMENU', '1.' => array('NO' => '1', 'NO.' => array('allWrap' => '<span class="breadcrumb-link-wrap" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">|</span>', 'stdWrap.' => array('htmlSpecialChars' => '1', 'dataWrap' => '<span itemprop="name">|</span>', 'append' => 'COA', 'append.' => array('TEXT', '1.' => array('value' => '<meta itemprop="position" content="'), 'TEXT', '2.' => array('data' => 'register:count_MENUOBJ', 'stdWrap.' => array('wrap' => '|+1'), 'prioriCalc' => '1'), 'TEXT', '3.' => array('value' => '">'))), 'ATagTitle.' => array('field' => 'title'), 'ATagParams' => 'itemprop="item"'), 'CUR' => '1', 'CUR.' => array('allWrap' => '<span class="breadcrumb-link-wrap current" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">|</span>', 'stdWrap.' => array('htmlSpecialChars' => '1', 'dataWrap' => '<span itemprop="name">|</span>', 'append' => 'COA', 'append.' => array('TEXT', '1.' => array('value' => '<meta itemprop="position" content="'), 'TEXT', '2.' => array('data' => 'register:count_MENUOBJ', 'stdWrap.' => array('wrap' => '|+1'), 'prioriCalc' => '1'), 'TEXT', '3.' => array('value' => '">'))), 'ATagTitle.' => array('field' => 'title'), 'ATagParams' => 'itemprop="item"')))), 'socialNav' => 'FLUIDTEMPLATE', 'socialNav.' => array('partialRootPath' => 'EXT:sitetemplate/Resources/Private/Partials/', 'file' => 'EXT:sitetemplate/Resources/Private/Templates/Page/Menu/Social.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '1', 'as' => 'menuSocial', 'special' => 'directory', 'special.' => array('value' => '15')))), 'footerNav' => 'FLUIDTEMPLATE', 'footerNav.' => array('partialRootPath' => 'EXT:sitetemplate/Resources/Private/Partials/', 'file' => 'EXT:sitetemplate/Resources/Private/Templates/Page/Menu/Foot.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '1', 'as' => 'menuFoot', 'special' => 'directory', 'special.' => array('value' => '14')))), 'footerNavB2B' => 'FLUIDTEMPLATE', 'footerNavB2B.' => array('partialRootPath' => 'EXT:sitetemplate/Resources/Private/Partials/', 'file' => 'EXT:sitetemplate/Resources/Private/Templates/Page/Menu/Foot.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '1', 'as' => 'menuFoot', 'special' => 'directory', 'special.' => array('value' => '497')))), 'headNav' => 'FLUIDTEMPLATE', 'headNav.' => array('partialRootPath' => 'EXT:sitetemplate/Resources/Private/Partials/', 'file' => 'EXT:sitetemplate/Resources/Private/Templates/Page/Menu/Head.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '1', 'as' => 'menuHead', 'special' => 'directory', 'special.' => array('value' => '49')))), 'headNavB2B' => 'FLUIDTEMPLATE', 'headNavB2B.' => array('partialRootPath' => 'EXT:sitetemplate/Resources/Private/Partials/', 'file' => 'EXT:sitetemplate/Resources/Private/Templates/Page/Menu/Head.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '1', 'as' => 'menuHead', 'special' => 'directory', 'special.' => array('value' => '474')))), 'stickyCTAnav' => 'FLUIDTEMPLATE', 'stickyCTAnav.' => array('partialRootPath' => 'EXT:sitetemplate/Resources/Private/Partials/', 'file' => 'EXT:sitetemplate/Resources/Private/Templates/Page/Menu/stickyCTA.html', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '1', 'as' => 'stickyCTA', 'special' => 'directory', 'special.' => array('value' => '70')))), 'contentYear' => 'TEXT', 'contentYear.' => array('data' => 'date : U', 'strftime' => '%Y', 'noTrimWrap' => '|'), 'contentCopyright' => 'COA', 'contentCopyright.' => array('TEXT', '10.' => array('value' => 'POLYTECH Health & Aesthetics GmbH &copy;&nbsp;'), 'TEXT', '20.' => array('data' => 'date : U', 'strftime' => '%Y', 'noTrimWrap' => '|'), 'TEXT', '30.' => array('value' => '&nbsp;{$label.company}')), 'footerContent' => 'CONTENT', 'footerContent.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '17', 'orderBy' => 'sorting', 'where' => 'colPos = 0'), 'wrap' => '|'), 'footerContentB2B' => 'CONTENT', 'footerContentB2B.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '17', 'orderBy' => 'sorting', 'where' => 'colPos = 4'), 'wrap' => '|'), 'estheticonBanner' => 'CONTENT', 'estheticonBanner.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '17', 'orderBy' => 'sorting', 'where' => 'colPos = 3'), 'stdWrap.' => array('wrap' => '<aside class="estheticon-banner">|</aside>')), 'footerSitemap' => 'CONTENT', 'footerSitemap.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '476', 'orderBy' => 'sorting', 'where' => 'colPos = 0'), 'wrap' => '|'), 'footerSitemapB2b' => 'CONTENT', 'footerSitemapB2b.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '497', 'orderBy' => 'sorting', 'where' => 'colPos = 0'), 'wrap' => '|'), 'contentFooterCopyright' => 'TEXT', 'contentFooterCopyright.' => array('data' => 'date : U', 'strftime' => '%Y', 'noTrimWrap' => '|<p>&copy; | POLYTECH Health & Aesthetics GmbH</p>|'), 'cookieBanner' => 'COA', 'cookieBanner.' => array('CONTENT', '5.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '121', 'orderBy' => 'sorting', 'where' => 'colPos = 0'), 'wrap' => '|'), 'TEXT', '10.' => array('value' => 'var cookie_href = "/en/contact/company-contact/privacy-policy/",'), 'TEXT', '20.' => array('value' => 'acookie_message = "Wir verwenden Cookies",'), 'TEXT', '30.' => array('value' => 'cookie_link_text = "Mehr lesen",'), 'TEXT', '40.' => array('value' => 'cookie_dismiss = "Okay";'), 'wrap' => '<script>|</script>'), 'popUpContent' => 'CONTENT', 'popUpContent.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '17', 'orderBy' => 'sorting', 'where' => 'colPos = 2'), 'wrap' => '|'), 'dynamicContent' => 'COA', 'dynamicContent.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0'))))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1')), 'renderObj.' => array('stdWrap.' => array('wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '|', 'insertData' => '1'), 'TEXT', '16.' => array('value' => '<div class="contentdiv-b" id="c{field:uid}"><div class="container"><div class="row">|</div></div></div>', 'insertData' => '1'), 'TEXT', '17.' => array('value' => '<section class="mainslick" id="c{field:uid}">|</section>', 'insertData' => '1'), 'TEXT', '18.' => array('value' => '|')))))), 'RESTORE_REGISTER', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '# width="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'), '20.' => array('search' => '# height="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1')))), 'dynamicContentHeader' => 'COA', 'dynamicContentHeader.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0'))))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'))), 'RESTORE_REGISTER', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '# width="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'), '20.' => array('search' => '# height="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1')), 'wrap' => '<section class="hero">|</section>', 'required' => '1')), 'isNewsSite' => 'TEXT', 'isNewsSite.' => array('value' => '0'), 'itempropImage.' => array('renderObj' => 'COA', 'renderObj.' => array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'shortcut.' => array('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')))), 'variables.' => array('shortcuts.' => array('tables' => 'tt_content,pages', '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')), 'pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')), 'source.' => array('field' => 'records')), 'shortcuts' => 'RECORDS'), 'templateName' => 'Shortcut', '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')))), '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' => 'All', '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' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'sitetemplate_pages' => 'USER', 'sitetemplate_pages.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Sitetemplate', 'pluginName' => 'Pages'), 'xdocfinder_xdocfinder' => 'USER', 'xdocfinder_xdocfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xdocfinder', 'pluginName' => 'Xdocfinder'), 'falsecuredownload_filetree' => 'USER', 'falsecuredownload_filetree.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FalSecuredownload', 'pluginName' => 'Filetree'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'omxawss3_listfiles' => 'USER', 'omxawss3_listfiles.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxAwsS3', 'pluginName' => 'Listfiles'), 'omxgeoipbanner_pi1' => 'USER', 'omxgeoipbanner_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxGeoipBanner', 'pluginName' => 'Pi1'), 'omxproductfinder_productfinder' => 'USER', 'omxproductfinder_productfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinder'), 'omxproductfinder_productfinderajax' => 'USER', 'omxproductfinder_productfinderajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinderajax'), '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'), 'xclinicallibrary_xcl' => 'USER', 'xclinicallibrary_xcl.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XClinicallibrary', 'pluginName' => 'Xcl'), 'xseller_ommaxseller' => 'USER', 'xseller_ommaxseller.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XSeller', 'pluginName' => 'Ommaxseller'), 'xevents_xevents' => 'USER', 'xevents_xevents.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xevents', 'pluginName' => 'Xevents'))), 'shortcut' => '< lib.contentElement', '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' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'stdWrap.' => array('required' => '1', 'wrap' => '|'), 'FILES', '10.' => array('references.' => array('table' => 'tt_content', 'fieldName' => 'image'), 'renderObj' => 'COA', 'renderObj.' => array('IMG_RESOURCE', '10.' => array('file.' => array('treatIdAsReference' => '1', 'import.' => array('data' => 'file:current:publicUrl'))), 'stdWrap.' => array('wrap' => '|'))))), 'contentTabs' => 'COA', 'contentTabs.' => array('wrap' => '<div class="contact">|</div>', 'COA', '10.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0'))))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=2', 'where.' => array('insertData' => '1'), 'begin' => '0', 'max' => '1'), 'slide' => '-1', 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('if.' => array('isTrue.' => array('field' => 'bodytext')), 'field' => 'bodytext', 'parseFunc' => '< lib.parseFunc_RTE', 'stdWrap.' => array('wrap' => '<div class="phone">|</div>')))), 'RESTORE_REGISTER', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '# width="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'), '20.' => array('search' => '# height="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1')))), 'COA', '20.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0'))))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=2', 'where.' => array('insertData' => '1'), 'begin' => '1', 'max' => '1'), 'slide' => '-1', 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('if.' => array('isTrue.' => array('field' => 'bodytext')), 'field' => 'bodytext', 'parseFunc' => '< lib.parseFunc_RTE', 'stdWrap.' => array('wrap' => '<div class="mail">|</div>')))), 'RESTORE_REGISTER', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '# width="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'), '20.' => array('search' => '# height="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1')))), 'COA', '30.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0'))))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=2', 'where.' => array('insertData' => '1'), 'begin' => '2', 'max' => '1'), 'slide' => '-1', 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('if.' => array('isTrue.' => array('field' => 'bodytext')), 'field' => 'bodytext', 'parseFunc' => '< lib.parseFunc_RTE', 'stdWrap.' => array('wrap' => '<div class="custom">|</div>')))), 'RESTORE_REGISTER', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '# width="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'), '20.' => array('search' => '# height="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'))))), 'navigationTabs' => 'COA', 'navigationTabs.' => array('wrap' => '|', 'COA', '10.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0'))))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=2', 'where.' => array('insertData' => '1'), 'begin' => '0', 'max' => '1'), 'slide' => '-1', 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('if.' => array('isTrue.' => array('field' => 'bodytext')), 'value' => '<a href="#" class="phone"></a>'))), 'RESTORE_REGISTER', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '# width="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'), '20.' => array('search' => '# height="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1')))), 'COA', '20.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0'))))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=2', 'where.' => array('insertData' => '1'), 'begin' => '1', 'max' => '1'), 'slide' => '-1', 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('if.' => array('isTrue.' => array('field' => 'bodytext')), 'value' => '<a href="#" class="mail"></a>'))), 'RESTORE_REGISTER', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '# width="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'), '20.' => array('search' => '# height="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1')))), 'COA', '30.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0'))))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=2', 'where.' => array('insertData' => '1'), 'begin' => '2', 'max' => '1'), 'slide' => '-1', 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('if.' => array('isTrue.' => array('field' => 'bodytext')), 'value' => '<a href="#" class="custom"></a>'))), 'RESTORE_REGISTER', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '# width="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'), '20.' => array('search' => '# height="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'))))), 'contentContactElement' => 'COA', 'contentContactElement.' => array('wrap' => '|', 'COA', '10.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0'))))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=3', 'where.' => array('insertData' => '1'), 'begin' => '0', 'max' => '1'), 'slide' => '-1', 'renderObj' => 'COA', 'renderObj.' => array('TEXT', '10.' => array('field' => 'bodytext', 'parseFunc' => '< lib.parseFunc_RTE', 'stdWrap.' => array('wrap' => '<div class="col-xs-12 col-sm-6" id="contact-form">|</div>')))), 'RESTORE_REGISTER', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '# width="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'), '20.' => array('search' => '# height="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1')))), 'COA', '20.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0'))))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=4', 'where.' => array('insertData' => '1'), 'begin' => '0', 'max' => '1'), 'slide' => '-1', 'renderObj' => 'CASE', 'renderObj.' => array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'shortcut.' => array('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')))), 'variables.' => array('shortcuts.' => array('tables' => 'tt_content,pages', '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(*DEEP NESTED ARRAY*)), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array(*DEEP NESTED ARRAY*), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1')), 'pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array(*DEEP NESTED ARRAY*)), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array(*DEEP NESTED ARRAY*)), 'RESTORE_REGISTER')), 'source.' => array('field' => 'records')), 'shortcuts' => 'RECORDS'), 'templateName' => 'Shortcut', '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')))), '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' => 'All', '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' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'sitetemplate_pages' => 'USER', 'sitetemplate_pages.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Sitetemplate', 'pluginName' => 'Pages'), 'xdocfinder_xdocfinder' => 'USER', 'xdocfinder_xdocfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xdocfinder', 'pluginName' => 'Xdocfinder'), 'falsecuredownload_filetree' => 'USER', 'falsecuredownload_filetree.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FalSecuredownload', 'pluginName' => 'Filetree'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'omxawss3_listfiles' => 'USER', 'omxawss3_listfiles.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxAwsS3', 'pluginName' => 'Listfiles'), 'omxgeoipbanner_pi1' => 'USER', 'omxgeoipbanner_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxGeoipBanner', 'pluginName' => 'Pi1'), 'omxproductfinder_productfinder' => 'USER', 'omxproductfinder_productfinder.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinder'), 'omxproductfinder_productfinderajax' => 'USER', 'omxproductfinder_productfinderajax.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxProductfinder', 'pluginName' => 'Productfinderajax'), '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'), 'xclinicallibrary_xcl' => 'USER', 'xclinicallibrary_xcl.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XClinicallibrary', 'pluginName' => 'Xcl'), 'xseller_ommaxseller' => 'USER', 'xseller_ommaxseller.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XSeller', 'pluginName' => 'Ommaxseller'), 'xevents_xevents' => 'USER', 'xevents_xevents.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Xevents', 'pluginName' => 'Xevents'))), 'shortcut' => '< lib.contentElement', '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' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array(*DEEP NESTED ARRAY*)))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array(*DEEP NESTED ARRAY*), 'override.' => array(*DEEP NESTED ARRAY*)))), '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(*DEEP NESTED ARRAY*)))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array(*DEEP NESTED ARRAY*)))))), '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')))), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array(*DEEP NESTED ARRAY*))))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array(*DEEP NESTED ARRAY*)))))))), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>'), 'RESTORE_REGISTER', 'stdWrap.' => array('replacement.' => array('10.' => array('search' => '# width="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'), '20.' => array('search' => '# height="[0-9]*?"#i', 'replace' => '', 'useRegExp' => '1'))))), 'fe_user' => 'TEXT', 'fe_user.' => array('data' => 'TSFE:fe_user|user|username'), 'loginPopup' => 'CONTENT', 'loginPopup.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '80', 'where' => 'colPos = 0'), 'wrap' => '<div class="content" id="content_login">|</div>'), 'registerPopup' => 'CONTENT', 'registerPopup.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '80', 'where' => 'colPos = 1'), 'wrap' => '<div class="content" id="content_register" style="display:none">|</div>'), 'openGraph' => 'COA', 'openGraph.' => array('TEXT', '10.' => array('value' => 'POLYTECH Health & Aesthetics GmbH', 'override.' => array('field' => 'abstract'), 'wrap' => '<meta property="og:title" content="|"/>'), 'TEXT', '15.' => array('value' => ''), 'TEXT', '20.' => array('value' => 'website', 'wrap' => '<meta property="og:type" content="|"/>'), 'TEXT', '25.' => array('value' => ''), 'TEXT', '30.' => array('typolink.' => array('parameter.' => array('data' => 'page:uid'), 'returnLast' => 'url'), 'wrap' => '<meta property="og:url" content="https://polytech-health-aesthetics.com/|"/>'), 'TEXT', '35.' => array('value' => ''), 'TEXT', '40.' => array('value' => 'https://polytech-health-aesthetics.com/', 'wrap' => '<meta property="og:site_name" content="|"/>'), 'TEXT', '45.' => array('value' => ''), 'TEXT', '50.' => array('value' => '', 'override.' => array('field' => 'description'), 'wrap' => '<meta property="og:description" content="|"/>'), 'TEXT', '55.' => array('value' => ''), 'TEXT', '56.' => array('value' => '', 'override.' => array('field' => 'description'), 'wrap' => '<meta property="og:summary" content="|"/>'), 'TEXT', '57.' => array('value' => ''), 'TEXT', '60.' => array('value' => '<meta property="og:image" content="https://polytech-health-aesthetics.com/typo3conf/ext/sitetemplate/Resources/Public/img/og-logo.jpg"/>', 'wrap' => '|')), 'canonical' => 'TEXT', 'canonical.' => array('if.' => array('isFalse.' => array('data' => 'page:tx_sitetemplate_nocanonical')), 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'returnLast' => 'url'), 'wrap' => '<link rel="canonical" href="https://polytech-health-aesthetics.com|" />'), 'tx_geoip_banner' => 'USER_INT', 'tx_geoip_banner.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxGeoipBanner', 'vendorName' => 'Ommax', 'pluginName' => 'Pi1', 'switchableControllerActions.' => array('Banner.' => array('show')))), 'lib.dynamicContent', 'dynamicContent')
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 170
                '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' => 4, 'typoscriptObjectPath' => 'lib.dynamicContent', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3-10/shared/typo3temp/var/cache/code/fluid_template/partial_Page_EventDetail_0dc7395dff93572f3f04e86dce9c43d40909c183.php line 47
$arguments0['table'] = '';
$arguments0['typoscriptObjectPath'] = 'lib.dynamicContent';
$arguments0['data'] = 4;
$renderChildrenClosure1 = ($arguments0['data'] !== null) ? function() use ($arguments0) { return $arguments0['data']; } : $renderChildrenClosure1;
return TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments0, $renderChildrenClosure1, $renderingContext);
}


}
at partial_Page_EventDetail_0dc7395dff93572f3f04e86dce9c43d40909c183->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3-10/releases/437/typo3_src/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 329
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
        return $output;
    }
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial('Page/EventDetail', null, array('layout' => '4', 'baseUrl' => 'https://polytech-health-aesthetics.com/', 'defaultGraphicPath' => '/typo3conf/ext/sitetemplate/Resources/Public/img/', 'homeId' => '1', 'landingpageId' => '136', 'defaultCSSPath' => '/typo3conf/ext/sitetemplate/Resources/Public/css/', 'defaultJSPath' => '/typo3conf/ext/sitetemplate/Resources/Public/js/', 'logo' => '/typo3conf/ext/sitetemplate/Resources/Public/img/logo.svg', 'b2b' => '1', 'labelHomeLogo' => 'POLYTECH Health & Aesthetics GmbH', 'data' => array('uid' => 113, 'pid' => 470, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1628148401, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 1, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 27, 'editlock' => 0, 'crdate' => 1569399523, 'cruser_id' => 8, 'hidden' => 0, 'title' => 'Eventi', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => 'Eventi | POLYTECH Health & Aesthetics', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Per saperne di più sugli eventi attuali di POLYTECH ➤ uno dei principali produttori di impianti in silicone ➤ Made in Germany', 'no_search' => 0, 'SYS_LASTCHANGED' => 1675350871, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '4', 'backend_layout_next_level' => '4', 'tsconfig_includes' => null, 'tx_impexp_origuid' => 0, 'categories' => 0, 'tx_realurl_pathsegment' => '', 'tx_realurl_pathoverride' => 0, 'tx_realurl_exclude' => 0, 'tx_sitetemplate_nocanonical' => 0, 'tx_sitetemplate_nohref' => 0, 'tx_sitetemplate_noindex' => 0, 'tx_sitetemplate_nofollow' => 0, 'tx_sitetemplate_amp_tag' => '', 'tx_sitetemplate_showcontact' => 0, 'tx_sitetemplate_showseonavigation' => 0, 'tx_sitetemplate_phonetext' => '', 'tx_sitetemplate_phonenumber' => '', 'tx_sitetemplate_showbreadcrumb' => 0, 'tx_sitetemplate_canocial_tag' => '', 'tx_sitetemplate_showLoginBox' => 0, 'tx_sitetemplate_hideFootForm' => 0, 'tx_sitetemplate_detail' => 0, 'tx_sitetemplate_hideLoginBox' => 0, 'rowDescription' => null, 'sys_language_uid' => 3, 'l10n_source' => 113, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent","og_image":"parent","twitter_image":"parent"}', 'l10n_diffsource' => 'a:46:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:1:"4";s:25:"backend_layout_next_level";s:1:"4";s:7:"doktype";i:1;s:5:"title";s:6:"Events";s:4:"slug";s:19:"/news-events/events";s:9:"nav_title";s:0:"";s:8:"subtitle";s:44:"Unsere Events | POLYTECH Health & Aesthetics";s:11:"description";s:135:"Lesen Sie mehr über die aktuellen Events von POLYTECH ➤ einer der führenden Hersteller von Silikonimplantaten ➤ Made in Germany ";s:8:"abstract";N;s:8:"keywords";N;s:6:"hidden";i:0;s:10:"categories";i:0;s:27:"tx_sitetemplate_nocanonical";i:0;s:28:"tx_sitetemplate_canocial_tag";s:0:"";s:23:"tx_sitetemplate_amp_tag";s:0:"";s:22:"tx_sitetemplate_nohref";i:0;s:23:"tx_sitetemplate_noindex";i:0;s:24:"tx_sitetemplate_nofollow";i:0;s:33:"tx_sitetemplate_showseonavigation";i:0;s:28:"tx_sitetemplate_hideFootForm";i:0;}', 'slug' => '/novita-eventi/eventi', 'legacy_overlay_uid' => 259, 'l10n_parent' => 113, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'twitter_card' => '', 'canonical_link' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_sitetemplate_hreflangs' => null, '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 417, '_PAGES_OVERLAY_LANGUAGE' => 3, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 3), 'current' => null), false)
in /html/typo3-10/releases/437/typo3_src/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 141
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => null, 'partial' => 'Page/EventDetail', 'delegate' => null, 'renderable' => null, 'arguments' => array('layout' => '4', 'baseUrl' => 'https://polytech-health-aesthetics.com/', 'defaultGraphicPath' => '/typo3conf/ext/sitetemplate/Resources/Public/img/', 'homeId' => '1', 'landingpageId' => '136', 'defaultCSSPath' => '/typo3conf/ext/sitetemplate/Resources/Public/css/', 'defaultJSPath' => '/typo3conf/ext/sitetemplate/Resources/Public/js/', 'logo' => '/typo3conf/ext/sitetemplate/Resources/Public/img/logo.svg', 'b2b' => '1', 'labelHomeLogo' => 'POLYTECH Health & Aesthetics GmbH', 'data' => array('uid' => 113, 'pid' => 470, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1628148401, 'sorting' => 256, 'deleted' => 0, 'perms_userid' => 1, 'perms_groupid' => 1, 'perms_user' => 31, 'perms_group' => 31, 'perms_everybody' => 27, 'editlock' => 0, 'crdate' => 1569399523, 'cruser_id' => 8, 'hidden' => 0, 'title' => 'Eventi', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => 'Eventi | POLYTECH Health & Aesthetics', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 0, 'keywords' => null, 'cache_timeout' => 0, 'cache_tags' => '', 'newUntil' => 0, 'description' => 'Per saperne di più sugli eventi attuali di POLYTECH ➤ uno dei principali produttori di impianti in silicone ➤ Made in Germany', 'no_search' => 0, 'SYS_LASTCHANGED' => 1675350871, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 0, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '4', 'backend_layout_next_level' => '4', 'tsconfig_includes' => null, 'tx_impexp_origuid' => 0, 'categories' => 0, 'tx_realurl_pathsegment' => '', 'tx_realurl_pathoverride' => 0, 'tx_realurl_exclude' => 0, 'tx_sitetemplate_nocanonical' => 0, 'tx_sitetemplate_nohref' => 0, 'tx_sitetemplate_noindex' => 0, 'tx_sitetemplate_nofollow' => 0, 'tx_sitetemplate_amp_tag' => '', 'tx_sitetemplate_showcontact' => 0, 'tx_sitetemplate_showseonavigation' => 0, 'tx_sitetemplate_phonetext' => '', 'tx_sitetemplate_phonenumber' => '', 'tx_sitetemplate_showbreadcrumb' => 0, 'tx_sitetemplate_canocial_tag' => '', 'tx_sitetemplate_showLoginBox' => 0, 'tx_sitetemplate_hideFootForm' => 0, 'tx_sitetemplate_detail' => 0, 'tx_sitetemplate_hideLoginBox' => 0, 'rowDescription' => null, 'sys_language_uid' => 3, 'l10n_source' => 113, 'l10n_state' => '{"starttime":"parent","endtime":"parent","nav_hide":"parent","url":"parent","lastUpdated":"parent","newUntil":"parent","no_search":"parent","shortcut":"parent","shortcut_mode":"parent","content_from_pid":"parent","author":"parent","author_email":"parent","media":"parent","og_image":"parent","twitter_image":"parent"}', 'l10n_diffsource' => 'a:46:{s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"nav_hide";i:0;s:3:"url";s:0:"";s:11:"lastUpdated";i:0;s:8:"newUntil";i:0;s:9:"no_search";i:0;s:8:"shortcut";i:0;s:13:"shortcut_mode";i:0;s:16:"content_from_pid";i:0;s:6:"author";s:0:"";s:12:"author_email";s:0:"";s:5:"media";i:0;s:13:"php_tree_stop";i:0;s:6:"layout";i:0;s:8:"fe_group";s:0:"";s:16:"extendToSubpages";i:0;s:6:"target";s:0:"";s:13:"cache_timeout";i:0;s:10:"cache_tags";s:0:"";s:9:"mount_pid";i:0;s:11:"is_siteroot";i:0;s:12:"mount_pid_ol";i:0;s:6:"module";s:0:"";s:13:"fe_login_mode";i:0;s:8:"l18n_cfg";i:0;s:14:"backend_layout";s:1:"4";s:25:"backend_layout_next_level";s:1:"4";s:7:"doktype";i:1;s:5:"title";s:6:"Events";s:4:"slug";s:19:"/news-events/events";s:9:"nav_title";s:0:"";s:8:"subtitle";s:44:"Unsere Events | POLYTECH Health & Aesthetics";s:11:"description";s:135:"Lesen Sie mehr über die aktuellen Events von POLYTECH ➤ einer der führenden Hersteller von Silikonimplantaten ➤ Made in Germany ";s:8:"abstract";N;s:8:"keywords";N;s:6:"hidden";i:0;s:10:"categories";i:0;s:27:"tx_sitetemplate_nocanonical";i:0;s:28:"tx_sitetemplate_canocial_tag";s:0:"";s:23:"tx_sitetemplate_amp_tag";s:0:"";s:22:"tx_sitetemplate_nohref";i:0;s:23:"tx_sitetemplate_noindex";i:0;s:24:"tx_sitetemplate_nofollow";i:0;s:33:"tx_sitetemplate_showseonavigation";i:0;s:28:"tx_sitetemplate_hideFootForm";i:0;}', 'slug' => '/novita-eventi/eventi', 'legacy_overlay_uid' => 259, 'l10n_parent' => 113, 'seo_title' => '', 'no_index' => 0, 'no_follow' => 0, 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'twitter_card' => '', 'canonical_link' => '', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'tx_sitetemplate_hreflangs' => null, '_PAGES_OVERLAY' => true, '_PAGES_OVERLAY_UID' => 417, '_PAGES_OVERLAY_LANGUAGE' => 3, '_PAGES_OVERLAY_REQUESTEDLANGUAGE' => 3), 'current' => null), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3-10/shared/typo3temp/var/cache/code/fluid_template/Standard_action_index_78b6b04ded91afd3e378ae8ab5dfb56d95399649.php line 271
$arguments7['debug'] = true;
$arguments7['partial'] = 'Page/EventDetail';
$arguments7['arguments'] = $renderingContext->getVariableProvider()->getAll();

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

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

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

$output0 .= '

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

return TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments0, $renderChildrenClosure1, $renderingContext);
}


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

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

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

        $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('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield:-1, backend_layout_next_level, slide', 'override.' => array('field' => 'backend_layout')), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:sitetemplate/Resources/Private/Templates/Page/Default.html', 'insertData' => '1'), 'defaultGraphicPath' => 'TEXT', 'defaultGraphicPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/img/')))), 'variables.' => array('layout' => 'TEXT', 'layout.' => array('data' => 'levelfield:-2,backend_layout_next_level,slide', 'override.' => array('field' => 'backend_layout')), 'baseUrl' => 'TEXT', 'baseUrl.' => array('value' => 'https://polytech-health-aesthetics.com/'), 'defaultGraphicPath' => 'TEXT', 'defaultGraphicPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/img/'), 'homeId' => 'TEXT', 'homeId.' => array('value' => '1'), 'landingpageId' => 'TEXT', 'landingpageId.' => array('value' => '136'), 'defaultCSSPath' => 'TEXT', 'defaultCSSPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/css/'), 'defaultJSPath' => 'TEXT', 'defaultJSPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/js/'), 'logo' => 'TEXT', 'logo.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/img/logo.svg'), 'b2b' => 'TEXT', 'b2b.' => array('value' => '1'), 'labelHomeLogo' => 'TEXT', 'labelHomeLogo.' => array('value' => 'POLYTECH Health & Aesthetics GmbH')), 'partialRootPath' => 'EXT:sitetemplate/Resources/Private/Partials/', 'layoutRootPath' => 'EXT:sitetemplate/Resources/Private/Layouts/'))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield:-1, backend_layout_next_level, slide', 'override.' => array('field' => 'backend_layout')), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:sitetemplate/Resources/Private/Templates/Page/Default.html', 'insertData' => '1'), 'defaultGraphicPath' => 'TEXT', 'defaultGraphicPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/img/')))), 'variables.' => array('layout' => 'TEXT', 'layout.' => array('data' => 'levelfield:-2,backend_layout_next_level,slide', 'override.' => array('field' => 'backend_layout')), 'baseUrl' => 'TEXT', 'baseUrl.' => array('value' => 'https://polytech-health-aesthetics.com/'), 'defaultGraphicPath' => 'TEXT', 'defaultGraphicPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/img/'), 'homeId' => 'TEXT', 'homeId.' => array('value' => '1'), 'landingpageId' => 'TEXT', 'landingpageId.' => array('value' => '136'), 'defaultCSSPath' => 'TEXT', 'defaultCSSPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/css/'), 'defaultJSPath' => 'TEXT', 'defaultJSPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/js/'), 'logo' => 'TEXT', 'logo.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/img/logo.svg'), 'b2b' => 'TEXT', 'b2b.' => array('value' => '1'), 'labelHomeLogo' => 'TEXT', 'labelHomeLogo.' => array('value' => 'POLYTECH Health & Aesthetics GmbH')), 'partialRootPath' => 'EXT:sitetemplate/Resources/Private/Partials/', 'layoutRootPath' => 'EXT:sitetemplate/Resources/Private/Layouts/'))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield:-1, backend_layout_next_level, slide', 'override.' => array('field' => 'backend_layout')), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:sitetemplate/Resources/Private/Templates/Page/Default.html', 'insertData' => '1'), 'defaultGraphicPath' => 'TEXT', 'defaultGraphicPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/img/')))), 'variables.' => array('layout' => 'TEXT', 'layout.' => array('data' => 'levelfield:-2,backend_layout_next_level,slide', 'override.' => array('field' => 'backend_layout')), 'baseUrl' => 'TEXT', 'baseUrl.' => array('value' => 'https://polytech-health-aesthetics.com/'), 'defaultGraphicPath' => 'TEXT', 'defaultGraphicPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/img/'), 'homeId' => 'TEXT', 'homeId.' => array('value' => '1'), 'landingpageId' => 'TEXT', 'landingpageId.' => array('value' => '136'), 'defaultCSSPath' => 'TEXT', 'defaultCSSPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/css/'), 'defaultJSPath' => 'TEXT', 'defaultJSPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/js/'), 'logo' => 'TEXT', 'logo.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/img/logo.svg'), 'b2b' => 'TEXT', 'b2b.' => array('value' => '1'), 'labelHomeLogo' => 'TEXT', 'labelHomeLogo.' => array('value' => 'POLYTECH Health & Aesthetics GmbH')), 'partialRootPath' => 'EXT:sitetemplate/Resources/Private/Partials/', 'layoutRootPath' => 'EXT:sitetemplate/Resources/Private/Layouts/'), '10')
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 688
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('includeCSS.' => array('map' => '/typo3conf/ext/xdocfinder/Resources/Public/css/map.css', 'femanagerMain' => 'EXT:femanager/Resources/Public/Css/Main.min.css', 'femanagerLayout' => 'EXT:femanager/Resources/Public/Css/Additional.min.css', 'fontawesome' => '/typo3conf/ext/sitetemplate/Resources/Public/css/fontawesome.min.css', 'global' => '/typo3conf/ext/sitetemplate/Resources/Public/css/main.css', 'extra' => '/typo3conf/ext/sitetemplate/Resources/Public/css/temp.css', 'cookie' => '/typo3conf/ext/sitetemplate/Resources/Public/css/cookieconsent.min.css'), 'includeJSFooter.' => array('niceSelect' => '/typo3conf/ext/sitetemplate/Resources/Public/js/jquery.nice-select.js', 'slick' => '/typo3conf/ext/sitetemplate/Resources/Public/js/jquery.slick.min.js', 'fancybox' => '/typo3conf/ext/sitetemplate/Resources/Public/js/jquery.fancybox.min.js', 'sticky' => '/typo3conf/ext/sitetemplate/Resources/Public/js/jquery.sticky.min.js', 'isotope' => '/typo3conf/ext/sitetemplate/Resources/Public/js/isotope.pkgd.min.js', 'cookieconsent' => '/typo3conf/ext/sitetemplate/Resources/Public/js/cookieconsent.min.js', 'list' => '/typo3conf/ext/sitetemplate/Resources/Public/js/list.min.js', 'ouical' => '/typo3conf/ext/sitetemplate/Resources/Public/js/ouical.min.js', 'recaptcha' => '/typo3conf/ext/sitetemplate/Resources/Public/js/gReCaptcha.js', 'circleprogress' => '/typo3conf/ext/sitetemplate/Resources/Public/js/jquery-circle-progress.js', 'deferImages' => '/typo3conf/ext/sitetemplate/Resources/Public/js/deferImages.js', 'polyfillDeferImages' => '/typo3conf/ext/sitetemplate/Resources/Public/js/polyfillDeferImages.min.js', 'mainJS' => '/typo3conf/ext/sitetemplate/Resources/Public/js/ommax.js', 'femanagerValidation' => 'EXT:femanager/Resources/Public/JavaScript/Validation.min.js', 'femanager' => 'EXT:femanager/Resources/Public/JavaScript/Femanager.min.js', 'product-finder' => 'EXT:sitetemplate/Resources/Public/js/product-finder.js'), 'jsFooterInline.' => array('TEXT', '303030.' => array('wrap' => '$(function() {|});', 'value' => '')), 'meta.' => array('description.' => array('field' => 'description', 'ifEmpty' => ''), 'robots.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => 'INDEX', 'override' => 'NOINDEX', 'override.' => array('if.' => array('isTrue.' => array('field' => 'tx_sitetemplate_noindex'))), 'wrap' => '|,'), 'TEXT', '20.' => array('value' => 'FOLLOW', 'override' => 'NOFOLLOW', 'override.' => array('if.' => array('isTrue.' => array('field' => 'tx_sitetemplate_nofollow'))))))), 'headerData.' => array('COA', '5.' => array('TEXT', '10.' => array('field' => 'subtitle', 'wrap' => '|', 'ifEmpty.' => array('field' => 'title', 'noTrimWrap' => '| | &#124; |')), 'wrap' => '<title>|</title>'), 'TEXT', '1.' => array('value' => '<!-- OneTrust Cookies Consent Notice start --><script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" data-document-language="true" type="text/javascript" charset="UTF-8" data-domain-script="7a8aed21-7a22-443f-b2ed-3ba70e2abb03"></script><script type="text/javascript">function OptanonWrapper() { }</script><!-- OneTrust Cookies Consent Notice end -->'), 'FLUIDTEMPLATE', '10.' => array('file' => 'EXT:sitetemplate/Resources/Private/Partials/Page/Meta.html', 'variables.' => array('baseUrl' => 'TEXT', 'baseUrl.' => array('value' => 'https://polytech-health-aesthetics.com/'), 'defaultGraphicPath' => 'TEXT', 'defaultGraphicPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/img/'), 'homeId' => 'TEXT', 'homeId.' => array('value' => '1'), 'lpID' => 'TEXT', 'lpID.' => array('value' => '17'), 'author' => 'TEXT', 'author.' => array('value' => 'POLYTECH Health & Aesthetics GmbH'), 'publisher' => 'TEXT', 'publisher.' => array('value' => 'POLYTECH Health & Aesthetics GmbH'), 'copyright' => 'TEXT', 'copyright.' => array('value' => '(c) POLYTECH Health & Aesthetics GmbH'), 'creator' => 'TEXT', 'creator.' => array('value' => 'TYPO3, POLYTECH Health & Aesthetics GmbH'), 'description' => 'TEXT', 'description.' => array('value' => ''), 'keywords' => 'TEXT', 'keywords.' => array('value' => ''), 'revisitAfter' => 'TEXT', 'revisitAfter.' => array('value' => '1'))), 'TEXT', '20.' => array('value' => '<link rel="shortcut icon" href="/favicon.ico"><link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png"><link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png"><link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png"><link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png"><link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png"><link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png"><link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png"><link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png"><link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png"><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"><link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png"><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><meta name="msapplication-TileColor" content="#ffffff"><meta name="msapplication-TileImage" content="ms-icon-144x144.png"><meta name="theme-color" content="#ffffff">'), 'FLUIDTEMPLATE', '2.' => array('stdWrap.' => array('wrap' => '<style>|</style>'), 'file' => 'EXT:sitetemplate/Resources/Public/css/above.css')), 'typeNum' => '0', 'config.' => array('index_enable' => '1', 'simulateStaticDocuments' => '0', 'tx_realurl_enable' => '1', 'prefixLocalAnchors' => 'al'), 'bodyTagCObject' => 'TEXT', 'bodyTagCObject.' => array('wrap' => '<body class="no-js b2b_layout_2">'), 'FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield:-1, backend_layout_next_level, slide', 'override.' => array('field' => 'backend_layout')), 'default' => 'TEXT', 'default.' => array('value' => 'EXT:sitetemplate/Resources/Private/Templates/Page/Default.html', 'insertData' => '1'), 'defaultGraphicPath' => 'TEXT', 'defaultGraphicPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/img/')))), 'variables.' => array('layout' => 'TEXT', 'layout.' => array('data' => 'levelfield:-2,backend_layout_next_level,slide', 'override.' => array('field' => 'backend_layout')), 'baseUrl' => 'TEXT', 'baseUrl.' => array('value' => 'https://polytech-health-aesthetics.com/'), 'defaultGraphicPath' => 'TEXT', 'defaultGraphicPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/img/'), 'homeId' => 'TEXT', 'homeId.' => array('value' => '1'), 'landingpageId' => 'TEXT', 'landingpageId.' => array('value' => '136'), 'defaultCSSPath' => 'TEXT', 'defaultCSSPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/css/'), 'defaultJSPath' => 'TEXT', 'defaultJSPath.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/js/'), 'logo' => 'TEXT', 'logo.' => array('value' => '/typo3conf/ext/sitetemplate/Resources/Public/img/logo.svg'), 'b2b' => 'TEXT', 'b2b.' => array('value' => '1'), 'labelHomeLogo' => 'TEXT', 'labelHomeLogo.' => array('value' => 'POLYTECH Health & Aesthetics GmbH')), 'partialRootPath' => 'EXT:sitetemplate/Resources/Private/Partials/', 'layoutRootPath' => 'EXT:sitetemplate/Resources/Private/Layouts/'), 'includeJSLibs.' => array('jQuery' => '/typo3conf/ext/sitetemplate/Resources/Public/js/jquery-3.3.1.min.js'), 'footerData.' => array('USER_INT', '100.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OmxGeoipBanner', 'vendorName' => 'Ommax', 'pluginName' => 'Pi1', 'switchableControllerActions.' => array('Banner.' => array('show'))))))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 232
     * @return string
     */
    protected function generatePageBodyContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageBodyContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 198
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 134
            // 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 /html/typo3-10/releases/437/typo3_src/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(TYPO3\CMS\Frontend\Http\RequestHandler))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3conf/ext/sourceopt/Classes/Middleware/CleanHtmlMiddleware.php line 39
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);

        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
at HTML\Sourceopt\Middleware\CleanHtmlMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 47
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)) {
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3conf/ext/content_replacer/Classes/Middleware/ContentReplacerMiddleware.php line 81
 /**
  * @inheritDoc
  */
 public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface {
  $response = $handler->handle($request);
  if ($this->extensionConfiguration['disable']) {
   return $response;
  }

at SGalinski\ContentReplacer\Middleware\ContentReplacerMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 69
                return new RedirectResponse($externalUrl, 303);
            }
        }

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

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3conf/ext/scriptmerger/Classes/Middlewares/ContentPostProcessMiddleware.php line 48
  * @inheritDoc
  */
 public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface {
  $queryParams = $request->getQueryParams();
  $response = $handler->handle($request);
  // we only process via middleware, if the request has INT inclusions, because otherwise, the
  // ContentPostProcHook handles the processing and adds the result to the TYPO3 page cache. Unfortunately, JS
  // and CSS inclusions are handled as INT inclusions, if a frontend user is logged in for example, and will be
  // inserted after the page cache has already been written. Therefore, we need to make sure to catch all scripts that came
at SGalinski\Scriptmerger\Middlewares\ContentPostProcessMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 86
                $this->convertCharsetRecursivelyToUtf8($parsedBody, $this->controller->metaCharset);
                $request = $request->withParsedBody($parsedBody);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Small helper function to convert charsets for arrays to UTF-8
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 108
        }

        // Make TSFE globally available
        $GLOBALS['TSFE'] = $controller;
        return $handler->handle($request);
    }

    /**
     * Register the backend user as aspect
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 131
            }
        }

        $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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 83
        // Register the frontend user as aspect and within the session
        $this->setFrontendUserAspect($frontendUser);
        $request = $request->withAttribute('frontend.user', $frontendUser);

        $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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 66
            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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3conf/ext/fal_securedownload/Classes/Middleware/EidFrontendAuthentication.php line 40
    {
        $eID = $request->getParsedBody()['eID'] ?? $request->getQueryParams()['eID'] ?? null;

        if ($eID === null || !in_array($eID, ['dumpFile', 'FalSecuredownloadFileTreeState'])) {
            return $handler->handle($request);
        }
        $frontendUser = GeneralUtility::makeInstance(FrontendUserAuthentication::class);

        // List of page IDs where to look for frontend user records
at BeechIt\FalSecuredownload\Middleware\EidFrontendAuthentication->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b))
in /html/typo3-10/releases/437/typo3_src/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/html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f7fc3c7c41b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/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 /html/typo3-10/releases/437/typo3_src/typo3/sysext/core/Classes/Http/AbstractApplication.php line 85
     * @return ResponseInterface
     */
    protected function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->requestHandler->handle($request);
    }

    /**
     * Set up the application and shut it down afterwards
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3-10/releases/437/typo3_src/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);
    }

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