Whoops, looks like something went wrong.

(1/1) Error

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

in /html/typo3/typo3conf/ext/kesstech/Classes/Controller/ConfiguratorController.php line 423
            $this->response->addAdditionalHeaderData($ogData);

        }
        catch (\Webpard\Kesstech\Exception\ArticleNotFoundException $e) {
            $GLOBALS['TSFE']->pageUnavailableAndExit($e->getRelevantMessage());
        }
        catch (\Webpard\Kesstech\Exception\BikeNotFoundException $e) {
            $GLOBALS['TSFE']->pageUnavailableAndExit($e->getRelevantMessage());
        } // make new method in $e to get message dependant on debug state
at Webpard\Kesstech\Controller\ConfiguratorController->productAction(12586, 691)
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 498
        }
        $validationResult = $this->arguments->validate();
        if (!$validationResult->hasErrors()) {
            $this->eventDispatcher->dispatch(new BeforeActionCallEvent(static::class, $this->actionMethodName, $preparedArguments));
            $actionResult = $this->{$this->actionMethodName}(...$preparedArguments);
        } else {
            $actionResult = $this->{$this->errorMethodName}();
        }

at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->callActionMethod()
in /html/typo3/typo3_src-10.4.37/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 426
        $this->view = $this->resolveView();
        if ($this->view !== null) {
            $this->initializeView($this->view);
        }
        $this->callActionMethod();
        $this->renderAssetsForRequest($request);
    }

    /**
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/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/typo3_src-10.4.37/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/typo3_src-10.4.37/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' => 'Kesstech', 'pluginName' => 'Productconfigurator'))
at call_user_func_array(array(object(TYPO3\CMS\Extbase\Core\Bootstrap), 'run'), array('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Productconfigurator')))
in /html/typo3/typo3_src-10.4.37/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' => 'Kesstech', 'pluginName' => 'Productconfigurator'), '')
in /html/typo3/typo3_src-10.4.37/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' => 'Kesstech', 'pluginName' => 'Productconfigurator'))
in /html/typo3/typo3_src-10.4.37/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' => 'Kesstech', 'pluginName' => 'Productconfigurator'))
in /html/typo3/typo3_src-10.4.37/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' => 'Kesstech', 'pluginName' => 'Productconfigurator'), 'tt_content.list.20.kesstech_productconfigurator')
in /html/typo3/typo3_src-10.4.37/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('googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'kesstech_dealersearch' => 'USER', 'kesstech_dealersearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealersearch'), 'kesstech_dealerdetail' => 'USER', 'kesstech_dealerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealerdetail'), 'kesstech_news' => 'USER', 'kesstech_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'news'), 'kesstech_productconfigurator' => 'USER', 'kesstech_productconfigurator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Productconfigurator'), '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')), 'tt_content.list.20.kesstech_productconfigurator', 'kesstech_productconfigurator')
in /html/typo3/typo3_src-10.4.37/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' => 187, 'pid' => 7, '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' => 187, 'tstamp' => 1576599705, 'crdate' => 1468850839, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 537, 'CType' => 'list', 'header' => 'Votre moto, votre style, votre son – votre échappement électronique KessTech!', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => '130', 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '0', 'list_type' => 'kesstech_productconfigurator', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 2, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes"?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.productconfigurator.text"> <value index="vDEF">&lt;p&gt;En utilisant le configurateur KessTech, vous pouvez choisir le système d’échappement et les embouts qui correspondent le mieux à votre moto.&lt;/p&gt;&lt;p&gt;Votre configuration n’est qu’à quelques clics : choisissez votre marque, la famille de votre moto, le modèle et le moteur ainsi que l’année et vous verrez votre configuration d’échappement KessTech.&lt;/p&gt;&lt;p&gt;Vous pouvez choisir une ligne complète ou seulement les silencieux. Bien évidemment avec votre finition et vos embouts favoris – enfin, le système d’échappement KessTech de votre choix est prêt!&lt;/p&gt;&lt;p&gt;Si vous ne trouvez pas votre moto ou la configuration que vous souhaitez, n’hésitez pas à nous contacter, nous serions heureux de vous aider.&lt;/p&gt;</value> <value index="_TRANSFORM_vDEF.vDEFbase">&lt;p&gt;En utilisant le configurateur KessTech, vous pouvez choisir le système d’échappement et les embouts qui correspondent le mieux à votre moto.&lt;/p&gt;&lt;p&gt;Votre configuration n’est qu’à quelques clics : choisissez votre marque, la famille de votre moto, le modèle et le moteur ainsi que l’année et vous verrez votre configuration d’échappement KessTech.&lt;/p&gt;&lt;p&gt;Vous pouvez choisir une ligne complète ou seulement les silencieux. Bien évidemment avec votre finition et vos embouts favoris – enfin, le système d’échappement KessTech de votre choix est prêt!&lt;/p&gt;&lt;p&gt;Si vous ne trouvez pas votre moto ou la configuration que vous souhaitez, n’hésitez pas à nous contacter, nous serions heureux de vous aider.&lt;/p&gt;</value> </field> <field index="settings.productconfigurator.buttontext"> <value index="vDEF">Essayez dès maintenant!</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 187, 'l18n_diffsource' => 'a:27:{s:5:"CType";s:4:"list";s:6:"colPos";s:1:"0";s:16:"sys_language_uid";s:1:"0";s:6:"header";s:80:"Your bike, your style, your sound – your personal KessTech adjustable exhaust!";s:13:"header_layout";s:1:"0";s:15:"header_position";s:0:"";s:4:"date";s:1:"0";s:11:"header_link";s:0:"";s:9:"list_type";s:28:"kesstech_productconfigurator";s:6:"layout";s:3:"130";s:13:"section_frame";s:3:"130";s:6:"hidden";s:1:"0";s:12:"sectionIndex";s:1:"1";s:9:"linkToTop";s:1:"0";s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"fe_group";s:0:"";s:10:"select_key";s:0:"";s:5:"pages";s:0:"";s:9:"recursive";s:1:"0";s:10:"categories";s:1:"0";s:25:"tx_gridelements_container";s:1:"0";s:23:"tx_gridelements_columns";s:1:"0";s:16:"tx_flux_children";s:1:"0";s:11:"l18n_parent";s:1:"0";s:14:"tx_flux_column";s:0:"";s:11:"pi_flexform";s:1902:"<?xml version="1.0" encoding="utf-8" standalone="yes"?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.productconfigurator.text"> <value index="vDEF">&lt;p&gt;By using the KessTech configurator you can choose the exhaust system and end-caps that match your bike.&lt;/p&gt;&lt;p&gt;Your configuration is just a few clicks away: choose your brand, bike family, the model and the engine size and model-year and you will see your personal KessTech exhaust configuration.&lt;/p&gt;&lt;p&gt;You can decide for a complete exhaust system or only the slip-on damper. Obviously with your favorite finish and end cap style – then the adjustable KessTech exhaust of your choice is ready!&lt;/p&gt;&lt;p&gt;If you cannot find your bike or your desired combination here, just contact us. We are happy to help you.&lt;/p&gt;</value> <value index="_TRANSFORM_vDEF.vDEFbase">&lt;p&gt;By using the KessTech configurator you can choose the exhaust system and end-caps that match your bike.&lt;/p&gt;&lt;p&gt;Your configuration is just a few clicks away: choose your brand, bike family, the model and the engine size and model-year and you will see your personal KessTech exhaust configuration.&lt;/p&gt;&lt;p&gt;You can decide for a complete exhaust system or only the slip-on damper. Obviously with your favorite finish and end cap style – then the adjustable KessTech exhaust of your choice is ready!&lt;/p&gt;&lt;p&gt;If you cannot find your bike or your desired combination here, just contact us. We are happy to help you.&lt;/p&gt;</value> </field> <field index="settings.productconfigurator.buttontext"> <value index="vDEF">Try it now!</value> </field> </language> </sheet> </data></T3FlexForms>";}', 'selected_categories' => '', 'category_field' => '', 'categories' => 0, 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'custom-130', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 187, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_flux_migrated_version' => null, 'gridelements_shortcut_page_order_by' => 0, 'tx_youtubevideo_assets' => 0, 'tx_youtubevideo_colcount' => 0, 'tx_youtubevideo_oneatatime' => 0, 'tx_youtubevideo_titles' => 0, 'tx_youtubevideo_descriptions' => 0, '_LOCALIZED_UID' => 473), 'typoscriptObjectPath' => 'tt_content.list.20.kesstech_productconfigurator', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/Standard_action_list_39510bac8d6b7d59e16a5f02ea5eb3d0fb00aa46.php line 78
$array11 = array (
);$arguments7['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array11);
$arguments7['table'] = 'tt_content';
$renderChildrenClosure8 = ($arguments7['data'] !== null) ? function() use ($arguments7) { return $arguments7['data']; } : $renderChildrenClosure8;
$output6 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments7, $renderChildrenClosure8, $renderingContext);

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

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

$output0 .= '

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

$output360 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments398, $renderChildrenClosure399, $renderingContext);

$output360 .= '
                    ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_542b8d9a4c6d71e29158124ef3823de7ffc02184->{closure}()
in /html/typo3/typo3temp/var/cache/code/fluid_template/layout_Default_html_542b8d9a4c6d71e29158124ef3823de7ffc02184.php line 3104
                </div>
            </div>
        ';
return $output360;
});
}
}, array($arguments4));

$output3 .= '
at layout_Default_html_542b8d9a4c6d71e29158124ef3823de7ffc02184->{closure}(array('expression' => 'custom-130'))
in /html/typo3/typo3temp/var/cache/code/fluid_template/layout_Default_html_542b8d9a4c6d71e29158124ef3823de7ffc02184.php line 3106
        ';
return $output360;
});
}
}, array($arguments4));

$output3 .= '

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

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

$output0 .= '

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

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

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /html/typo3/typo3_src-10.4.37/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/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'fileadmin/templates/2020/private/layout/Layout/'), '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('googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'kesstech_dealersearch' => 'USER', 'kesstech_dealersearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealersearch'), 'kesstech_dealerdetail' => 'USER', 'kesstech_dealerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealerdetail'), 'kesstech_news' => 'USER', 'kesstech_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'news'), 'kesstech_productconfigurator' => 'USER', 'kesstech_productconfigurator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Productconfigurator'), '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'))))
in /html/typo3/typo3_src-10.4.37/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/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'fileadmin/templates/2020/private/layout/Layout/'), '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('googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'kesstech_dealersearch' => 'USER', 'kesstech_dealersearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealersearch'), 'kesstech_dealerdetail' => 'USER', 'kesstech_dealerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealerdetail'), 'kesstech_news' => 'USER', 'kesstech_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'news'), 'kesstech_productconfigurator' => 'USER', 'kesstech_productconfigurator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Productconfigurator'), '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'))))
in /html/typo3/typo3_src-10.4.37/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/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'fileadmin/templates/2020/private/layout/Layout/'), '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('googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'kesstech_dealersearch' => 'USER', 'kesstech_dealersearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealersearch'), 'kesstech_dealerdetail' => 'USER', 'kesstech_dealerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealerdetail'), 'kesstech_news' => 'USER', 'kesstech_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'news'), 'kesstech_productconfigurator' => 'USER', 'kesstech_productconfigurator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Productconfigurator'), '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'))), 'lib.contentElement')
in /html/typo3/typo3_src-10.4.37/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/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'fileadmin/templates/2020/private/layout/Layout/'), '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('googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'kesstech_dealersearch' => 'USER', 'kesstech_dealersearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealersearch'), 'kesstech_dealerdetail' => 'USER', 'kesstech_dealerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealerdetail'), 'kesstech_news' => 'USER', 'kesstech_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'news'), 'kesstech_productconfigurator' => 'USER', 'kesstech_productconfigurator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Productconfigurator'), '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'))), 'list')
in /html/typo3/typo3_src-10.4.37/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')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '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('googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'kesstech_dealersearch' => 'USER', 'kesstech_dealersearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealersearch'), 'kesstech_dealerdetail' => 'USER', 'kesstech_dealerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealerdetail'), 'kesstech_news' => 'USER', 'kesstech_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'news'), 'kesstech_productconfigurator' => 'USER', 'kesstech_productconfigurator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Productconfigurator'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages', 'conf.' => 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')))), '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')))), '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('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')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'kesstech_divider' => '< lib.contentElement', 'kesstech_divider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Divider')), 'kesstech_eventsgallery' => '< lib.contentElement', 'kesstech_eventsgallery.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Eventsgallery')), 'kesstech_gallery' => '< lib.contentElement', 'kesstech_gallery.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Gallery')), 'kesstech_heroimage' => '< lib.contentElement', 'kesstech_heroimage.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Heroimage')), 'kesstech_heroimageslider' => '< lib.contentElement', 'kesstech_heroimageslider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Heroimageslider')), 'kesstech_herovideo' => '< lib.contentElement', 'kesstech_herovideo.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Herovideo')), 'kesstech_image' => '< lib.contentElement', 'kesstech_image.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Image')), 'kesstech_joboffers' => '< lib.contentElement', 'kesstech_joboffers.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Joboffers')), 'kesstech_layer' => '< lib.contentElement', 'kesstech_layer.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Layer')), 'kesstech_layercontent' => '< lib.contentElement', 'kesstech_layercontent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Layercontent')), 'kesstech_linkwithimage' => '< lib.contentElement', 'kesstech_linkwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Linkwithimage')), 'kesstech_listevents' => '< lib.contentElement', 'kesstech_listevents.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Listevents')), 'kesstech_listlinked' => '< lib.contentElement', 'kesstech_listlinked.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Listlinked')), 'kesstech_navigation' => '< lib.contentElement', 'kesstech_navigation.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Navigation')), 'kesstech_newsoverview' => '< lib.contentElement', 'kesstech_newsoverview.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Newsoverview')), 'kesstech_text' => '< lib.contentElement', 'kesstech_text.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Text')), 'kesstech_textwithimage' => '< lib.contentElement', 'kesstech_textwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Textwithimage')), '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')))), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol1} {field:flexform_smCol1} {field:flexform_mdCol1} {field:flexform_lgCol1} {field:flexform_xlCol1} {field:flexform_col21class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol2} {field:flexform_smCol2} {field:flexform_mdCol2} {field:flexform_lgCol2} {field:flexform_xlCol2} {field:flexform_col22class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*)))))), 'wrap' => '<div class="row {field:flexform_rowValign} {field:flexform_rowHalign} {field:flexform_rowCustom}">|</div>', 'wrap.' => array('insertData' => '1')), '3cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol1} {field:flexform_smCol1} {field:flexform_mdCol1} {field:flexform_lgCol1} {field:flexform_xlCol1} {field:flexform_col31class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol2} {field:flexform_smCol2} {field:flexform_mdCol2} {field:flexform_lgCol2} {field:flexform_xlCol2} {field:flexform_col32class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol3} {field:flexform_smCol3} {field:flexform_mdCol3} {field:flexform_lgCol3} {field:flexform_xlCol3} {field:flexform_col33class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*)))))), 'wrap' => '<div class="row {field:flexform_rowValign} {field:flexform_rowHalign} {field:flexform_rowCustom}">|</div>', 'wrap.' => array('insertData' => '1')), '4cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol1} {field:flexform_smCol1} {field:flexform_mdCol1} {field:flexform_lgCol1} {field:flexform_xlCol1} {field:flexform_col41class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol2} {field:flexform_smCol2} {field:flexform_mdCol2} {field:flexform_lgCol2} {field:flexform_xlCol2} {field:flexform_col42class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol3} {field:flexform_smCol3} {field:flexform_mdCol3} {field:flexform_lgCol3} {field:flexform_xlCol3} {field:flexform_col43class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '104.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol4} {field:flexform_smCol4} {field:flexform_mdCol4} {field:flexform_lgCol4} {field:flexform_xlCol4} {field:flexform_col44class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*)))))), 'wrap' => '<div class="row {field:flexform_rowValign} {field:flexform_rowHalign} {field:flexform_rowCustom}">|</div>', 'wrap.' => array('insertData' => '1')), 'tabsSimple.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('LOAD_REGISTER', '5.' => array('TabCount2.' => array('cObject' => 'TEXT', 'cObject.' => array(*DEEP NESTED ARRAY*), 'prioriCalc' => 'intval')), 'stdWrap.' => array('insertData' => '1', 'outerWrap.' => array('cObject' => 'CASE', 'cObject.' => array(*DEEP NESTED ARRAY*))), 'CASE', '20.' => 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(*DEEP NESTED ARRAY*)), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array(*DEEP NESTED ARRAY*)), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array(*DEEP NESTED ARRAY*)), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array(*DEEP NESTED ARRAY*), '20.' => array(*DEEP NESTED ARRAY*)), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_divider' => '< lib.contentElement', 'kesstech_divider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_eventsgallery' => '< lib.contentElement', 'kesstech_eventsgallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_gallery' => '< lib.contentElement', 'kesstech_gallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimage' => '< lib.contentElement', 'kesstech_heroimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimageslider' => '< lib.contentElement', 'kesstech_heroimageslider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_herovideo' => '< lib.contentElement', 'kesstech_herovideo.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_image' => '< lib.contentElement', 'kesstech_image.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_joboffers' => '< lib.contentElement', 'kesstech_joboffers.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layer' => '< lib.contentElement', 'kesstech_layer.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layercontent' => '< lib.contentElement', 'kesstech_layercontent.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_linkwithimage' => '< lib.contentElement', 'kesstech_linkwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listevents' => '< lib.contentElement', 'kesstech_listevents.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listlinked' => '< lib.contentElement', 'kesstech_listlinked.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_navigation' => '< lib.contentElement', 'kesstech_navigation.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_newsoverview' => '< lib.contentElement', 'kesstech_newsoverview.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_text' => '< lib.contentElement', 'kesstech_text.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_textwithimage' => '< lib.contentElement', 'kesstech_textwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*)), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*)), 'youtubevideo_pi1' => '< lib.contentElement', 'youtubevideo_pi1.' => array('templateName' => 'TEXT', 'templateName.' => array(*DEEP NESTED ARRAY*), 'templateRootPaths.' => array(*DEEP NESTED ARRAY*), 'partialRootPaths.' => array(*DEEP NESTED ARRAY*), 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'settings.' => array(*DEEP NESTED ARRAY*), 'variables.' => array(*DEEP NESTED ARRAY*)), 'multimedia.' => array(), 'media.' => array(), 'mailform.' => array(), 'menu.' => array(), 'videoce_videocontent.' => array())), 'wrap' => '<div class="tab-content">|</div>')), 'outerWrap' => '<div class="simple-tabs {field:flexform_style}">|</div>', 'outerWrap.' => array('insertData' => '1'), 'prepend' => 'CONTENT', 'prepend.' => array('table' => 'tt_content', 'select.' => array('selectFields' => 'header, uid, tx_gridelements_container, sorting', 'where' => 'tx_gridelements_container={field:uid}', 'where.' => array('insertData' => '1'), 'orderBy' => 'sorting'), 'wrap' => '<div class="nav nav-tabs" role="tablist">|</div>', 'renderObj' => 'COA', 'renderObj.' => array('LOAD_REGISTER', '5.' => array('TabCount.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:TabCount', 'wrap' => '|+1'), 'prioriCalc' => 'intval')), 'TEXT', '10.' => array('field' => 'header', 'insertData' => '1', 'wrap' => '|', 'outerWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array(*DEEP NESTED ARRAY*), 'default' => 'TEXT', 'default.' => array(*DEEP NESTED ARRAY*), 'TEXT', '1.' => array(*DEEP NESTED ARRAY*)))))), 'append' => 'COA', 'append.' => array('LOAD_REGISTER', '5.' => array('TabCount.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:TabCount', 'wrap' => '|*0'), 'prioriCalc' => 'intval')), 'LOAD_REGISTER', '10.' => array('TabCount2.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:TabCount2', 'wrap' => '|*0'), 'prioriCalc' => 'intval')))), 'tabs4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade show active" id="nav-c{field:uid}-c1" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab1">|</div>', 'wrap.' => array('insertData' => '1')), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c2" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab2">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c3" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab3">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), '104.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c4" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab4">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4')))), 'outerWrap' => '<div class="{field:flexform_style}">|</div>', 'outerWrap.' => array('insertData' => '1'), 'prepend' => 'COA', 'prepend.' => array('wrap' => '<ul class="nav nav-tabs" role="tablist">|</ul>', 'TEXT', '10.' => array('value' => '<li class="nav-item"><a class="nav-link active" id="nav-c{field:uid}-tab1" data-toggle="tab" href="#nav-c{field:uid}-c1" role="tab" aria-controls="nav-c{field:uid}-c1" aria-selected="true">{field:flexform_tabTitle1}</a></li>', 'insertData' => '1'), 'TEXT', '20.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab2" data-toggle="tab" href="#nav-c{field:uid}-c2" role="tab" aria-controls="nav-c{field:uid}-c2">{field:flexform_tabTitle2}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), 'TEXT', '30.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab3" data-toggle="tab" href="#nav-c{field:uid}-c3" role="tab" aria-controls="nav-c{field:uid}-c3">{field:flexform_tabTitle3}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), 'TEXT', '40.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab4" data-toggle="tab" href="#nav-c{field:uid}-c4" role="tab" aria-controls="nav-c{field:uid}-c4">{field:flexform_tabTitle4}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4')))), 'wrap' => '<div class="tab-content">|</div>'), 'tabs6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade show active" id="nav-c{field:uid}-c1" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab1">|</div>', 'wrap.' => array('insertData' => '1')), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c2" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab2">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c3" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab3">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), '104.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c4" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab4">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4'))), '105.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c5" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab5">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle5'))), '106.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c6" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab6">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle6')))), 'outerWrap' => '<div class="{field:flexform_style}">|</div>', 'outerWrap.' => array('insertData' => '1'), 'prepend' => 'COA', 'prepend.' => array('wrap' => '<ul class="nav nav-tabs" role="tablist">|</ul>', 'TEXT', '10.' => array('value' => '<li class="nav-item"><a class="nav-link active" id="nav-c{field:uid}-tab1" data-toggle="tab" href="#nav-c{field:uid}-c1" role="tab" aria-controls="nav-c{field:uid}-c1" aria-selected="true">{field:flexform_tabTitle1}</a></li>', 'insertData' => '1'), 'TEXT', '20.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab2" data-toggle="tab" href="#nav-c{field:uid}-c2" role="tab" aria-controls="nav-c{field:uid}-c2">{field:flexform_tabTitle2}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), 'TEXT', '30.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab3" data-toggle="tab" href="#nav-c{field:uid}-c3" role="tab" aria-controls="nav-c{field:uid}-c3">{field:flexform_tabTitle3}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), 'TEXT', '40.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab4" data-toggle="tab" href="#nav-c{field:uid}-c4" role="tab" aria-controls="nav-c{field:uid}-c4">{field:flexform_tabTitle4}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4'))), 'TEXT', '50.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab5" data-toggle="tab" href="#nav-c{field:uid}-c5" role="tab" aria-controls="nav-c{field:uid}-c5">{field:flexform_tabTitle5}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle5'))), 'TEXT', '60.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab6" data-toggle="tab" href="#nav-c{field:uid}-c6" role="tab" aria-controls="nav-c{field:uid}-c6">{field:flexform_tabTitle6}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle6')))), 'wrap' => '<div class="tab-content">|</div>'), 'xSimpleRow.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '111.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '|')), 'wrap' => '<div class="row">|</div>'), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('LOAD_REGISTER', '5.' => array('AccordionCount.' => array('cObject' => 'TEXT', 'cObject.' => array(*DEEP NESTED ARRAY*), 'prioriCalc' => 'intval')), 'TEXT', '10.' => array('field' => 'header', 'insertData' => '1', 'wrap' => '<div class="card"><div class="card-header" id="heading-c{field:uid}"><h5 class="mb-0"><div class="btn btn-link collapsed" data-toggle="collapse" data-parent="#accordion-{field:tx_gridelements_container}" data-target="#collapse-{field:uid}" aria-expanded="false" aria-controls="collapse-{field:uid}">|</div></h5></div><div id="collapse-{field:uid}" class="collapse" aria-labelledby="heading-c{field:uid}" data-parent="#accordion-{field:tx_gridelements_container}"><div class="card-body">'), 'CASE', '20.' => 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(*DEEP NESTED ARRAY*)), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array(*DEEP NESTED ARRAY*)), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array(*DEEP NESTED ARRAY*)), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array(*DEEP NESTED ARRAY*), '20.' => array(*DEEP NESTED ARRAY*)), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_divider' => '< lib.contentElement', 'kesstech_divider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_eventsgallery' => '< lib.contentElement', 'kesstech_eventsgallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_gallery' => '< lib.contentElement', 'kesstech_gallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimage' => '< lib.contentElement', 'kesstech_heroimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimageslider' => '< lib.contentElement', 'kesstech_heroimageslider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_herovideo' => '< lib.contentElement', 'kesstech_herovideo.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_image' => '< lib.contentElement', 'kesstech_image.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_joboffers' => '< lib.contentElement', 'kesstech_joboffers.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layer' => '< lib.contentElement', 'kesstech_layer.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layercontent' => '< lib.contentElement', 'kesstech_layercontent.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_linkwithimage' => '< lib.contentElement', 'kesstech_linkwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listevents' => '< lib.contentElement', 'kesstech_listevents.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listlinked' => '< lib.contentElement', 'kesstech_listlinked.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_navigation' => '< lib.contentElement', 'kesstech_navigation.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_newsoverview' => '< lib.contentElement', 'kesstech_newsoverview.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_text' => '< lib.contentElement', 'kesstech_text.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_textwithimage' => '< lib.contentElement', 'kesstech_textwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*)), 'youtubevideo_pi1' => '< lib.contentElement', 'youtubevideo_pi1.' => array('templateName' => 'TEXT', 'templateName.' => array(*DEEP NESTED ARRAY*), 'templateRootPaths.' => array(*DEEP NESTED ARRAY*), 'partialRootPaths.' => array(*DEEP NESTED ARRAY*), 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'settings.' => array(*DEEP NESTED ARRAY*), 'variables.' => array(*DEEP NESTED ARRAY*)), 'fluidcontent_content.' => array(), 'multimedia.' => array(), 'media.' => array(), 'mailform.' => array(), 'menu.' => array(), 'videoce_videocontent.' => array()), 'TEXT', '30.' => array('wrap' => '|</div></div></div>')))), 'outerWrap.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'flexform_rowclass'), 'default' => 'TEXT', 'default.' => array('value' => '<div id="accordion-{field:_LOCALIZED_UID//field:uid}" class="wprovider-accordion">|</div>'))), 'insertData' => '1'), 'append' => 'COA', 'append.' => array('LOAD_REGISTER', '5.' => array('AccordionCount.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:AccordionCount', 'wrap' => '|*0'), 'prioriCalc' => 'intval'))))))), 'stdWrap.' => array('wrap' => '<div id="c{field:uid}" class="grid-container ge-container frame frame-{field:frame_class} frame-layout-{field:layout} frame-type-{field:CType}"><div class="container">|</div></div>', 'wrap.' => array('insertData' => '1'))), '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')))))))), 'youtubevideo_pi1' => '< lib.contentElement', 'youtubevideo_pi1.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'YoutubevideoIframe', 'if.' => array('isTrue' => '0')), 'ifEmpty' => 'Youtubevideo')), 'templateRootPaths.' => array('EXT:youtubevideo/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:youtubevideo/Resources/Private/Partials/'), 'dataProcessing.' => array('Brightside\\Youtubevideo\\DataProcessing\\YoutubevideoFilesProcessor', '10.' => array('pagination.' => array('isActive.' => array('field' => 'tx_paginatedprocessors_paginationenabled'), 'uniqueId.' => array('field' => 'uid', 'override.' => array('field' => 'tx_paginatedprocessors_urlsegment')), 'itemsPerPage' => 'tx_paginatedprocessors_itemsperpage', 'itemsPerPage.' => array('field' => 'tx_paginatedprocessors_itemsperpage'), 'pageLinksShown' => '5', 'pageLinksShown.' => array('override.' => array('field' => 'tx_paginatedprocessors_pagelinksshown')), 'anchorActive.' => array('field' => 'tx_paginatedprocessors_anchor'), 'anchorId.' => array('field' => 'uid', 'override.' => array('field' => 'tx_paginatedprocessors_anchorid'))))), 'settings.' => array('coverimagewidth' => '1280', 'colspacewidth' => '1.5'), 'variables.' => array('hl' => 'TEXT', 'hl.' => array('data' => 'siteLanguage:iso-639-1'), 'ratioDefault' => 'TEXT', 'ratioDefault.' => array('value' => '56.25'), 'ratio1' => 'TEXT', 'ratio1.' => array('value' => '75'), 'modestbranding' => 'TEXT', 'modestbranding.' => array('value' => '0'), 'nocookiehost' => 'TEXT', 'nocookiehost.' => array('value' => '0'), 'coverimagewidth' => 'TEXT', 'coverimagewidth.' => array('value' => '1280'), 'containerBreakpointSmall' => 'TEXT', 'containerBreakpointSmall.' => array('value' => '500'), 'containerBreakpointTiny' => 'TEXT', 'containerBreakpointTiny.' => array('value' => '300'), 'gdprnote' => 'TEXT', 'gdprnote.' => array('value' => '1'), 'gdprtextoverride' => 'TEXT', 'gdprtextoverride.' => array('value' => ''), 'colspacewidth' => 'TEXT', 'colspacewidth.' => array('value' => '1.5'), 'iframe' => 'TEXT', 'iframe.' => array('value' => '0'))), 'fluidcontent_content.' => array()))
in /html/typo3/typo3_src-10.4.37/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')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '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('googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'kesstech_dealersearch' => 'USER', 'kesstech_dealersearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealersearch'), 'kesstech_dealerdetail' => 'USER', 'kesstech_dealerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealerdetail'), 'kesstech_news' => 'USER', 'kesstech_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'news'), 'kesstech_productconfigurator' => 'USER', 'kesstech_productconfigurator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Productconfigurator'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages', 'conf.' => 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')))), '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')))), '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('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')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'kesstech_divider' => '< lib.contentElement', 'kesstech_divider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Divider')), 'kesstech_eventsgallery' => '< lib.contentElement', 'kesstech_eventsgallery.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Eventsgallery')), 'kesstech_gallery' => '< lib.contentElement', 'kesstech_gallery.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Gallery')), 'kesstech_heroimage' => '< lib.contentElement', 'kesstech_heroimage.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Heroimage')), 'kesstech_heroimageslider' => '< lib.contentElement', 'kesstech_heroimageslider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Heroimageslider')), 'kesstech_herovideo' => '< lib.contentElement', 'kesstech_herovideo.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Herovideo')), 'kesstech_image' => '< lib.contentElement', 'kesstech_image.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Image')), 'kesstech_joboffers' => '< lib.contentElement', 'kesstech_joboffers.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Joboffers')), 'kesstech_layer' => '< lib.contentElement', 'kesstech_layer.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Layer')), 'kesstech_layercontent' => '< lib.contentElement', 'kesstech_layercontent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Layercontent')), 'kesstech_linkwithimage' => '< lib.contentElement', 'kesstech_linkwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Linkwithimage')), 'kesstech_listevents' => '< lib.contentElement', 'kesstech_listevents.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Listevents')), 'kesstech_listlinked' => '< lib.contentElement', 'kesstech_listlinked.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Listlinked')), 'kesstech_navigation' => '< lib.contentElement', 'kesstech_navigation.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Navigation')), 'kesstech_newsoverview' => '< lib.contentElement', 'kesstech_newsoverview.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Newsoverview')), 'kesstech_text' => '< lib.contentElement', 'kesstech_text.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Text')), 'kesstech_textwithimage' => '< lib.contentElement', 'kesstech_textwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Textwithimage')), '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')))), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol1} {field:flexform_smCol1} {field:flexform_mdCol1} {field:flexform_lgCol1} {field:flexform_xlCol1} {field:flexform_col21class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol2} {field:flexform_smCol2} {field:flexform_mdCol2} {field:flexform_lgCol2} {field:flexform_xlCol2} {field:flexform_col22class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*)))))), 'wrap' => '<div class="row {field:flexform_rowValign} {field:flexform_rowHalign} {field:flexform_rowCustom}">|</div>', 'wrap.' => array('insertData' => '1')), '3cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol1} {field:flexform_smCol1} {field:flexform_mdCol1} {field:flexform_lgCol1} {field:flexform_xlCol1} {field:flexform_col31class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol2} {field:flexform_smCol2} {field:flexform_mdCol2} {field:flexform_lgCol2} {field:flexform_xlCol2} {field:flexform_col32class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol3} {field:flexform_smCol3} {field:flexform_mdCol3} {field:flexform_lgCol3} {field:flexform_xlCol3} {field:flexform_col33class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*)))))), 'wrap' => '<div class="row {field:flexform_rowValign} {field:flexform_rowHalign} {field:flexform_rowCustom}">|</div>', 'wrap.' => array('insertData' => '1')), '4cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol1} {field:flexform_smCol1} {field:flexform_mdCol1} {field:flexform_lgCol1} {field:flexform_xlCol1} {field:flexform_col41class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol2} {field:flexform_smCol2} {field:flexform_mdCol2} {field:flexform_lgCol2} {field:flexform_xlCol2} {field:flexform_col42class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol3} {field:flexform_smCol3} {field:flexform_mdCol3} {field:flexform_lgCol3} {field:flexform_xlCol3} {field:flexform_col43class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '104.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol4} {field:flexform_smCol4} {field:flexform_mdCol4} {field:flexform_lgCol4} {field:flexform_xlCol4} {field:flexform_col44class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*)))))), 'wrap' => '<div class="row {field:flexform_rowValign} {field:flexform_rowHalign} {field:flexform_rowCustom}">|</div>', 'wrap.' => array('insertData' => '1')), 'tabsSimple.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('LOAD_REGISTER', '5.' => array('TabCount2.' => array('cObject' => 'TEXT', 'cObject.' => array(*DEEP NESTED ARRAY*), 'prioriCalc' => 'intval')), 'stdWrap.' => array('insertData' => '1', 'outerWrap.' => array('cObject' => 'CASE', 'cObject.' => array(*DEEP NESTED ARRAY*))), 'CASE', '20.' => 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(*DEEP NESTED ARRAY*)), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array(*DEEP NESTED ARRAY*)), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array(*DEEP NESTED ARRAY*)), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array(*DEEP NESTED ARRAY*), '20.' => array(*DEEP NESTED ARRAY*)), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_divider' => '< lib.contentElement', 'kesstech_divider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_eventsgallery' => '< lib.contentElement', 'kesstech_eventsgallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_gallery' => '< lib.contentElement', 'kesstech_gallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimage' => '< lib.contentElement', 'kesstech_heroimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimageslider' => '< lib.contentElement', 'kesstech_heroimageslider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_herovideo' => '< lib.contentElement', 'kesstech_herovideo.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_image' => '< lib.contentElement', 'kesstech_image.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_joboffers' => '< lib.contentElement', 'kesstech_joboffers.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layer' => '< lib.contentElement', 'kesstech_layer.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layercontent' => '< lib.contentElement', 'kesstech_layercontent.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_linkwithimage' => '< lib.contentElement', 'kesstech_linkwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listevents' => '< lib.contentElement', 'kesstech_listevents.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listlinked' => '< lib.contentElement', 'kesstech_listlinked.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_navigation' => '< lib.contentElement', 'kesstech_navigation.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_newsoverview' => '< lib.contentElement', 'kesstech_newsoverview.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_text' => '< lib.contentElement', 'kesstech_text.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_textwithimage' => '< lib.contentElement', 'kesstech_textwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*)), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*)), 'youtubevideo_pi1' => '< lib.contentElement', 'youtubevideo_pi1.' => array('templateName' => 'TEXT', 'templateName.' => array(*DEEP NESTED ARRAY*), 'templateRootPaths.' => array(*DEEP NESTED ARRAY*), 'partialRootPaths.' => array(*DEEP NESTED ARRAY*), 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'settings.' => array(*DEEP NESTED ARRAY*), 'variables.' => array(*DEEP NESTED ARRAY*)), 'multimedia.' => array(), 'media.' => array(), 'mailform.' => array(), 'menu.' => array(), 'videoce_videocontent.' => array())), 'wrap' => '<div class="tab-content">|</div>')), 'outerWrap' => '<div class="simple-tabs {field:flexform_style}">|</div>', 'outerWrap.' => array('insertData' => '1'), 'prepend' => 'CONTENT', 'prepend.' => array('table' => 'tt_content', 'select.' => array('selectFields' => 'header, uid, tx_gridelements_container, sorting', 'where' => 'tx_gridelements_container={field:uid}', 'where.' => array('insertData' => '1'), 'orderBy' => 'sorting'), 'wrap' => '<div class="nav nav-tabs" role="tablist">|</div>', 'renderObj' => 'COA', 'renderObj.' => array('LOAD_REGISTER', '5.' => array('TabCount.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:TabCount', 'wrap' => '|+1'), 'prioriCalc' => 'intval')), 'TEXT', '10.' => array('field' => 'header', 'insertData' => '1', 'wrap' => '|', 'outerWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array(*DEEP NESTED ARRAY*), 'default' => 'TEXT', 'default.' => array(*DEEP NESTED ARRAY*), 'TEXT', '1.' => array(*DEEP NESTED ARRAY*)))))), 'append' => 'COA', 'append.' => array('LOAD_REGISTER', '5.' => array('TabCount.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:TabCount', 'wrap' => '|*0'), 'prioriCalc' => 'intval')), 'LOAD_REGISTER', '10.' => array('TabCount2.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:TabCount2', 'wrap' => '|*0'), 'prioriCalc' => 'intval')))), 'tabs4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade show active" id="nav-c{field:uid}-c1" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab1">|</div>', 'wrap.' => array('insertData' => '1')), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c2" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab2">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c3" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab3">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), '104.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c4" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab4">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4')))), 'outerWrap' => '<div class="{field:flexform_style}">|</div>', 'outerWrap.' => array('insertData' => '1'), 'prepend' => 'COA', 'prepend.' => array('wrap' => '<ul class="nav nav-tabs" role="tablist">|</ul>', 'TEXT', '10.' => array('value' => '<li class="nav-item"><a class="nav-link active" id="nav-c{field:uid}-tab1" data-toggle="tab" href="#nav-c{field:uid}-c1" role="tab" aria-controls="nav-c{field:uid}-c1" aria-selected="true">{field:flexform_tabTitle1}</a></li>', 'insertData' => '1'), 'TEXT', '20.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab2" data-toggle="tab" href="#nav-c{field:uid}-c2" role="tab" aria-controls="nav-c{field:uid}-c2">{field:flexform_tabTitle2}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), 'TEXT', '30.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab3" data-toggle="tab" href="#nav-c{field:uid}-c3" role="tab" aria-controls="nav-c{field:uid}-c3">{field:flexform_tabTitle3}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), 'TEXT', '40.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab4" data-toggle="tab" href="#nav-c{field:uid}-c4" role="tab" aria-controls="nav-c{field:uid}-c4">{field:flexform_tabTitle4}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4')))), 'wrap' => '<div class="tab-content">|</div>'), 'tabs6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade show active" id="nav-c{field:uid}-c1" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab1">|</div>', 'wrap.' => array('insertData' => '1')), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c2" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab2">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c3" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab3">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), '104.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c4" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab4">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4'))), '105.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c5" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab5">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle5'))), '106.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c6" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab6">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle6')))), 'outerWrap' => '<div class="{field:flexform_style}">|</div>', 'outerWrap.' => array('insertData' => '1'), 'prepend' => 'COA', 'prepend.' => array('wrap' => '<ul class="nav nav-tabs" role="tablist">|</ul>', 'TEXT', '10.' => array('value' => '<li class="nav-item"><a class="nav-link active" id="nav-c{field:uid}-tab1" data-toggle="tab" href="#nav-c{field:uid}-c1" role="tab" aria-controls="nav-c{field:uid}-c1" aria-selected="true">{field:flexform_tabTitle1}</a></li>', 'insertData' => '1'), 'TEXT', '20.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab2" data-toggle="tab" href="#nav-c{field:uid}-c2" role="tab" aria-controls="nav-c{field:uid}-c2">{field:flexform_tabTitle2}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), 'TEXT', '30.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab3" data-toggle="tab" href="#nav-c{field:uid}-c3" role="tab" aria-controls="nav-c{field:uid}-c3">{field:flexform_tabTitle3}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), 'TEXT', '40.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab4" data-toggle="tab" href="#nav-c{field:uid}-c4" role="tab" aria-controls="nav-c{field:uid}-c4">{field:flexform_tabTitle4}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4'))), 'TEXT', '50.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab5" data-toggle="tab" href="#nav-c{field:uid}-c5" role="tab" aria-controls="nav-c{field:uid}-c5">{field:flexform_tabTitle5}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle5'))), 'TEXT', '60.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab6" data-toggle="tab" href="#nav-c{field:uid}-c6" role="tab" aria-controls="nav-c{field:uid}-c6">{field:flexform_tabTitle6}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle6')))), 'wrap' => '<div class="tab-content">|</div>'), 'xSimpleRow.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '111.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '|')), 'wrap' => '<div class="row">|</div>'), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('LOAD_REGISTER', '5.' => array('AccordionCount.' => array('cObject' => 'TEXT', 'cObject.' => array(*DEEP NESTED ARRAY*), 'prioriCalc' => 'intval')), 'TEXT', '10.' => array('field' => 'header', 'insertData' => '1', 'wrap' => '<div class="card"><div class="card-header" id="heading-c{field:uid}"><h5 class="mb-0"><div class="btn btn-link collapsed" data-toggle="collapse" data-parent="#accordion-{field:tx_gridelements_container}" data-target="#collapse-{field:uid}" aria-expanded="false" aria-controls="collapse-{field:uid}">|</div></h5></div><div id="collapse-{field:uid}" class="collapse" aria-labelledby="heading-c{field:uid}" data-parent="#accordion-{field:tx_gridelements_container}"><div class="card-body">'), 'CASE', '20.' => 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(*DEEP NESTED ARRAY*)), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array(*DEEP NESTED ARRAY*)), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array(*DEEP NESTED ARRAY*)), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array(*DEEP NESTED ARRAY*), '20.' => array(*DEEP NESTED ARRAY*)), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_divider' => '< lib.contentElement', 'kesstech_divider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_eventsgallery' => '< lib.contentElement', 'kesstech_eventsgallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_gallery' => '< lib.contentElement', 'kesstech_gallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimage' => '< lib.contentElement', 'kesstech_heroimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimageslider' => '< lib.contentElement', 'kesstech_heroimageslider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_herovideo' => '< lib.contentElement', 'kesstech_herovideo.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_image' => '< lib.contentElement', 'kesstech_image.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_joboffers' => '< lib.contentElement', 'kesstech_joboffers.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layer' => '< lib.contentElement', 'kesstech_layer.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layercontent' => '< lib.contentElement', 'kesstech_layercontent.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_linkwithimage' => '< lib.contentElement', 'kesstech_linkwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listevents' => '< lib.contentElement', 'kesstech_listevents.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listlinked' => '< lib.contentElement', 'kesstech_listlinked.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_navigation' => '< lib.contentElement', 'kesstech_navigation.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_newsoverview' => '< lib.contentElement', 'kesstech_newsoverview.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_text' => '< lib.contentElement', 'kesstech_text.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_textwithimage' => '< lib.contentElement', 'kesstech_textwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*)), 'youtubevideo_pi1' => '< lib.contentElement', 'youtubevideo_pi1.' => array('templateName' => 'TEXT', 'templateName.' => array(*DEEP NESTED ARRAY*), 'templateRootPaths.' => array(*DEEP NESTED ARRAY*), 'partialRootPaths.' => array(*DEEP NESTED ARRAY*), 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'settings.' => array(*DEEP NESTED ARRAY*), 'variables.' => array(*DEEP NESTED ARRAY*)), 'fluidcontent_content.' => array(), 'multimedia.' => array(), 'media.' => array(), 'mailform.' => array(), 'menu.' => array(), 'videoce_videocontent.' => array()), 'TEXT', '30.' => array('wrap' => '|</div></div></div>')))), 'outerWrap.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'flexform_rowclass'), 'default' => 'TEXT', 'default.' => array('value' => '<div id="accordion-{field:_LOCALIZED_UID//field:uid}" class="wprovider-accordion">|</div>'))), 'insertData' => '1'), 'append' => 'COA', 'append.' => array('LOAD_REGISTER', '5.' => array('AccordionCount.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:AccordionCount', 'wrap' => '|*0'), 'prioriCalc' => 'intval'))))))), 'stdWrap.' => array('wrap' => '<div id="c{field:uid}" class="grid-container ge-container frame frame-{field:frame_class} frame-layout-{field:layout} frame-type-{field:CType}"><div class="container">|</div></div>', 'wrap.' => array('insertData' => '1'))), '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')))))))), 'youtubevideo_pi1' => '< lib.contentElement', 'youtubevideo_pi1.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'YoutubevideoIframe', 'if.' => array('isTrue' => '0')), 'ifEmpty' => 'Youtubevideo')), 'templateRootPaths.' => array('EXT:youtubevideo/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:youtubevideo/Resources/Private/Partials/'), 'dataProcessing.' => array('Brightside\\Youtubevideo\\DataProcessing\\YoutubevideoFilesProcessor', '10.' => array('pagination.' => array('isActive.' => array('field' => 'tx_paginatedprocessors_paginationenabled'), 'uniqueId.' => array('field' => 'uid', 'override.' => array('field' => 'tx_paginatedprocessors_urlsegment')), 'itemsPerPage' => 'tx_paginatedprocessors_itemsperpage', 'itemsPerPage.' => array('field' => 'tx_paginatedprocessors_itemsperpage'), 'pageLinksShown' => '5', 'pageLinksShown.' => array('override.' => array('field' => 'tx_paginatedprocessors_pagelinksshown')), 'anchorActive.' => array('field' => 'tx_paginatedprocessors_anchor'), 'anchorId.' => array('field' => 'uid', 'override.' => array('field' => 'tx_paginatedprocessors_anchorid'))))), 'settings.' => array('coverimagewidth' => '1280', 'colspacewidth' => '1.5'), 'variables.' => array('hl' => 'TEXT', 'hl.' => array('data' => 'siteLanguage:iso-639-1'), 'ratioDefault' => 'TEXT', 'ratioDefault.' => array('value' => '56.25'), 'ratio1' => 'TEXT', 'ratio1.' => array('value' => '75'), 'modestbranding' => 'TEXT', 'modestbranding.' => array('value' => '0'), 'nocookiehost' => 'TEXT', 'nocookiehost.' => array('value' => '0'), 'coverimagewidth' => 'TEXT', 'coverimagewidth.' => array('value' => '1280'), 'containerBreakpointSmall' => 'TEXT', 'containerBreakpointSmall.' => array('value' => '500'), 'containerBreakpointTiny' => 'TEXT', 'containerBreakpointTiny.' => array('value' => '300'), 'gdprnote' => 'TEXT', 'gdprnote.' => array('value' => '1'), 'gdprtextoverride' => 'TEXT', 'gdprtextoverride.' => array('value' => ''), 'colspacewidth' => 'TEXT', 'colspacewidth.' => array('value' => '1.5'), 'iframe' => 'TEXT', 'iframe.' => array('value' => '0'))), 'fluidcontent_content.' => array()))
in /html/typo3/typo3_src-10.4.37/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')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '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('googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'kesstech_dealersearch' => 'USER', 'kesstech_dealersearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealersearch'), 'kesstech_dealerdetail' => 'USER', 'kesstech_dealerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealerdetail'), 'kesstech_news' => 'USER', 'kesstech_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'news'), 'kesstech_productconfigurator' => 'USER', 'kesstech_productconfigurator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Productconfigurator'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages', 'conf.' => 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')))), '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')))), '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('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')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'kesstech_divider' => '< lib.contentElement', 'kesstech_divider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Divider')), 'kesstech_eventsgallery' => '< lib.contentElement', 'kesstech_eventsgallery.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Eventsgallery')), 'kesstech_gallery' => '< lib.contentElement', 'kesstech_gallery.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Gallery')), 'kesstech_heroimage' => '< lib.contentElement', 'kesstech_heroimage.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Heroimage')), 'kesstech_heroimageslider' => '< lib.contentElement', 'kesstech_heroimageslider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Heroimageslider')), 'kesstech_herovideo' => '< lib.contentElement', 'kesstech_herovideo.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Herovideo')), 'kesstech_image' => '< lib.contentElement', 'kesstech_image.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Image')), 'kesstech_joboffers' => '< lib.contentElement', 'kesstech_joboffers.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Joboffers')), 'kesstech_layer' => '< lib.contentElement', 'kesstech_layer.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Layer')), 'kesstech_layercontent' => '< lib.contentElement', 'kesstech_layercontent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Layercontent')), 'kesstech_linkwithimage' => '< lib.contentElement', 'kesstech_linkwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Linkwithimage')), 'kesstech_listevents' => '< lib.contentElement', 'kesstech_listevents.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Listevents')), 'kesstech_listlinked' => '< lib.contentElement', 'kesstech_listlinked.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Listlinked')), 'kesstech_navigation' => '< lib.contentElement', 'kesstech_navigation.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Navigation')), 'kesstech_newsoverview' => '< lib.contentElement', 'kesstech_newsoverview.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Newsoverview')), 'kesstech_text' => '< lib.contentElement', 'kesstech_text.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Text')), 'kesstech_textwithimage' => '< lib.contentElement', 'kesstech_textwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Textwithimage')), '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')))), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol1} {field:flexform_smCol1} {field:flexform_mdCol1} {field:flexform_lgCol1} {field:flexform_xlCol1} {field:flexform_col21class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol2} {field:flexform_smCol2} {field:flexform_mdCol2} {field:flexform_lgCol2} {field:flexform_xlCol2} {field:flexform_col22class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*)))))), 'wrap' => '<div class="row {field:flexform_rowValign} {field:flexform_rowHalign} {field:flexform_rowCustom}">|</div>', 'wrap.' => array('insertData' => '1')), '3cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol1} {field:flexform_smCol1} {field:flexform_mdCol1} {field:flexform_lgCol1} {field:flexform_xlCol1} {field:flexform_col31class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol2} {field:flexform_smCol2} {field:flexform_mdCol2} {field:flexform_lgCol2} {field:flexform_xlCol2} {field:flexform_col32class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol3} {field:flexform_smCol3} {field:flexform_mdCol3} {field:flexform_lgCol3} {field:flexform_xlCol3} {field:flexform_col33class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*)))))), 'wrap' => '<div class="row {field:flexform_rowValign} {field:flexform_rowHalign} {field:flexform_rowCustom}">|</div>', 'wrap.' => array('insertData' => '1')), '4cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol1} {field:flexform_smCol1} {field:flexform_mdCol1} {field:flexform_lgCol1} {field:flexform_xlCol1} {field:flexform_col41class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol2} {field:flexform_smCol2} {field:flexform_mdCol2} {field:flexform_lgCol2} {field:flexform_xlCol2} {field:flexform_col42class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol3} {field:flexform_smCol3} {field:flexform_mdCol3} {field:flexform_lgCol3} {field:flexform_xlCol3} {field:flexform_col43class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '104.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol4} {field:flexform_smCol4} {field:flexform_mdCol4} {field:flexform_lgCol4} {field:flexform_xlCol4} {field:flexform_col44class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*)))))), 'wrap' => '<div class="row {field:flexform_rowValign} {field:flexform_rowHalign} {field:flexform_rowCustom}">|</div>', 'wrap.' => array('insertData' => '1')), 'tabsSimple.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('LOAD_REGISTER', '5.' => array('TabCount2.' => array('cObject' => 'TEXT', 'cObject.' => array(*DEEP NESTED ARRAY*), 'prioriCalc' => 'intval')), 'stdWrap.' => array('insertData' => '1', 'outerWrap.' => array('cObject' => 'CASE', 'cObject.' => array(*DEEP NESTED ARRAY*))), 'CASE', '20.' => 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(*DEEP NESTED ARRAY*)), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array(*DEEP NESTED ARRAY*)), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array(*DEEP NESTED ARRAY*)), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array(*DEEP NESTED ARRAY*), '20.' => array(*DEEP NESTED ARRAY*)), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_divider' => '< lib.contentElement', 'kesstech_divider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_eventsgallery' => '< lib.contentElement', 'kesstech_eventsgallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_gallery' => '< lib.contentElement', 'kesstech_gallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimage' => '< lib.contentElement', 'kesstech_heroimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimageslider' => '< lib.contentElement', 'kesstech_heroimageslider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_herovideo' => '< lib.contentElement', 'kesstech_herovideo.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_image' => '< lib.contentElement', 'kesstech_image.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_joboffers' => '< lib.contentElement', 'kesstech_joboffers.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layer' => '< lib.contentElement', 'kesstech_layer.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layercontent' => '< lib.contentElement', 'kesstech_layercontent.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_linkwithimage' => '< lib.contentElement', 'kesstech_linkwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listevents' => '< lib.contentElement', 'kesstech_listevents.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listlinked' => '< lib.contentElement', 'kesstech_listlinked.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_navigation' => '< lib.contentElement', 'kesstech_navigation.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_newsoverview' => '< lib.contentElement', 'kesstech_newsoverview.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_text' => '< lib.contentElement', 'kesstech_text.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_textwithimage' => '< lib.contentElement', 'kesstech_textwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*)), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*)), 'youtubevideo_pi1' => '< lib.contentElement', 'youtubevideo_pi1.' => array('templateName' => 'TEXT', 'templateName.' => array(*DEEP NESTED ARRAY*), 'templateRootPaths.' => array(*DEEP NESTED ARRAY*), 'partialRootPaths.' => array(*DEEP NESTED ARRAY*), 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'settings.' => array(*DEEP NESTED ARRAY*), 'variables.' => array(*DEEP NESTED ARRAY*)), 'multimedia.' => array(), 'media.' => array(), 'mailform.' => array(), 'menu.' => array(), 'videoce_videocontent.' => array())), 'wrap' => '<div class="tab-content">|</div>')), 'outerWrap' => '<div class="simple-tabs {field:flexform_style}">|</div>', 'outerWrap.' => array('insertData' => '1'), 'prepend' => 'CONTENT', 'prepend.' => array('table' => 'tt_content', 'select.' => array('selectFields' => 'header, uid, tx_gridelements_container, sorting', 'where' => 'tx_gridelements_container={field:uid}', 'where.' => array('insertData' => '1'), 'orderBy' => 'sorting'), 'wrap' => '<div class="nav nav-tabs" role="tablist">|</div>', 'renderObj' => 'COA', 'renderObj.' => array('LOAD_REGISTER', '5.' => array('TabCount.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:TabCount', 'wrap' => '|+1'), 'prioriCalc' => 'intval')), 'TEXT', '10.' => array('field' => 'header', 'insertData' => '1', 'wrap' => '|', 'outerWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array(*DEEP NESTED ARRAY*), 'default' => 'TEXT', 'default.' => array(*DEEP NESTED ARRAY*), 'TEXT', '1.' => array(*DEEP NESTED ARRAY*)))))), 'append' => 'COA', 'append.' => array('LOAD_REGISTER', '5.' => array('TabCount.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:TabCount', 'wrap' => '|*0'), 'prioriCalc' => 'intval')), 'LOAD_REGISTER', '10.' => array('TabCount2.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:TabCount2', 'wrap' => '|*0'), 'prioriCalc' => 'intval')))), 'tabs4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade show active" id="nav-c{field:uid}-c1" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab1">|</div>', 'wrap.' => array('insertData' => '1')), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c2" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab2">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c3" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab3">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), '104.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c4" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab4">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4')))), 'outerWrap' => '<div class="{field:flexform_style}">|</div>', 'outerWrap.' => array('insertData' => '1'), 'prepend' => 'COA', 'prepend.' => array('wrap' => '<ul class="nav nav-tabs" role="tablist">|</ul>', 'TEXT', '10.' => array('value' => '<li class="nav-item"><a class="nav-link active" id="nav-c{field:uid}-tab1" data-toggle="tab" href="#nav-c{field:uid}-c1" role="tab" aria-controls="nav-c{field:uid}-c1" aria-selected="true">{field:flexform_tabTitle1}</a></li>', 'insertData' => '1'), 'TEXT', '20.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab2" data-toggle="tab" href="#nav-c{field:uid}-c2" role="tab" aria-controls="nav-c{field:uid}-c2">{field:flexform_tabTitle2}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), 'TEXT', '30.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab3" data-toggle="tab" href="#nav-c{field:uid}-c3" role="tab" aria-controls="nav-c{field:uid}-c3">{field:flexform_tabTitle3}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), 'TEXT', '40.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab4" data-toggle="tab" href="#nav-c{field:uid}-c4" role="tab" aria-controls="nav-c{field:uid}-c4">{field:flexform_tabTitle4}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4')))), 'wrap' => '<div class="tab-content">|</div>'), 'tabs6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade show active" id="nav-c{field:uid}-c1" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab1">|</div>', 'wrap.' => array('insertData' => '1')), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c2" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab2">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c3" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab3">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), '104.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c4" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab4">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4'))), '105.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c5" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab5">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle5'))), '106.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c6" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab6">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle6')))), 'outerWrap' => '<div class="{field:flexform_style}">|</div>', 'outerWrap.' => array('insertData' => '1'), 'prepend' => 'COA', 'prepend.' => array('wrap' => '<ul class="nav nav-tabs" role="tablist">|</ul>', 'TEXT', '10.' => array('value' => '<li class="nav-item"><a class="nav-link active" id="nav-c{field:uid}-tab1" data-toggle="tab" href="#nav-c{field:uid}-c1" role="tab" aria-controls="nav-c{field:uid}-c1" aria-selected="true">{field:flexform_tabTitle1}</a></li>', 'insertData' => '1'), 'TEXT', '20.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab2" data-toggle="tab" href="#nav-c{field:uid}-c2" role="tab" aria-controls="nav-c{field:uid}-c2">{field:flexform_tabTitle2}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), 'TEXT', '30.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab3" data-toggle="tab" href="#nav-c{field:uid}-c3" role="tab" aria-controls="nav-c{field:uid}-c3">{field:flexform_tabTitle3}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), 'TEXT', '40.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab4" data-toggle="tab" href="#nav-c{field:uid}-c4" role="tab" aria-controls="nav-c{field:uid}-c4">{field:flexform_tabTitle4}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4'))), 'TEXT', '50.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab5" data-toggle="tab" href="#nav-c{field:uid}-c5" role="tab" aria-controls="nav-c{field:uid}-c5">{field:flexform_tabTitle5}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle5'))), 'TEXT', '60.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab6" data-toggle="tab" href="#nav-c{field:uid}-c6" role="tab" aria-controls="nav-c{field:uid}-c6">{field:flexform_tabTitle6}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle6')))), 'wrap' => '<div class="tab-content">|</div>'), 'xSimpleRow.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '111.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '|')), 'wrap' => '<div class="row">|</div>'), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('LOAD_REGISTER', '5.' => array('AccordionCount.' => array('cObject' => 'TEXT', 'cObject.' => array(*DEEP NESTED ARRAY*), 'prioriCalc' => 'intval')), 'TEXT', '10.' => array('field' => 'header', 'insertData' => '1', 'wrap' => '<div class="card"><div class="card-header" id="heading-c{field:uid}"><h5 class="mb-0"><div class="btn btn-link collapsed" data-toggle="collapse" data-parent="#accordion-{field:tx_gridelements_container}" data-target="#collapse-{field:uid}" aria-expanded="false" aria-controls="collapse-{field:uid}">|</div></h5></div><div id="collapse-{field:uid}" class="collapse" aria-labelledby="heading-c{field:uid}" data-parent="#accordion-{field:tx_gridelements_container}"><div class="card-body">'), 'CASE', '20.' => 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(*DEEP NESTED ARRAY*)), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array(*DEEP NESTED ARRAY*)), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array(*DEEP NESTED ARRAY*)), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array(*DEEP NESTED ARRAY*), '20.' => array(*DEEP NESTED ARRAY*)), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_divider' => '< lib.contentElement', 'kesstech_divider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_eventsgallery' => '< lib.contentElement', 'kesstech_eventsgallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_gallery' => '< lib.contentElement', 'kesstech_gallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimage' => '< lib.contentElement', 'kesstech_heroimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimageslider' => '< lib.contentElement', 'kesstech_heroimageslider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_herovideo' => '< lib.contentElement', 'kesstech_herovideo.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_image' => '< lib.contentElement', 'kesstech_image.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_joboffers' => '< lib.contentElement', 'kesstech_joboffers.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layer' => '< lib.contentElement', 'kesstech_layer.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layercontent' => '< lib.contentElement', 'kesstech_layercontent.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_linkwithimage' => '< lib.contentElement', 'kesstech_linkwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listevents' => '< lib.contentElement', 'kesstech_listevents.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listlinked' => '< lib.contentElement', 'kesstech_listlinked.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_navigation' => '< lib.contentElement', 'kesstech_navigation.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_newsoverview' => '< lib.contentElement', 'kesstech_newsoverview.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_text' => '< lib.contentElement', 'kesstech_text.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_textwithimage' => '< lib.contentElement', 'kesstech_textwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*)), 'youtubevideo_pi1' => '< lib.contentElement', 'youtubevideo_pi1.' => array('templateName' => 'TEXT', 'templateName.' => array(*DEEP NESTED ARRAY*), 'templateRootPaths.' => array(*DEEP NESTED ARRAY*), 'partialRootPaths.' => array(*DEEP NESTED ARRAY*), 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'settings.' => array(*DEEP NESTED ARRAY*), 'variables.' => array(*DEEP NESTED ARRAY*)), 'fluidcontent_content.' => array(), 'multimedia.' => array(), 'media.' => array(), 'mailform.' => array(), 'menu.' => array(), 'videoce_videocontent.' => array()), 'TEXT', '30.' => array('wrap' => '|</div></div></div>')))), 'outerWrap.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'flexform_rowclass'), 'default' => 'TEXT', 'default.' => array('value' => '<div id="accordion-{field:_LOCALIZED_UID//field:uid}" class="wprovider-accordion">|</div>'))), 'insertData' => '1'), 'append' => 'COA', 'append.' => array('LOAD_REGISTER', '5.' => array('AccordionCount.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:AccordionCount', 'wrap' => '|*0'), 'prioriCalc' => 'intval'))))))), 'stdWrap.' => array('wrap' => '<div id="c{field:uid}" class="grid-container ge-container frame frame-{field:frame_class} frame-layout-{field:layout} frame-type-{field:CType}"><div class="container">|</div></div>', 'wrap.' => array('insertData' => '1'))), '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')))))))), 'youtubevideo_pi1' => '< lib.contentElement', 'youtubevideo_pi1.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'YoutubevideoIframe', 'if.' => array('isTrue' => '0')), 'ifEmpty' => 'Youtubevideo')), 'templateRootPaths.' => array('EXT:youtubevideo/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:youtubevideo/Resources/Private/Partials/'), 'dataProcessing.' => array('Brightside\\Youtubevideo\\DataProcessing\\YoutubevideoFilesProcessor', '10.' => array('pagination.' => array('isActive.' => array('field' => 'tx_paginatedprocessors_paginationenabled'), 'uniqueId.' => array('field' => 'uid', 'override.' => array('field' => 'tx_paginatedprocessors_urlsegment')), 'itemsPerPage' => 'tx_paginatedprocessors_itemsperpage', 'itemsPerPage.' => array('field' => 'tx_paginatedprocessors_itemsperpage'), 'pageLinksShown' => '5', 'pageLinksShown.' => array('override.' => array('field' => 'tx_paginatedprocessors_pagelinksshown')), 'anchorActive.' => array('field' => 'tx_paginatedprocessors_anchor'), 'anchorId.' => array('field' => 'uid', 'override.' => array('field' => 'tx_paginatedprocessors_anchorid'))))), 'settings.' => array('coverimagewidth' => '1280', 'colspacewidth' => '1.5'), 'variables.' => array('hl' => 'TEXT', 'hl.' => array('data' => 'siteLanguage:iso-639-1'), 'ratioDefault' => 'TEXT', 'ratioDefault.' => array('value' => '56.25'), 'ratio1' => 'TEXT', 'ratio1.' => array('value' => '75'), 'modestbranding' => 'TEXT', 'modestbranding.' => array('value' => '0'), 'nocookiehost' => 'TEXT', 'nocookiehost.' => array('value' => '0'), 'coverimagewidth' => 'TEXT', 'coverimagewidth.' => array('value' => '1280'), 'containerBreakpointSmall' => 'TEXT', 'containerBreakpointSmall.' => array('value' => '500'), 'containerBreakpointTiny' => 'TEXT', 'containerBreakpointTiny.' => array('value' => '300'), 'gdprnote' => 'TEXT', 'gdprnote.' => array('value' => '1'), 'gdprtextoverride' => 'TEXT', 'gdprtextoverride.' => array('value' => ''), 'colspacewidth' => 'TEXT', 'colspacewidth.' => array('value' => '1.5'), 'iframe' => 'TEXT', 'iframe.' => array('value' => '0'))), 'fluidcontent_content.' => array()), 'tt_content')
in /html/typo3/typo3_src-10.4.37/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')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '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('googleanalyticsandadwords_googleservices' => 'USER', 'googleanalyticsandadwords_googleservices.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'GoogleAnalyticsAndAdwords', 'pluginName' => 'GoogleServices'), 'kesstech_dealersearch' => 'USER', 'kesstech_dealersearch.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealersearch'), 'kesstech_dealerdetail' => 'USER', 'kesstech_dealerdetail.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Dealerdetail'), 'kesstech_news' => 'USER', 'kesstech_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'news'), 'kesstech_productconfigurator' => 'USER', 'kesstech_productconfigurator.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Productconfigurator'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages', 'conf.' => 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')))), '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')))), '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('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')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'kesstech_divider' => '< lib.contentElement', 'kesstech_divider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Divider')), 'kesstech_eventsgallery' => '< lib.contentElement', 'kesstech_eventsgallery.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Eventsgallery')), 'kesstech_gallery' => '< lib.contentElement', 'kesstech_gallery.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Gallery')), 'kesstech_heroimage' => '< lib.contentElement', 'kesstech_heroimage.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Heroimage')), 'kesstech_heroimageslider' => '< lib.contentElement', 'kesstech_heroimageslider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Heroimageslider')), 'kesstech_herovideo' => '< lib.contentElement', 'kesstech_herovideo.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Herovideo')), 'kesstech_image' => '< lib.contentElement', 'kesstech_image.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Image')), 'kesstech_joboffers' => '< lib.contentElement', 'kesstech_joboffers.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Joboffers')), 'kesstech_layer' => '< lib.contentElement', 'kesstech_layer.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Layer')), 'kesstech_layercontent' => '< lib.contentElement', 'kesstech_layercontent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Layercontent')), 'kesstech_linkwithimage' => '< lib.contentElement', 'kesstech_linkwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Linkwithimage')), 'kesstech_listevents' => '< lib.contentElement', 'kesstech_listevents.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Listevents')), 'kesstech_listlinked' => '< lib.contentElement', 'kesstech_listlinked.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Listlinked')), 'kesstech_navigation' => '< lib.contentElement', 'kesstech_navigation.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Navigation')), 'kesstech_newsoverview' => '< lib.contentElement', 'kesstech_newsoverview.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Newsoverview')), 'kesstech_text' => '< lib.contentElement', 'kesstech_text.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Text')), 'kesstech_textwithimage' => '< lib.contentElement', 'kesstech_textwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Kesstech', 'pluginName' => 'Textwithimage')), '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')))), '2cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol1} {field:flexform_smCol1} {field:flexform_mdCol1} {field:flexform_lgCol1} {field:flexform_xlCol1} {field:flexform_col21class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol2} {field:flexform_smCol2} {field:flexform_mdCol2} {field:flexform_lgCol2} {field:flexform_xlCol2} {field:flexform_col22class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*)))))), 'wrap' => '<div class="row {field:flexform_rowValign} {field:flexform_rowHalign} {field:flexform_rowCustom}">|</div>', 'wrap.' => array('insertData' => '1')), '3cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol1} {field:flexform_smCol1} {field:flexform_mdCol1} {field:flexform_lgCol1} {field:flexform_xlCol1} {field:flexform_col31class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol2} {field:flexform_smCol2} {field:flexform_mdCol2} {field:flexform_lgCol2} {field:flexform_xlCol2} {field:flexform_col32class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol3} {field:flexform_smCol3} {field:flexform_mdCol3} {field:flexform_lgCol3} {field:flexform_xlCol3} {field:flexform_col33class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*)))))), 'wrap' => '<div class="row {field:flexform_rowValign} {field:flexform_rowHalign} {field:flexform_rowCustom}">|</div>', 'wrap.' => array('insertData' => '1')), '4cols.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol1} {field:flexform_smCol1} {field:flexform_mdCol1} {field:flexform_lgCol1} {field:flexform_xlCol1} {field:flexform_col41class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol2} {field:flexform_smCol2} {field:flexform_mdCol2} {field:flexform_lgCol2} {field:flexform_xlCol2} {field:flexform_col42class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol3} {field:flexform_smCol3} {field:flexform_mdCol3} {field:flexform_lgCol3} {field:flexform_xlCol3} {field:flexform_col43class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*))))), '104.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'dataWrap' => '<div class="{field:flexform_xsCol4} {field:flexform_smCol4} {field:flexform_mdCol4} {field:flexform_lgCol4} {field:flexform_xlCol4} {field:flexform_col44class}">|</div>', 'dataWrap.' => array('override' => '<div class="col">|</div>', 'override.' => array('if.' => array('isNull.' => array(*DEEP NESTED ARRAY*)))))), 'wrap' => '<div class="row {field:flexform_rowValign} {field:flexform_rowHalign} {field:flexform_rowCustom}">|</div>', 'wrap.' => array('insertData' => '1')), 'tabsSimple.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('LOAD_REGISTER', '5.' => array('TabCount2.' => array('cObject' => 'TEXT', 'cObject.' => array(*DEEP NESTED ARRAY*), 'prioriCalc' => 'intval')), 'stdWrap.' => array('insertData' => '1', 'outerWrap.' => array('cObject' => 'CASE', 'cObject.' => array(*DEEP NESTED ARRAY*))), 'CASE', '20.' => 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(*DEEP NESTED ARRAY*)), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array(*DEEP NESTED ARRAY*)), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array(*DEEP NESTED ARRAY*)), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array(*DEEP NESTED ARRAY*), '20.' => array(*DEEP NESTED ARRAY*)), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_divider' => '< lib.contentElement', 'kesstech_divider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_eventsgallery' => '< lib.contentElement', 'kesstech_eventsgallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_gallery' => '< lib.contentElement', 'kesstech_gallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimage' => '< lib.contentElement', 'kesstech_heroimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimageslider' => '< lib.contentElement', 'kesstech_heroimageslider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_herovideo' => '< lib.contentElement', 'kesstech_herovideo.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_image' => '< lib.contentElement', 'kesstech_image.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_joboffers' => '< lib.contentElement', 'kesstech_joboffers.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layer' => '< lib.contentElement', 'kesstech_layer.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layercontent' => '< lib.contentElement', 'kesstech_layercontent.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_linkwithimage' => '< lib.contentElement', 'kesstech_linkwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listevents' => '< lib.contentElement', 'kesstech_listevents.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listlinked' => '< lib.contentElement', 'kesstech_listlinked.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_navigation' => '< lib.contentElement', 'kesstech_navigation.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_newsoverview' => '< lib.contentElement', 'kesstech_newsoverview.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_text' => '< lib.contentElement', 'kesstech_text.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_textwithimage' => '< lib.contentElement', 'kesstech_textwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*)), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*)), 'youtubevideo_pi1' => '< lib.contentElement', 'youtubevideo_pi1.' => array('templateName' => 'TEXT', 'templateName.' => array(*DEEP NESTED ARRAY*), 'templateRootPaths.' => array(*DEEP NESTED ARRAY*), 'partialRootPaths.' => array(*DEEP NESTED ARRAY*), 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'settings.' => array(*DEEP NESTED ARRAY*), 'variables.' => array(*DEEP NESTED ARRAY*)), 'multimedia.' => array(), 'media.' => array(), 'mailform.' => array(), 'menu.' => array(), 'videoce_videocontent.' => array())), 'wrap' => '<div class="tab-content">|</div>')), 'outerWrap' => '<div class="simple-tabs {field:flexform_style}">|</div>', 'outerWrap.' => array('insertData' => '1'), 'prepend' => 'CONTENT', 'prepend.' => array('table' => 'tt_content', 'select.' => array('selectFields' => 'header, uid, tx_gridelements_container, sorting', 'where' => 'tx_gridelements_container={field:uid}', 'where.' => array('insertData' => '1'), 'orderBy' => 'sorting'), 'wrap' => '<div class="nav nav-tabs" role="tablist">|</div>', 'renderObj' => 'COA', 'renderObj.' => array('LOAD_REGISTER', '5.' => array('TabCount.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:TabCount', 'wrap' => '|+1'), 'prioriCalc' => 'intval')), 'TEXT', '10.' => array('field' => 'header', 'insertData' => '1', 'wrap' => '|', 'outerWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array(*DEEP NESTED ARRAY*), 'default' => 'TEXT', 'default.' => array(*DEEP NESTED ARRAY*), 'TEXT', '1.' => array(*DEEP NESTED ARRAY*)))))), 'append' => 'COA', 'append.' => array('LOAD_REGISTER', '5.' => array('TabCount.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:TabCount', 'wrap' => '|*0'), 'prioriCalc' => 'intval')), 'LOAD_REGISTER', '10.' => array('TabCount2.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:TabCount2', 'wrap' => '|*0'), 'prioriCalc' => 'intval')))), 'tabs4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade show active" id="nav-c{field:uid}-c1" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab1">|</div>', 'wrap.' => array('insertData' => '1')), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c2" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab2">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c3" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab3">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), '104.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c4" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab4">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4')))), 'outerWrap' => '<div class="{field:flexform_style}">|</div>', 'outerWrap.' => array('insertData' => '1'), 'prepend' => 'COA', 'prepend.' => array('wrap' => '<ul class="nav nav-tabs" role="tablist">|</ul>', 'TEXT', '10.' => array('value' => '<li class="nav-item"><a class="nav-link active" id="nav-c{field:uid}-tab1" data-toggle="tab" href="#nav-c{field:uid}-c1" role="tab" aria-controls="nav-c{field:uid}-c1" aria-selected="true">{field:flexform_tabTitle1}</a></li>', 'insertData' => '1'), 'TEXT', '20.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab2" data-toggle="tab" href="#nav-c{field:uid}-c2" role="tab" aria-controls="nav-c{field:uid}-c2">{field:flexform_tabTitle2}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), 'TEXT', '30.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab3" data-toggle="tab" href="#nav-c{field:uid}-c3" role="tab" aria-controls="nav-c{field:uid}-c3">{field:flexform_tabTitle3}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), 'TEXT', '40.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab4" data-toggle="tab" href="#nav-c{field:uid}-c4" role="tab" aria-controls="nav-c{field:uid}-c4">{field:flexform_tabTitle4}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4')))), 'wrap' => '<div class="tab-content">|</div>'), 'tabs6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade show active" id="nav-c{field:uid}-c1" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab1">|</div>', 'wrap.' => array('insertData' => '1')), '102.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c2" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab2">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), '103.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c3" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab3">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), '104.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c4" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab4">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4'))), '105.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c5" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab5">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle5'))), '106.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="tab-pane fade" id="nav-c{field:uid}-c6" role="tabpanel" aria-labelledby="nav-c{field:uid}-tab6">|</div>', 'wrap.' => array('insertData' => '1'), 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle6')))), 'outerWrap' => '<div class="{field:flexform_style}">|</div>', 'outerWrap.' => array('insertData' => '1'), 'prepend' => 'COA', 'prepend.' => array('wrap' => '<ul class="nav nav-tabs" role="tablist">|</ul>', 'TEXT', '10.' => array('value' => '<li class="nav-item"><a class="nav-link active" id="nav-c{field:uid}-tab1" data-toggle="tab" href="#nav-c{field:uid}-c1" role="tab" aria-controls="nav-c{field:uid}-c1" aria-selected="true">{field:flexform_tabTitle1}</a></li>', 'insertData' => '1'), 'TEXT', '20.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab2" data-toggle="tab" href="#nav-c{field:uid}-c2" role="tab" aria-controls="nav-c{field:uid}-c2">{field:flexform_tabTitle2}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle2'))), 'TEXT', '30.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab3" data-toggle="tab" href="#nav-c{field:uid}-c3" role="tab" aria-controls="nav-c{field:uid}-c3">{field:flexform_tabTitle3}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle3'))), 'TEXT', '40.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab4" data-toggle="tab" href="#nav-c{field:uid}-c4" role="tab" aria-controls="nav-c{field:uid}-c4">{field:flexform_tabTitle4}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle4'))), 'TEXT', '50.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab5" data-toggle="tab" href="#nav-c{field:uid}-c5" role="tab" aria-controls="nav-c{field:uid}-c5">{field:flexform_tabTitle5}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle5'))), 'TEXT', '60.' => array('value' => '<li class="nav-item"><a class="nav-link" id="nav-c{field:uid}-tab6" data-toggle="tab" href="#nav-c{field:uid}-c6" role="tab" aria-controls="nav-c{field:uid}-c6">{field:flexform_tabTitle6}</a></li>', 'insertData' => '1', 'if.' => array('isTrue.' => array('field' => 'flexform_tabTitle6')))), 'wrap' => '<div class="tab-content">|</div>'), 'xSimpleRow.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '111.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '|')), 'wrap' => '<div class="row">|</div>'), 'accordion.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '101.' => array('renderObj' => 'COA', 'renderObj.' => array('LOAD_REGISTER', '5.' => array('AccordionCount.' => array('cObject' => 'TEXT', 'cObject.' => array(*DEEP NESTED ARRAY*), 'prioriCalc' => 'intval')), 'TEXT', '10.' => array('field' => 'header', 'insertData' => '1', 'wrap' => '<div class="card"><div class="card-header" id="heading-c{field:uid}"><h5 class="mb-0"><div class="btn btn-link collapsed" data-toggle="collapse" data-parent="#accordion-{field:tx_gridelements_container}" data-target="#collapse-{field:uid}" aria-expanded="false" aria-controls="collapse-{field:uid}">|</div></h5></div><div id="collapse-{field:uid}" class="collapse" aria-labelledby="heading-c{field:uid}" data-parent="#accordion-{field:tx_gridelements_container}"><div class="card-body">'), 'CASE', '20.' => 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(*DEEP NESTED ARRAY*)), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array(*DEEP NESTED ARRAY*)), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array(*DEEP NESTED ARRAY*)), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array(*DEEP NESTED ARRAY*), '20.' => array(*DEEP NESTED ARRAY*)), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_divider' => '< lib.contentElement', 'kesstech_divider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_eventsgallery' => '< lib.contentElement', 'kesstech_eventsgallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_gallery' => '< lib.contentElement', 'kesstech_gallery.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimage' => '< lib.contentElement', 'kesstech_heroimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_heroimageslider' => '< lib.contentElement', 'kesstech_heroimageslider.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_herovideo' => '< lib.contentElement', 'kesstech_herovideo.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_image' => '< lib.contentElement', 'kesstech_image.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_joboffers' => '< lib.contentElement', 'kesstech_joboffers.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layer' => '< lib.contentElement', 'kesstech_layer.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_layercontent' => '< lib.contentElement', 'kesstech_layercontent.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_linkwithimage' => '< lib.contentElement', 'kesstech_linkwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listevents' => '< lib.contentElement', 'kesstech_listevents.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_listlinked' => '< lib.contentElement', 'kesstech_listlinked.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_navigation' => '< lib.contentElement', 'kesstech_navigation.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_newsoverview' => '< lib.contentElement', 'kesstech_newsoverview.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_text' => '< lib.contentElement', 'kesstech_text.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'kesstech_textwithimage' => '< lib.contentElement', 'kesstech_textwithimage.' => array('templateName' => 'Generic', 'USER', '20.' => array(*DEEP NESTED ARRAY*)), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*), 'stdWrap.' => array(*DEEP NESTED ARRAY*)), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array(*DEEP NESTED ARRAY*)), 'youtubevideo_pi1' => '< lib.contentElement', 'youtubevideo_pi1.' => array('templateName' => 'TEXT', 'templateName.' => array(*DEEP NESTED ARRAY*), 'templateRootPaths.' => array(*DEEP NESTED ARRAY*), 'partialRootPaths.' => array(*DEEP NESTED ARRAY*), 'dataProcessing.' => array(*DEEP NESTED ARRAY*), 'settings.' => array(*DEEP NESTED ARRAY*), 'variables.' => array(*DEEP NESTED ARRAY*)), 'fluidcontent_content.' => array(), 'multimedia.' => array(), 'media.' => array(), 'mailform.' => array(), 'menu.' => array(), 'videoce_videocontent.' => array()), 'TEXT', '30.' => array('wrap' => '|</div></div></div>')))), 'outerWrap.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'flexform_rowclass'), 'default' => 'TEXT', 'default.' => array('value' => '<div id="accordion-{field:_LOCALIZED_UID//field:uid}" class="wprovider-accordion">|</div>'))), 'insertData' => '1'), 'append' => 'COA', 'append.' => array('LOAD_REGISTER', '5.' => array('AccordionCount.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'register:AccordionCount', 'wrap' => '|*0'), 'prioriCalc' => 'intval'))))))), 'stdWrap.' => array('wrap' => '<div id="c{field:uid}" class="grid-container ge-container frame frame-{field:frame_class} frame-layout-{field:layout} frame-type-{field:CType}"><div class="container">|</div></div>', 'wrap.' => array('insertData' => '1'))), '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')))))))), 'youtubevideo_pi1' => '< lib.contentElement', 'youtubevideo_pi1.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'YoutubevideoIframe', 'if.' => array('isTrue' => '0')), 'ifEmpty' => 'Youtubevideo')), 'templateRootPaths.' => array('EXT:youtubevideo/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:youtubevideo/Resources/Private/Partials/'), 'dataProcessing.' => array('Brightside\\Youtubevideo\\DataProcessing\\YoutubevideoFilesProcessor', '10.' => array('pagination.' => array('isActive.' => array('field' => 'tx_paginatedprocessors_paginationenabled'), 'uniqueId.' => array('field' => 'uid', 'override.' => array('field' => 'tx_paginatedprocessors_urlsegment')), 'itemsPerPage' => 'tx_paginatedprocessors_itemsperpage', 'itemsPerPage.' => array('field' => 'tx_paginatedprocessors_itemsperpage'), 'pageLinksShown' => '5', 'pageLinksShown.' => array('override.' => array('field' => 'tx_paginatedprocessors_pagelinksshown')), 'anchorActive.' => array('field' => 'tx_paginatedprocessors_anchor'), 'anchorId.' => array('field' => 'uid', 'override.' => array('field' => 'tx_paginatedprocessors_anchorid'))))), 'settings.' => array('coverimagewidth' => '1280', 'colspacewidth' => '1.5'), 'variables.' => array('hl' => 'TEXT', 'hl.' => array('data' => 'siteLanguage:iso-639-1'), 'ratioDefault' => 'TEXT', 'ratioDefault.' => array('value' => '56.25'), 'ratio1' => 'TEXT', 'ratio1.' => array('value' => '75'), 'modestbranding' => 'TEXT', 'modestbranding.' => array('value' => '0'), 'nocookiehost' => 'TEXT', 'nocookiehost.' => array('value' => '0'), 'coverimagewidth' => 'TEXT', 'coverimagewidth.' => array('value' => '1280'), 'containerBreakpointSmall' => 'TEXT', 'containerBreakpointSmall.' => array('value' => '500'), 'containerBreakpointTiny' => 'TEXT', 'containerBreakpointTiny.' => array('value' => '300'), 'gdprnote' => 'TEXT', 'gdprnote.' => array('value' => '1'), 'gdprtextoverride' => 'TEXT', 'gdprtextoverride.' => array('value' => ''), 'colspacewidth' => 'TEXT', 'colspacewidth.' => array('value' => '1.5'), 'iframe' => 'TEXT', 'iframe.' => array('value' => '0'))), 'fluidcontent_content.' => array()), '')
in /html/typo3/typo3_src-10.4.37/typo3/sysext/frontend/Classes/ContentObject/RecordsContentObject.php line 119
                            $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                            $GLOBALS['TSFE']->currentRecord = $val['table'] . ':' . $val['id'];
                            $this->cObj->lastChanged($row['tstamp']);
                            $cObj->start($row, $val['table']);
                            $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                            $theValue .= $tmpValue;
                        }
                    }
                }
at TYPO3\CMS\Frontend\ContentObject\RecordsContentObject->render(array('tables' => 'tt_content', 'source' => 187, 'dontCheckPid' => 1))
in /html/typo3/typo3_src-10.4.37/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\RecordsContentObject), array('tables' => 'tt_content', 'source' => 187, 'dontCheckPid' => 1))
in /html/typo3/typo3_src-10.4.37/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('RECORDS', array('tables' => 'tt_content', 'source' => 187, 'dontCheckPid' => 1))
in /html/typo3/typo3conf/ext/vhs/Classes/ViewHelpers/Content/AbstractContentViewHelper.php line 236
        // It's should not be allowed to do this again then!!
        if (false === empty($parent)) {
            ++$GLOBALS['TSFE']->recordRegister[$parent];
        }
        $html = $GLOBALS['TSFE']->cObj->cObjGetSingle('RECORDS', $conf);

        $GLOBALS['TSFE']->currentRecord = $parent;
        if (false === empty($parent)) {
            --$GLOBALS['TSFE']->recordRegister[$parent];
at FluidTYPO3\Vhs\ViewHelpers\Content\AbstractContentViewHelper::renderRecord(array('uid' => 187, 'pid' => 7, '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' => 187, 'tstamp' => 1576599705, 'crdate' => 1468850839, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 537, 'CType' => 'list', 'header' => 'Votre moto, votre style, votre son – votre échappement électronique KessTech!', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => '130', 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '0', 'list_type' => 'kesstech_productconfigurator', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 2, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes"?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.productconfigurator.text"> <value index="vDEF">&lt;p&gt;En utilisant le configurateur KessTech, vous pouvez choisir le système d’échappement et les embouts qui correspondent le mieux à votre moto.&lt;/p&gt;&lt;p&gt;Votre configuration n’est qu’à quelques clics : choisissez votre marque, la famille de votre moto, le modèle et le moteur ainsi que l’année et vous verrez votre configuration d’échappement KessTech.&lt;/p&gt;&lt;p&gt;Vous pouvez choisir une ligne complète ou seulement les silencieux. Bien évidemment avec votre finition et vos embouts favoris – enfin, le système d’échappement KessTech de votre choix est prêt!&lt;/p&gt;&lt;p&gt;Si vous ne trouvez pas votre moto ou la configuration que vous souhaitez, n’hésitez pas à nous contacter, nous serions heureux de vous aider.&lt;/p&gt;</value> <value index="_TRANSFORM_vDEF.vDEFbase">&lt;p&gt;En utilisant le configurateur KessTech, vous pouvez choisir le système d’échappement et les embouts qui correspondent le mieux à votre moto.&lt;/p&gt;&lt;p&gt;Votre configuration n’est qu’à quelques clics : choisissez votre marque, la famille de votre moto, le modèle et le moteur ainsi que l’année et vous verrez votre configuration d’échappement KessTech.&lt;/p&gt;&lt;p&gt;Vous pouvez choisir une ligne complète ou seulement les silencieux. Bien évidemment avec votre finition et vos embouts favoris – enfin, le système d’échappement KessTech de votre choix est prêt!&lt;/p&gt;&lt;p&gt;Si vous ne trouvez pas votre moto ou la configuration que vous souhaitez, n’hésitez pas à nous contacter, nous serions heureux de vous aider.&lt;/p&gt;</value> </field> <field index="settings.productconfigurator.buttontext"> <value index="vDEF">Essayez dès maintenant!</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 187, 'l18n_diffsource' => 'a:27:{s:5:"CType";s:4:"list";s:6:"colPos";s:1:"0";s:16:"sys_language_uid";s:1:"0";s:6:"header";s:80:"Your bike, your style, your sound – your personal KessTech adjustable exhaust!";s:13:"header_layout";s:1:"0";s:15:"header_position";s:0:"";s:4:"date";s:1:"0";s:11:"header_link";s:0:"";s:9:"list_type";s:28:"kesstech_productconfigurator";s:6:"layout";s:3:"130";s:13:"section_frame";s:3:"130";s:6:"hidden";s:1:"0";s:12:"sectionIndex";s:1:"1";s:9:"linkToTop";s:1:"0";s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"fe_group";s:0:"";s:10:"select_key";s:0:"";s:5:"pages";s:0:"";s:9:"recursive";s:1:"0";s:10:"categories";s:1:"0";s:25:"tx_gridelements_container";s:1:"0";s:23:"tx_gridelements_columns";s:1:"0";s:16:"tx_flux_children";s:1:"0";s:11:"l18n_parent";s:1:"0";s:14:"tx_flux_column";s:0:"";s:11:"pi_flexform";s:1902:"<?xml version="1.0" encoding="utf-8" standalone="yes"?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.productconfigurator.text"> <value index="vDEF">&lt;p&gt;By using the KessTech configurator you can choose the exhaust system and end-caps that match your bike.&lt;/p&gt;&lt;p&gt;Your configuration is just a few clicks away: choose your brand, bike family, the model and the engine size and model-year and you will see your personal KessTech exhaust configuration.&lt;/p&gt;&lt;p&gt;You can decide for a complete exhaust system or only the slip-on damper. Obviously with your favorite finish and end cap style – then the adjustable KessTech exhaust of your choice is ready!&lt;/p&gt;&lt;p&gt;If you cannot find your bike or your desired combination here, just contact us. We are happy to help you.&lt;/p&gt;</value> <value index="_TRANSFORM_vDEF.vDEFbase">&lt;p&gt;By using the KessTech configurator you can choose the exhaust system and end-caps that match your bike.&lt;/p&gt;&lt;p&gt;Your configuration is just a few clicks away: choose your brand, bike family, the model and the engine size and model-year and you will see your personal KessTech exhaust configuration.&lt;/p&gt;&lt;p&gt;You can decide for a complete exhaust system or only the slip-on damper. Obviously with your favorite finish and end cap style – then the adjustable KessTech exhaust of your choice is ready!&lt;/p&gt;&lt;p&gt;If you cannot find your bike or your desired combination here, just contact us. We are happy to help you.&lt;/p&gt;</value> </field> <field index="settings.productconfigurator.buttontext"> <value index="vDEF">Try it now!</value> </field> </language> </sheet> </data></T3FlexForms>";}', 'selected_categories' => '', 'category_field' => '', 'categories' => 0, 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'custom-130', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 187, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_flux_migrated_version' => null, 'gridelements_shortcut_page_order_by' => 0, 'tx_youtubevideo_assets' => 0, 'tx_youtubevideo_colcount' => 0, 'tx_youtubevideo_oneatatime' => 0, 'tx_youtubevideo_titles' => 0, 'tx_youtubevideo_descriptions' => 0, '_LOCALIZED_UID' => 473))
in /html/typo3/typo3conf/ext/vhs/Classes/ViewHelpers/Content/AbstractContentViewHelper.php line 203
            $this->contentObject->cObjGetSingle('LOAD_REGISTER', $this->arguments['loadRegister']);
        }
        $elements = [];
        foreach ($rows as $row) {
            array_push($elements, static::renderRecord($row));
        }
        if (false === empty($this->arguments['loadRegister'])) {
            $this->contentObject->cObjGetSingle('RESTORE_REGISTER', '');
        }
at FluidTYPO3\Vhs\ViewHelpers\Content\AbstractContentViewHelper->getRenderedRecords(array(array('uid' => 4933, 'pid' => 7, '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' => 4933, 'tstamp' => 1701412369, 'crdate' => 1678886226, 'cruser_id' => 21, 'hidden' => 0, 'sorting' => 320, 'CType' => 'kesstech_layer', 'header' => '', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => '100', 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '0', 'list_type' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 2, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="options"> <language index="lDEF"> <field index="color"> <value index="vDEF">12968f</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 4933, 'l18n_diffsource' => 'a:29:{s:6:"hidden";i:0;s:5:"CType";s:14:"kesstech_layer";s:6:"colPos";i:0;s:6:"header";s:0:"";s:13:"header_layout";s:1:"0";s:15:"header_position";s:0:"";s:4:"date";i:0;s:11:"header_link";s:0:"";s:9:"subheader";s:0:"";s:6:"layout";s:3:"100";s:11:"frame_class";s:10:"custom-100";s:18:"space_before_class";s:0:"";s:17:"space_after_class";s:0:"";s:12:"sectionIndex";i:1;s:9:"linkToTop";i:0;s:16:"sys_language_uid";i:0;s:11:"l18n_parent";i:0;s:8:"fe_group";s:0:"";s:8:"editlock";i:0;s:10:"categories";i:0;s:14:"rowDescription";s:0:"";s:25:"tx_gridelements_container";i:0;s:9:"starttime";i:0;s:7:"endtime";i:0;s:22:"tx_youtubevideo_assets";i:0;s:24:"tx_youtubevideo_colcount";i:0;s:22:"tx_youtubevideo_titles";i:0;s:28:"tx_youtubevideo_descriptions";i:0;s:11:"pi_flexform";s:335:"<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="options"> <language index="lDEF"> <field index="color"> <value index="vDEF">33CC85</value> </field> </language> </sheet> </data></T3FlexForms>";}', 'selected_categories' => '', 'category_field' => '', 'categories' => 0, 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '0', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'editlock' => 0, 'rowDescription' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'custom-100', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 4933, 'table_class' => '', 'l10n_state' => '{"tx_youtubevideo_assets":"parent","tx_youtubevideo_colcount":"parent","tx_youtubevideo_titles":"parent","tx_youtubevideo_descriptions":"parent"}', 'filelink_sorting_direction' => '', 'tx_flux_migrated_version' => null, 'gridelements_shortcut_page_order_by' => 0, 'tx_youtubevideo_assets' => 0, 'tx_youtubevideo_colcount' => 0, 'tx_youtubevideo_oneatatime' => 0, 'tx_youtubevideo_titles' => 0, 'tx_youtubevideo_descriptions' => 0, '_LOCALIZED_UID' => 4941), array('uid' => 187, 'pid' => 7, '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' => 187, 'tstamp' => 1576599705, 'crdate' => 1468850839, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 537, 'CType' => 'list', 'header' => 'Votre moto, votre style, votre son – votre échappement électronique KessTech!', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => '130', 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '0', 'list_type' => 'kesstech_productconfigurator', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 2, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes"?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.productconfigurator.text"> <value index="vDEF">&lt;p&gt;En utilisant le configurateur KessTech, vous pouvez choisir le système d’échappement et les embouts qui correspondent le mieux à votre moto.&lt;/p&gt;&lt;p&gt;Votre configuration n’est qu’à quelques clics : choisissez votre marque, la famille de votre moto, le modèle et le moteur ainsi que l’année et vous verrez votre configuration d’échappement KessTech.&lt;/p&gt;&lt;p&gt;Vous pouvez choisir une ligne complète ou seulement les silencieux. Bien évidemment avec votre finition et vos embouts favoris – enfin, le système d’échappement KessTech de votre choix est prêt!&lt;/p&gt;&lt;p&gt;Si vous ne trouvez pas votre moto ou la configuration que vous souhaitez, n’hésitez pas à nous contacter, nous serions heureux de vous aider.&lt;/p&gt;</value> <value index="_TRANSFORM_vDEF.vDEFbase">&lt;p&gt;En utilisant le configurateur KessTech, vous pouvez choisir le système d’échappement et les embouts qui correspondent le mieux à votre moto.&lt;/p&gt;&lt;p&gt;Votre configuration n’est qu’à quelques clics : choisissez votre marque, la famille de votre moto, le modèle et le moteur ainsi que l’année et vous verrez votre configuration d’échappement KessTech.&lt;/p&gt;&lt;p&gt;Vous pouvez choisir une ligne complète ou seulement les silencieux. Bien évidemment avec votre finition et vos embouts favoris – enfin, le système d’échappement KessTech de votre choix est prêt!&lt;/p&gt;&lt;p&gt;Si vous ne trouvez pas votre moto ou la configuration que vous souhaitez, n’hésitez pas à nous contacter, nous serions heureux de vous aider.&lt;/p&gt;</value> </field> <field index="settings.productconfigurator.buttontext"> <value index="vDEF">Essayez dès maintenant!</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 187, 'l18n_diffsource' => 'a:27:{s:5:"CType";s:4:"list";s:6:"colPos";s:1:"0";s:16:"sys_language_uid";s:1:"0";s:6:"header";s:80:"Your bike, your style, your sound – your personal KessTech adjustable exhaust!";s:13:"header_layout";s:1:"0";s:15:"header_position";s:0:"";s:4:"date";s:1:"0";s:11:"header_link";s:0:"";s:9:"list_type";s:28:"kesstech_productconfigurator";s:6:"layout";s:3:"130";s:13:"section_frame";s:3:"130";s:6:"hidden";s:1:"0";s:12:"sectionIndex";s:1:"1";s:9:"linkToTop";s:1:"0";s:9:"starttime";i:0;s:7:"endtime";i:0;s:8:"fe_group";s:0:"";s:10:"select_key";s:0:"";s:5:"pages";s:0:"";s:9:"recursive";s:1:"0";s:10:"categories";s:1:"0";s:25:"tx_gridelements_container";s:1:"0";s:23:"tx_gridelements_columns";s:1:"0";s:16:"tx_flux_children";s:1:"0";s:11:"l18n_parent";s:1:"0";s:14:"tx_flux_column";s:0:"";s:11:"pi_flexform";s:1902:"<?xml version="1.0" encoding="utf-8" standalone="yes"?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.productconfigurator.text"> <value index="vDEF">&lt;p&gt;By using the KessTech configurator you can choose the exhaust system and end-caps that match your bike.&lt;/p&gt;&lt;p&gt;Your configuration is just a few clicks away: choose your brand, bike family, the model and the engine size and model-year and you will see your personal KessTech exhaust configuration.&lt;/p&gt;&lt;p&gt;You can decide for a complete exhaust system or only the slip-on damper. Obviously with your favorite finish and end cap style – then the adjustable KessTech exhaust of your choice is ready!&lt;/p&gt;&lt;p&gt;If you cannot find your bike or your desired combination here, just contact us. We are happy to help you.&lt;/p&gt;</value> <value index="_TRANSFORM_vDEF.vDEFbase">&lt;p&gt;By using the KessTech configurator you can choose the exhaust system and end-caps that match your bike.&lt;/p&gt;&lt;p&gt;Your configuration is just a few clicks away: choose your brand, bike family, the model and the engine size and model-year and you will see your personal KessTech exhaust configuration.&lt;/p&gt;&lt;p&gt;You can decide for a complete exhaust system or only the slip-on damper. Obviously with your favorite finish and end cap style – then the adjustable KessTech exhaust of your choice is ready!&lt;/p&gt;&lt;p&gt;If you cannot find your bike or your desired combination here, just contact us. We are happy to help you.&lt;/p&gt;</value> </field> <field index="settings.productconfigurator.buttontext"> <value index="vDEF">Try it now!</value> </field> </language> </sheet> </data></T3FlexForms>";}', 'selected_categories' => '', 'category_field' => '', 'categories' => 0, 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'custom-130', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 187, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_flux_migrated_version' => null, 'gridelements_shortcut_page_order_by' => 0, 'tx_youtubevideo_assets' => 0, 'tx_youtubevideo_colcount' => 0, 'tx_youtubevideo_oneatatime' => 0, 'tx_youtubevideo_titles' => 0, 'tx_youtubevideo_descriptions' => 0, '_LOCALIZED_UID' => 473)))
in /html/typo3/typo3conf/ext/vhs/Classes/ViewHelpers/Content/AbstractContentViewHelper.php line 110
            $contentRecords = $this->getSlideRecords($pageUid, $limit);
        }

        if (true === (boolean) $this->arguments['render']) {
            $contentRecords = $this->getRenderedRecords($contentRecords);
        }

        return $contentRecords;
    }
at FluidTYPO3\Vhs\ViewHelpers\Content\AbstractContentViewHelper->getContentRecords()
in /html/typo3/typo3conf/ext/vhs/Classes/ViewHelpers/Content/RenderViewHelper.php line 49
        if ('BE' === TYPO3_MODE) {
            return '';
        }

        $content = $this->getContentRecords();
        if (false === $this->hasArgument('as')) {
            return implode(LF, $content);
        }

at FluidTYPO3\Vhs\ViewHelpers\Content\RenderViewHelper->render()
at call_user_func(array(object(FluidTYPO3\Vhs\ViewHelpers\Content\RenderViewHelper), 'render'))
in /html/typo3/typo3_src-10.4.37/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 264
     */
    protected function callRenderMethod()
    {
        if (method_exists($this, 'render')) {
            return call_user_func([$this, 'render']);
        }
        if ((new \ReflectionMethod($this, 'renderStatic'))->getDeclaringClass()->getName() !== AbstractViewHelper::class) {
            // Method is safe to call - will not recurse through ViewHelperInvoker via the default
            // implementation of renderStatic() on this class.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->callRenderMethod()
in /html/typo3/typo3_src-10.4.37/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 252
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /html/typo3/typo3_src-10.4.37/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 79
            }
            $viewHelper->setRenderingContext($renderingContext);
            $viewHelper->setArguments($evaluatedArguments);
            $viewHelper->handleAdditionalArguments($undeclaredArguments);
            return $viewHelper->initializeArgumentsAndRender();
        } catch (Exception $error) {
            return $renderingContext->getErrorHandler()->handleViewHelperError($error);
        }
    }
at TYPO3Fluid\Fluid\Core\ViewHelper\ViewHelperInvoker->invoke('FluidTYPO3\\Vhs\\ViewHelpers\\Content\\RenderViewHelper', array('column' => 0, 'order' => 'sorting', 'sortDirection' => 'ASC', 'pageUid' => 0, 'contentUids' => null, 'sectionIndexOnly' => false, 'loadRegister' => null, 'render' => true, 'hideUntranslated' => false, 'limit' => null, 'slide' => 0, 'slideCollect' => 0, 'slideCollectReverse' => false, 'as' => null), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext), object(Closure))
in /html/typo3/typo3_src-10.4.37/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 524
     */
    public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
    {
        $viewHelperClassName = get_called_class();
        return $renderingContext->getViewHelperInvoker()->invoke($viewHelperClassName, $arguments, $renderingContext, $renderChildrenClosure);
    }

    /**
     * Save the associated ViewHelper node in a static public class variable.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper::renderStatic(array('column' => 0, 'order' => 'sorting', 'sortDirection' => 'ASC', 'pageUid' => 0, 'contentUids' => null, 'sectionIndexOnly' => false, 'loadRegister' => null, 'render' => true, 'hideUntranslated' => false, 'limit' => null, 'slide' => 0, 'slideCollect' => 0, 'slideCollectReverse' => false, 'as' => null), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3temp/var/cache/code/fluid_template/Standard_action_index_cf2b0fbdcb4d440e627a8dc5850cd6350efdec74.php line 251
$arguments23['slideCollectReverse'] = false;
$arguments23['as'] = NULL;
$arguments23['column'] = 0;

$output19 .= FluidTYPO3\Vhs\ViewHelpers\Content\RenderViewHelper::renderStatic($arguments23, $renderChildrenClosure24, $renderingContext);

$output19 .= '
';

at Standard_action_index_cf2b0fbdcb4d440e627a8dc5850cd6350efdec74->section_4f9be057f0ea5d2ba72fd2c810e8d7b9aa98b469(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/typo3/typo3_src-10.4.37/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('Content', array(), false)
in /html/typo3/typo3_src-10.4.37/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' => 'Content', '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/typo3temp/var/cache/code/fluid_template/layout_DefaultPage_html_26780f7d1cfa3e95c2337ba3db932f2c2c0264b4.php line 499
$arguments62['contentAs'] = NULL;
$arguments62['debug'] = true;
$arguments62['section'] = 'Content';

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

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

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

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /html/typo3/typo3_src-10.4.37/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' => 'fileadmin/templates/2020/private/layout/index.html', 'layoutRootPath' => 'fileadmin/templates/2020/private/layout/Layout/', 'partialRootPath' => 'fileadmin/templates/2020/private/layout/Partials/'))
in /html/typo3/typo3_src-10.4.37/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' => 'fileadmin/templates/2020/private/layout/index.html', 'layoutRootPath' => 'fileadmin/templates/2020/private/layout/Layout/', 'partialRootPath' => 'fileadmin/templates/2020/private/layout/Partials/'))
in /html/typo3/typo3_src-10.4.37/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' => 'fileadmin/templates/2020/private/layout/index.html', 'layoutRootPath' => 'fileadmin/templates/2020/private/layout/Layout/', 'partialRootPath' => 'fileadmin/templates/2020/private/layout/Partials/'), '10')
in /html/typo3/typo3_src-10.4.37/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('powermailBasicCss' => 'EXT:powermail/Resources/Public/Css/Basic.css', 'youtubevideo' => 'EXT:youtubevideo/Resources/Public/Styles/youtubevideo.css', 'inovanet' => 'fileadmin/templates/2020/public/css/default.css', 'fastfonts' => 'fileadmin/templates/2020/public/css/4e3df69c-01b1-4dfb-8f16-769dabc7d860.css', 'fastfonts.' => array('external' => '0', 'excludeFromConcatenation' => '1', 'disableCompression' => '1'), 'lightbox' => 'fileadmin/templates/2020/public/css/lightbox.css', 'lightslider' => 'fileadmin/templates/2020/public/css/lightslider.min.css', 'tilesgallery' => 'fileadmin/templates/2020/public/css/tilesgallery.css', 'screen' => 'fileadmin/templates/2020/public/css/screen.css'), 'includeJSFooter.' => array('powermailJQueryDatepicker' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/jquery.datetimepicker.min.js', 'powermailJQueryFormValidation' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/parsley.min.js', 'powermailJQueryTabs' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Tabs.min.js', 'powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'picturefill' => 'EXT:kesstech/Resources/Public/Javascripts/images/picturefill.min.js', 'cookieChecker' => 'EXT:kesstech/Resources/Public/Javascripts/kesstech/cookieChecker.js', 'kesstechDealers' => 'EXT:kesstech/Resources/Public/Javascripts/kesstech/dealers.js', 'kesstechMap' => 'EXT:kesstech/Resources/Public/Javascripts/kesstech/kesstechMap.js', 'kesstechModelConfigurator' => 'EXT:kesstech/Resources/Public/Javascripts/kesstech/modelConfigurator.js', 'kesstechProductConfigurator' => 'EXT:kesstech/Resources/Public/Javascripts/kesstech/productConfigurator.js', 'kesstechDealerConfigurator' => 'EXT:kesstech/Resources/Public/Javascripts/kesstech/dealerConfigurator.js', 'kesstechMain' => 'EXT:kesstech/Resources/Public/Javascripts/kesstech/main.js', 'orientation' => 'fileadmin/templates/2020/public/js/kesstech/partials/orientation.js', 'header' => 'fileadmin/templates/2020/public/js/kesstech/partials/header.js', 'footer' => 'fileadmin/templates/2020/public/js/kesstech/partials/footer.js', 'notification' => 'fileadmin/templates/2020/public/js/kesstech/partials/notification.js', 'configuratorStep1' => 'fileadmin/templates/2020/public/js/kesstech/plugins/configurator-step-1.js', 'configuratorStep2' => 'fileadmin/templates/2020/public/js/kesstech/plugins/configurator-step-2.js', 'configuratorStep3' => 'fileadmin/templates/2020/public/js/kesstech/plugins/configurator-step-3.js', 'gallery' => 'fileadmin/templates/2020/public/js/kesstech/templates/gallery.js', 'heroImage' => 'fileadmin/templates/2020/public/js/kesstech/templates/hero-image.js', 'heroImageSlider' => 'fileadmin/templates/2020/public/js/kesstech/templates/hero-image-slider.js', 'heroVideo' => 'fileadmin/templates/2020/public/js/kesstech/templates/hero-video.js', 'image' => 'fileadmin/templates/2020/public/js/kesstech/templates/image.js', 'jobOffers' => 'fileadmin/templates/2020/public/js/kesstech/templates/job-offers.js', 'news' => 'fileadmin/templates/2020/public/js/kesstech/templates/news.js', 'contact' => 'fileadmin/templates/2020/public/js/kesstech/templates/contact.js'), 'includeJSFooterlibs.' => array('googlemaps' => 'https://maps.googleapis.com/maps/api/js?key=AIzaSyATaLqm4rrromyBThKCXbl5C_YRGq27kHY&libraries=places', 'googlemaps.' => array('external' => '1', 'excludeFromConcatenation' => '1', 'disableCompression' => '1'), 'markerClusterer' => 'EXT:kesstech/Resources/Public/Javascripts/googleMaps/markerClusterer.js', 'jquery' => 'fileadmin/templates/2020/public/js/jquery/jquery.min.js', 'jquery.' => array('forceOnTop' => '1'), 'jqueryCookie' => 'fileadmin/templates/2020/public/js/jquery/jquery.cookie.js', 'detectMobileBrowser' => 'fileadmin/templates/2020/public/js/jquery/detectMobileBrowser.min.js', 'lightbox' => 'fileadmin/templates/2020/public/js/jquery/lightbox.js', 'lightslider' => 'fileadmin/templates/2020/public/js/jquery/lightslider.min.js', 'masonry' => 'fileadmin/templates/2020/public/js/jquery/masonry.pkgd.min.js', 'tilesGallery' => 'fileadmin/templates/2020/public/js/jquery/tilesGallery.js', 'bootstrap' => 'fileadmin/templates/2020/public/js/bootstrap.min.js'), 'config.' => array('contentObjectExceptionHandler' => '0'), 'jsFooterInline.' => array('TEXT', '10982311.' => array('value' => ' containerBreakpointSmall = 500; containerBreakpointTiny = 300;')), 'includeJS.' => array('inovanet2' => 'fileadmin/templates/2020/public/js/cookieconsent.min.js'), 'headerData.' => array('TEXT', '999.' => array('value' => '<script type="text/javascript"> window.cookieconsent_options = { "message": "Cookies erleichtern die Bereitstellung unserer Dienste. Mit der Nutzung unserer Dienste erklären Sie sich damit einverstanden, dass wir Cookies verwenden.", "dismiss": "OK", "theme": "dark-bottom", "learnMore": "Mehr Informationen.", "link": "service/datenschutzerklaerung/", "target": "_blank" };</script>'), 'TEXT', '998.' => array('value' => '<!--Start of Tawk.to Script--><script type="text/javascript"> var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date(); (function(){ var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0]; s1.async=true; s1.src=\'https://embed.tawk.to/617bb10b86aee40a5738f090/1fj5in5h4\'; s1.charset=\'UTF-8\'; s1.setAttribute(\'crossorigin\',\'*\'); s0.parentNode.insertBefore(s1,s0); })();</script><!--End of Tawk.to Script-->')), 'typeNum' => '0', 'FLUIDTEMPLATE', '10.' => array('file' => 'fileadmin/templates/2020/private/layout/index.html', 'layoutRootPath' => 'fileadmin/templates/2020/private/layout/Layout/', 'partialRootPath' => 'fileadmin/templates/2020/private/layout/Partials/'), 'includeCSSLibs.' => array()))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/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/typo3_src-10.4.37/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/typo3_src-10.4.37/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/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 102
                unset($GLOBALS['TYPO3_REQUEST']);
            }
        }

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

    /**
     * Creates a PSR-7 compatible Response object
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/typo3/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f132cc9041b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/typo3/typo3_src-10.4.37/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/typo3_src-10.4.37/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/typo3_src-10.4.37/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/typo3_src-10.4.37/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/typo3_src-10.4.37/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/typo3_src-10.4.37/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();
});