Whoops, looks like something went wrong.

Get help in the TYPO3 Documentation

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

Find a solution for this exception in the TYPO3 Documentation.

(1/1) #1313855173 TYPO3\CMS\Extbase\Mvc\Exception\InvalidControllerNameException

The controller "Product" is not allowed by plugin "Pi1". Please check for TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin() in your ext_localconf.php.

in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/extbase/Classes/Mvc/Web/RequestBuilder.php line 269
            }
            if (isset($configuration['mvc']['callDefaultActionIfActionCantBeResolved']) && (bool)$configuration['mvc']['callDefaultActionIfActionCantBeResolved']) {
                return $this->defaultControllerClassName;
            }
            throw new InvalidControllerNameException(
                'The controller "' . $parameters['controller'] . '" is not allowed by plugin "' . $this->pluginName . '". Please check for TYPO3\\CMS\\Extbase\\Utility\\ExtensionUtility::configurePlugin() in your ext_localconf.php.',
                1313855173
            );
        }
at TYPO3\CMS\Extbase\Mvc\Web\RequestBuilder->resolveControllerClassName(array('action' => 'show', 'controller' => 'Product', 'product' => '115'))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/extbase/Classes/Mvc/Web/RequestBuilder.php line 211
        if (is_array($files[$pluginNamespace] ?? null)) {
            $parameters = array_replace_recursive($parameters, $files[$pluginNamespace]);
        }

        $controllerClassName = $this->resolveControllerClassName($parameters);
        $actionName = $this->resolveActionName($controllerClassName, $parameters);

        $baseUri = GeneralUtility::getIndpEnv('TYPO3_SITE_URL');
        if ($this->environmentService->isEnvironmentInBackendMode()) {
at TYPO3\CMS\Extbase\Mvc\Web\RequestBuilder->build()
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 47
     * @return \TYPO3\CMS\Extbase\Mvc\ResponseInterface|null
     */
    public function handleRequest()
    {
        $request = $this->requestBuilder->build();
        if ($this->isActionCacheable($request->getControllerObjectName(), $request->getControllerActionName())) {
            $request->setIsCached(true);
        } else {
            $contentObject = $this->configurationManager->getContentObject();
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest()
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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' => 'Products', 'pluginName' => 'Pi1'))
at call_user_func_array(array(object(TYPO3\CMS\Extbase\Core\Bootstrap), 'run'), array('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Products', 'pluginName' => 'Pi1')))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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' => 'Products', 'pluginName' => 'Pi1'), '')
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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' => 'Products', 'pluginName' => 'Pi1'))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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' => 'Products', 'pluginName' => 'Pi1'))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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' => 'Products', 'pluginName' => 'Pi1'), 'tt_content.list.20.products_pi1')
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'templatemotrona_pi1' => 'USER', 'templatemotrona_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TemplateMotrona', 'pluginName' => 'Pi1'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'products_pi1' => 'USER', 'products_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Products', 'pluginName' => 'Pi1'), 'sitproductattributes_productfilter' => 'USER', 'sitproductattributes_productfilter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'ProductFilter'), 'sitproductattributes_filteredproductlist' => 'USER', 'sitproductattributes_filteredproductlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'FilteredProductList')), 'tt_content.list.20.products_pi1', 'products_pi1')
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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' => 864, 'pid' => 215, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1434952172, 'crdate' => 1426588578, 'cruser_id' => 8, 'hidden' => 0, 'sorting' => 256, 'CType' => 'list', 'header' => '', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => null, 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '1', 'list_type' => 'products_pi1', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="switchableControllerActions"> <value index="vDEF">Request-&gt;index;Request-&gt;send;Request-&gt;addBasket</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:31:{s:5:"CType";N;s:6:"colPos";N;s:16:"sys_language_uid";N;s:6:"header";N;s:13:"header_layout";N;s:15:"header_position";N;s:4:"date";N;s:11:"header_link";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:11:"spaceBefore";N;s:10:"spaceAfter";N;s:13:"section_frame";N;s:6:"hidden";N;s:12:"sectionIndex";N;s:9:"linkToTop";N;s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";N;s:9:"recursive";N;s:10:"categories";N;s:26:"tx_minfoundation5_show_for";N;s:26:"tx_minfoundation5_hide_for";N;s:24:"tx_minfoundation5_format";N;s:23:"tx_minfoundation5_touch";N;s:23:"tx_minfoundation5_print";N;s:23:"tx_minfoundation5_class";N;s:28:"tx_minfoundation5_dataattrib";N;s:29:"tx_minfoundation5_use_intense";N;s:25:"tx_gridelements_container";N;s:23:"tx_gridelements_columns";N;}', 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_news_related_news' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_t3sbootstrap_header_display' => '', 'tx_t3sbootstrap_header_class' => '', 'tx_t3sbootstrap_header_fontawesome' => '', 'tx_t3sbootstrap_header_position' => '', 'tx_t3sbootstrap_padding_sides' => '', 'tx_t3sbootstrap_padding_size' => '', 'tx_t3sbootstrap_margin_sides' => '', 'tx_t3sbootstrap_margin_size' => '', 'tx_t3sbootstrap_flexbox_columns' => '', 'tx_t3sbootstrap_flexbox_prefix' => '', 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_extra_class' => '', 'tx_t3sbootstrap_bgcolor' => '', 'tx_t3sbootstrap_contextcolor' => '', 'tx_t3sbootstrap_textcolor' => '', 'tx_t3sbootstrap_flexform' => null, 'tx_t3sbootstrap_inTextImgRowWidth' => '', 'tx_t3sbootstrap_bordercolor' => '', 'tx_t3sbootstrap_image_ratio' => '', 'tx_t3sbootstrap_header_celink' => 0, 'tx_t3sbootstrap_header_sectionMenu' => '', 'tx_t3sbootstrap_bgopacity' => '', 'tx_t3sbootstrap_animateCss' => '', 'tx_t3sbootstrap_animateCssRepeat' => 0, 'tx_t3sbootstrap_animateCssDuration' => '', 'tx_t3sbootstrap_animateCssDelay' => '', 'gridelements_shortcut_page_order_by' => 0, 'tx_t3sbootstrap_sectionOrder' => '', 'tx_impexp_origuid' => 0, 'tx_container_parent' => 0, 'tx_t3sbootstrap_extra_style' => '', 'tx_t3sbootstrap_image_orig' => '', 'currentValue_kidjls9dksoje' => 'TwoCol_3-9', 'configuid' => 1), 'typoscriptObjectPath' => 'tt_content.list.20.products_pi1', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/Standard_action_list_968e3565e0b737fc85921d76823fe85b8b956397.php line 70
$array11 = array (
);$arguments7['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array11);
$arguments7['table'] = 'tt_content';
$renderChildrenClosure8 = ($arguments7['data'] !== null) ? function() use ($arguments7) { return $arguments7['data']; } : $renderChildrenClosure8;
$output6 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments7, $renderChildrenClosure8, $renderingContext);

$output6 .= '
    ';
return $output6;
at Standard_action_list_968e3565e0b737fc85921d76823fe85b8b956397->{closure}()
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/Standard_action_list_968e3565e0b737fc85921d76823fe85b8b956397.php line 95
     $renderingContext
    );
$arguments1['__thenClosure'] = $renderChildrenClosure2;

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

$output0 .= '

';
at Standard_action_list_968e3565e0b737fc85921d76823fe85b8b956397->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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('settings' => array('defaultHeaderType' => '2', 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'media' => array('lazyLoading' => 'lazy', 'popup' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '0'), '_typoScriptNodeValue' => '0'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('stdWrap' => array('cObject' => array(array('data' => 'file:current:description // file:current:title', 'wrap' => 'data-caption="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), array('data' => 'file:current:description // file:current:title', 'wrap' => 'title="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), '_typoScriptNodeValue' => 'COA'))))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')), 'config' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'be_layout' => 'TwoCol_3-9', 'data' => array('uid' => 864, 'pid' => 215, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1434952172, 'crdate' => 1426588578, 'cruser_id' => 8, 'hidden' => 0, 'sorting' => 256, 'CType' => 'list', 'header' => '', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => null, 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '1', 'list_type' => 'products_pi1', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="switchableControllerActions"> <value index="vDEF">Request-&gt;index;Request-&gt;send;Request-&gt;addBasket</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:31:{s:5:"CType";N;s:6:"colPos";N;s:16:"sys_language_uid";N;s:6:"header";N;s:13:"header_layout";N;s:15:"header_position";N;s:4:"date";N;s:11:"header_link";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:11:"spaceBefore";N;s:10:"spaceAfter";N;s:13:"section_frame";N;s:6:"hidden";N;s:12:"sectionIndex";N;s:9:"linkToTop";N;s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";N;s:9:"recursive";N;s:10:"categories";N;s:26:"tx_minfoundation5_show_for";N;s:26:"tx_minfoundation5_hide_for";N;s:24:"tx_minfoundation5_format";N;s:23:"tx_minfoundation5_touch";N;s:23:"tx_minfoundation5_print";N;s:23:"tx_minfoundation5_class";N;s:28:"tx_minfoundation5_dataattrib";N;s:29:"tx_minfoundation5_use_intense";N;s:25:"tx_gridelements_container";N;s:23:"tx_gridelements_columns";N;}', 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_news_related_news' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_t3sbootstrap_header_display' => '', 'tx_t3sbootstrap_header_class' => '', 'tx_t3sbootstrap_header_fontawesome' => '', 'tx_t3sbootstrap_header_position' => '', 'tx_t3sbootstrap_padding_sides' => '', 'tx_t3sbootstrap_padding_size' => '', 'tx_t3sbootstrap_margin_sides' => '', 'tx_t3sbootstrap_margin_size' => '', 'tx_t3sbootstrap_flexbox_columns' => '', 'tx_t3sbootstrap_flexbox_prefix' => '', 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_extra_class' => '', 'tx_t3sbootstrap_bgcolor' => '', 'tx_t3sbootstrap_contextcolor' => '', 'tx_t3sbootstrap_textcolor' => '', 'tx_t3sbootstrap_flexform' => null, 'tx_t3sbootstrap_inTextImgRowWidth' => '', 'tx_t3sbootstrap_bordercolor' => '', 'tx_t3sbootstrap_image_ratio' => '', 'tx_t3sbootstrap_header_celink' => 0, 'tx_t3sbootstrap_header_sectionMenu' => '', 'tx_t3sbootstrap_bgopacity' => '', 'tx_t3sbootstrap_animateCss' => '', 'tx_t3sbootstrap_animateCssRepeat' => 0, 'tx_t3sbootstrap_animateCssDuration' => '', 'tx_t3sbootstrap_animateCssDelay' => '', 'gridelements_shortcut_page_order_by' => 0, 'tx_t3sbootstrap_sectionOrder' => '', 'tx_impexp_origuid' => 0, 'tx_container_parent' => 0, 'tx_t3sbootstrap_extra_style' => '', 'tx_t3sbootstrap_image_orig' => '', 'currentValue_kidjls9dksoje' => 'TwoCol_3-9', 'configuid' => 1), 'current' => 'TwoCol_3-9', 'dataAnimate' => false, 'isAnimateCss' => false, 'winWidth' => 576, 'navbarBreakpointWidth' => 576, 'class' => '', 'header' => array('class' => '', 'hClass' => '', 'hColorVar' => '', 'hLine' => '', 'default' => '2'), 'style' => '', 'codesnippet' => false, 'typoLinkParts' => array('url' => '', 'target' => '', 'class' => '', 'title' => '', 'additionalParams' => '')), false)
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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('settings' => array('defaultHeaderType' => '2', 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'media' => array('lazyLoading' => 'lazy', 'popup' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'JSwindow' => array('newWindow' => '0', 'if' => array('isFalse' => '0'), '_typoScriptNodeValue' => '0'), 'directImageLink' => '1', 'crop' => array('data' => 'file:current:crop'), 'linkParams' => array('ATagParams' => array('stdWrap' => array('cObject' => array(array('data' => 'file:current:description // file:current:title', 'wrap' => 'data-caption="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), array('data' => 'file:current:description // file:current:title', 'wrap' => 'title="|"', 'required' => '1', 'stdWrap' => array('htmlSpecialChars' => '1'), '_typoScriptNodeValue' => 'TEXT'), '_typoScriptNodeValue' => 'COA'))))), 'additionalConfig' => array('no-cookie' => '1', 'api' => '0')), 'config' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'be_layout' => 'TwoCol_3-9', 'data' => array('uid' => 864, 'pid' => 215, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'tstamp' => 1434952172, 'crdate' => 1426588578, 'cruser_id' => 8, 'hidden' => 0, 'sorting' => 256, 'CType' => 'list', 'header' => '', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => null, 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '1', 'list_type' => 'products_pi1', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="switchableControllerActions"> <value index="vDEF">Request-&gt;index;Request-&gt;send;Request-&gt;addBasket</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:31:{s:5:"CType";N;s:6:"colPos";N;s:16:"sys_language_uid";N;s:6:"header";N;s:13:"header_layout";N;s:15:"header_position";N;s:4:"date";N;s:11:"header_link";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:11:"spaceBefore";N;s:10:"spaceAfter";N;s:13:"section_frame";N;s:6:"hidden";N;s:12:"sectionIndex";N;s:9:"linkToTop";N;s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";N;s:9:"recursive";N;s:10:"categories";N;s:26:"tx_minfoundation5_show_for";N;s:26:"tx_minfoundation5_hide_for";N;s:24:"tx_minfoundation5_format";N;s:23:"tx_minfoundation5_touch";N;s:23:"tx_minfoundation5_print";N;s:23:"tx_minfoundation5_class";N;s:28:"tx_minfoundation5_dataattrib";N;s:29:"tx_minfoundation5_use_intense";N;s:25:"tx_gridelements_container";N;s:23:"tx_gridelements_columns";N;}', 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_news_related_news' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'filelink_sorting_direction' => '', 'tx_t3sbootstrap_header_display' => '', 'tx_t3sbootstrap_header_class' => '', 'tx_t3sbootstrap_header_fontawesome' => '', 'tx_t3sbootstrap_header_position' => '', 'tx_t3sbootstrap_padding_sides' => '', 'tx_t3sbootstrap_padding_size' => '', 'tx_t3sbootstrap_margin_sides' => '', 'tx_t3sbootstrap_margin_size' => '', 'tx_t3sbootstrap_flexbox_columns' => '', 'tx_t3sbootstrap_flexbox_prefix' => '', 'tx_t3sbootstrap_container' => '', 'tx_t3sbootstrap_extra_class' => '', 'tx_t3sbootstrap_bgcolor' => '', 'tx_t3sbootstrap_contextcolor' => '', 'tx_t3sbootstrap_textcolor' => '', 'tx_t3sbootstrap_flexform' => null, 'tx_t3sbootstrap_inTextImgRowWidth' => '', 'tx_t3sbootstrap_bordercolor' => '', 'tx_t3sbootstrap_image_ratio' => '', 'tx_t3sbootstrap_header_celink' => 0, 'tx_t3sbootstrap_header_sectionMenu' => '', 'tx_t3sbootstrap_bgopacity' => '', 'tx_t3sbootstrap_animateCss' => '', 'tx_t3sbootstrap_animateCssRepeat' => 0, 'tx_t3sbootstrap_animateCssDuration' => '', 'tx_t3sbootstrap_animateCssDelay' => '', 'gridelements_shortcut_page_order_by' => 0, 'tx_t3sbootstrap_sectionOrder' => '', 'tx_impexp_origuid' => 0, 'tx_container_parent' => 0, 'tx_t3sbootstrap_extra_style' => '', 'tx_t3sbootstrap_image_orig' => '', 'currentValue_kidjls9dksoje' => 'TwoCol_3-9', 'configuid' => 1), 'current' => 'TwoCol_3-9', 'dataAnimate' => false, 'isAnimateCss' => false, 'winWidth' => 576, 'navbarBreakpointWidth' => 576, 'class' => '', 'header' => array('class' => '', 'hClass' => '', 'hColorVar' => '', 'hLine' => '', 'default' => '2'), 'style' => '', 'codesnippet' => false, 'typoLinkParts' => array('url' => '', 'target' => '', 'class' => '', 'title' => '', 'additionalParams' => '')), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/layout_Default_html_4653d372bc499e306164e4dd93045e742966cc5c.php line 2540
$arguments271['debug'] = true;
$arguments271['section'] = 'Main';
$arguments271['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output238 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments271, $renderChildrenClosure272, $renderingContext);

$output238 .= '
   </div>
  ';
at layout_Default_html_4653d372bc499e306164e4dd93045e742966cc5c->{closure}()
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/layout_Default_html_4653d372bc499e306164e4dd93045e742966cc5c.php line 2548
  ';
return $output238;
};

$output222 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments223, $renderChildrenClosure224, $renderingContext);

$output222 .= '
';
return $output222;
at layout_Default_html_4653d372bc499e306164e4dd93045e742966cc5c->{closure}()
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/fluid/Classes/ViewHelpers/Link/TypolinkViewHelper.php line 135
        // expose internal typoLink configuration to Fluid child context
        $variableProvider = $renderingContext->getVariableProvider();
        $variableProvider->add($partsAs, $typoLinkConfiguration);
        // If no link has to be rendered, the inner content will be returned as such
        $content = (string)$renderChildrenClosure();
        // clean up exposed variables
        $variableProvider->remove($partsAs);

        if ($parameter) {
at TYPO3\CMS\Fluid\ViewHelpers\Link\TypolinkViewHelper::renderStatic(array('parameter' => null, 'target' => '', 'class' => 'ce-link', 'title' => '', 'language' => null, 'additionalParams' => '', 'additionalAttributes' => array(), 'useCacheHash' => null, 'addQueryString' => false, 'addQueryStringMethod' => 'GET', 'addQueryStringExclude' => '', 'absolute' => false, 'parts-as' => 'typoLinkParts'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/layout_Default_html_4653d372bc499e306164e4dd93045e742966cc5c.php line 2573
$array221 = array (
);$arguments219['parameter'] = $renderingContext->getVariableProvider()->getByPath('celink', $array221);
$arguments219['class'] = 'ce-link';

$output209 .= TYPO3\CMS\Fluid\ViewHelpers\Link\TypolinkViewHelper::renderStatic($arguments219, $renderChildrenClosure220, $renderingContext);

$output209 .= '
';
// Rendering ViewHelper TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper
at layout_Default_html_4653d372bc499e306164e4dd93045e742966cc5c->{closure}()
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/layout_Default_html_4653d372bc499e306164e4dd93045e742966cc5c.php line 2622
return $output209;
};
$arguments207 = array();

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

$output0 .= '

';
at layout_Default_html_4653d372bc499e306164e4dd93045e742966cc5c->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '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('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'templatemotrona_pi1' => 'USER', 'templatemotrona_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TemplateMotrona', 'pluginName' => 'Pi1'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'products_pi1' => 'USER', 'products_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Products', 'pluginName' => 'Pi1'), 'sitproductattributes_productfilter' => 'USER', 'sitproductattributes_productfilter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'ProductFilter'), 'sitproductattributes_filteredproductlist' => 'USER', 'sitproductattributes_filteredproductlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'FilteredProductList'))))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '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('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'templatemotrona_pi1' => 'USER', 'templatemotrona_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TemplateMotrona', 'pluginName' => 'Pi1'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'products_pi1' => 'USER', 'products_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Products', 'pluginName' => 'Pi1'), 'sitproductattributes_productfilter' => 'USER', 'sitproductattributes_productfilter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'ProductFilter'), 'sitproductattributes_filteredproductlist' => 'USER', 'sitproductattributes_filteredproductlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'FilteredProductList'))))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '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('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'templatemotrona_pi1' => 'USER', 'templatemotrona_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TemplateMotrona', 'pluginName' => 'Pi1'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'products_pi1' => 'USER', 'products_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Products', 'pluginName' => 'Pi1'), 'sitproductattributes_productfilter' => 'USER', 'sitproductattributes_productfilter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'ProductFilter'), 'sitproductattributes_filteredproductlist' => 'USER', 'sitproductattributes_filteredproductlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'FilteredProductList'))), 'lib.contentElement')
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '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('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'templatemotrona_pi1' => 'USER', 'templatemotrona_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TemplateMotrona', 'pluginName' => 'Pi1'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'products_pi1' => 'USER', 'products_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Products', 'pluginName' => 'Pi1'), 'sitproductattributes_productfilter' => 'USER', 'sitproductattributes_productfilter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'ProductFilter'), 'sitproductattributes_filteredproductlist' => 'USER', 'sitproductattributes_filteredproductlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'FilteredProductList'))), 'list')
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', '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')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), '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('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'templatemotrona_pi1' => 'USER', 'templatemotrona_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TemplateMotrona', 'pluginName' => 'Pi1'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'products_pi1' => 'USER', 'products_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Products', 'pluginName' => 'Pi1'), 'sitproductattributes_productfilter' => 'USER', 'sitproductattributes_productfilter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'ProductFilter'), 'sitproductattributes_filteredproductlist' => 'USER', 'sitproductattributes_filteredproductlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'FilteredProductList'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\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')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), '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')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), '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', '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'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), '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')), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('navbarBreakpointWidth' => '576', 'winwidth' => '576', 'indexedsearch.' => array('targetPid' => '0'), 'expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '1', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'navbar.' => array('image.' => array('defaultPath' => 'EXT:template_motrona/Resources/Public/Images/logo.png', 'width' => '241', 'height' => '40', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '1', 'company' => 'motrona GmbH', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '1', 'navbarJustify' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarImage' => '0', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'right', 'navbarClass' => 'row main-navbar', 'navbarToggler' => 'left', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'sm', 'navbarOffcanvas' => '0', 'navbarHeight' => '132', 'navbarSearchbox' => '1', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '1', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'page', 'jumbotronFluid' => '1', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '1', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'outside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '0', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => '0', 'footerPid' => '466', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '0', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '1', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '', 'bodyExtraClass' => '', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '{$bootstrap.config.globalPaddingTop}', 'stickyFooterExtraPadding' => '', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '1', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'primary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '1'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282')))))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', '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')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), '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('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'templatemotrona_pi1' => 'USER', 'templatemotrona_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TemplateMotrona', 'pluginName' => 'Pi1'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'products_pi1' => 'USER', 'products_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Products', 'pluginName' => 'Pi1'), 'sitproductattributes_productfilter' => 'USER', 'sitproductattributes_productfilter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'ProductFilter'), 'sitproductattributes_filteredproductlist' => 'USER', 'sitproductattributes_filteredproductlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'FilteredProductList'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\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')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), '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')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), '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', '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'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), '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')), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('navbarBreakpointWidth' => '576', 'winwidth' => '576', 'indexedsearch.' => array('targetPid' => '0'), 'expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '1', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'navbar.' => array('image.' => array('defaultPath' => 'EXT:template_motrona/Resources/Public/Images/logo.png', 'width' => '241', 'height' => '40', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '1', 'company' => 'motrona GmbH', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '1', 'navbarJustify' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarImage' => '0', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'right', 'navbarClass' => 'row main-navbar', 'navbarToggler' => 'left', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'sm', 'navbarOffcanvas' => '0', 'navbarHeight' => '132', 'navbarSearchbox' => '1', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '1', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'page', 'jumbotronFluid' => '1', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '1', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'outside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '0', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => '0', 'footerPid' => '466', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '0', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '1', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '', 'bodyExtraClass' => '', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '{$bootstrap.config.globalPaddingTop}', 'stickyFooterExtraPadding' => '', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '1', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'primary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '1'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282')))))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', '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')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), '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('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'templatemotrona_pi1' => 'USER', 'templatemotrona_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TemplateMotrona', 'pluginName' => 'Pi1'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'products_pi1' => 'USER', 'products_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Products', 'pluginName' => 'Pi1'), 'sitproductattributes_productfilter' => 'USER', 'sitproductattributes_productfilter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'ProductFilter'), 'sitproductattributes_filteredproductlist' => 'USER', 'sitproductattributes_filteredproductlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'FilteredProductList'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\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')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), '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')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), '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', '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'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), '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')), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('navbarBreakpointWidth' => '576', 'winwidth' => '576', 'indexedsearch.' => array('targetPid' => '0'), 'expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '1', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'navbar.' => array('image.' => array('defaultPath' => 'EXT:template_motrona/Resources/Public/Images/logo.png', 'width' => '241', 'height' => '40', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '1', 'company' => 'motrona GmbH', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '1', 'navbarJustify' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarImage' => '0', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'right', 'navbarClass' => 'row main-navbar', 'navbarToggler' => 'left', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'sm', 'navbarOffcanvas' => '0', 'navbarHeight' => '132', 'navbarSearchbox' => '1', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '1', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'page', 'jumbotronFluid' => '1', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '1', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'outside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '0', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => '0', 'footerPid' => '466', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '0', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '1', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '', 'bodyExtraClass' => '', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '{$bootstrap.config.globalPaddingTop}', 'stickyFooterExtraPadding' => '', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '1', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'primary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '1'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282')))), 'tt_content')
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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' => '5', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '5', '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')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), '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('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'templatemotrona_pi1' => 'USER', 'templatemotrona_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TemplateMotrona', 'pluginName' => 'Pi1'), 'ke_search_pi1' => '< plugin.tx_kesearch_pi1', 'ke_search_pi2' => '< plugin.tx_kesearch_pi2', 'ke_search_pi3' => '< plugin.tx_kesearch_pi3', 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'products_pi1' => 'USER', 'products_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Products', 'pluginName' => 'Pi1'), 'sitproductattributes_productfilter' => 'USER', 'sitproductattributes_productfilter.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'ProductFilter'), 'sitproductattributes_filteredproductlist' => 'USER', 'sitproductattributes_filteredproductlist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SitProductAttributes', 'pluginName' => 'FilteredProductList'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\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')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), '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')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), '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', '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'))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))))))), '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')), 't3sbs_fluidtemplate' => 'COA', 't3sbs_fluidtemplate.' => array('FLUIDTEMPLATE', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'subheader', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => 'EXT:t3sbootstrap/Resources/Private/Templates/Content/FluidTemplate.html'))))), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'settings.' => array('navbarBreakpointWidth' => '576', 'winwidth' => '576', 'indexedsearch.' => array('targetPid' => '0'), 'expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '1', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'navbar.' => array('image.' => array('defaultPath' => 'EXT:template_motrona/Resources/Public/Images/logo.png', 'width' => '241', 'height' => '40', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '1', 'company' => 'motrona GmbH', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '1', 'navbarJustify' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarImage' => '0', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'right', 'navbarClass' => 'row main-navbar', 'navbarToggler' => 'left', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'sm', 'navbarOffcanvas' => '0', 'navbarHeight' => '132', 'navbarSearchbox' => '1', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '1', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'page', 'jumbotronFluid' => '1', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '1', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'outside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '0', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => '0', 'footerPid' => '466', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '0', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '1', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '', 'bodyExtraClass' => '', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '{$bootstrap.config.globalPaddingTop}', 'stickyFooterExtraPadding' => '', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '1', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'primary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0')))), 't3sbs_button' => '< lib.contentElement', 't3sbs_button.' => array('templateName' => 'Button', 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_card' => '< lib.contentElement', 't3sbs_card.' => array('templateName' => 'Card', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'overrideSmallColumns' => '', 'configuid' => '1'), 'T3SBS\\T3sbootstrap\\DataProcessing\\CardProcessor'), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_carousel' => '< lib.contentElement', 't3sbs_carousel.' => array('templateName' => 'Carousel', 'settings.' => array('defaultHeaderType' => '3'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_mediaobject' => '< lib.contentElement', 't3sbs_mediaobject.' => array('templateName' => 'Mediaobject', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_gallery' => '< lib.contentElement', 't3sbs_gallery.' => array('templateName' => 'ImageGallery', 'settings.' => array('defaultHeaderType' => '2'), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\BsImageGalleryProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'as' => 'files', 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 't3sbs_toast' => '< lib.contentElement', 't3sbs_toast.' => array('templateName' => 'Toast', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'T3SBS\\T3sbootstrap\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '1440', 'minimumWidth' => '0', 'ratioWithHeight' => '0', 'maxWidthMediaObject' => '200', 'maxWidthToast' => '20', 'disableAutoRow' => '0', 'overrideSmallColumns' => '', 'configuid' => '1')), 'stdWrap.' => array('editIcons' => 'tt_content')), 'two_columns' => 'FLUIDTEMPLATE', 'two_columns.' => array('templateName' => 'TwoColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '221.' => array('colPos' => '221', 'as' => 'col_221'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '222.' => array('colPos' => '222', 'as' => 'col_222'))), 'three_columns' => 'FLUIDTEMPLATE', 'three_columns.' => array('templateName' => 'ThreeColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '231.' => array('colPos' => '231', 'as' => 'col_231'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '232.' => array('colPos' => '232', 'as' => 'col_232'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '233.' => array('colPos' => '233', 'as' => 'col_233'))), 'four_columns' => 'FLUIDTEMPLATE', 'four_columns.' => array('templateName' => 'FourColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '241', 'as' => 'col_241'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '242', 'as' => 'col_242'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '243', 'as' => 'col_243'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '244', 'as' => 'col_244'))), 'six_columns' => 'FLUIDTEMPLATE', 'six_columns.' => array('templateName' => 'SixColumns', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '241.' => array('colPos' => '261', 'as' => 'col_261'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '242.' => array('colPos' => '262', 'as' => 'col_262'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '243.' => array('colPos' => '263', 'as' => 'col_263'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '244.' => array('colPos' => '264', 'as' => 'col_264'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '245.' => array('colPos' => '265', 'as' => 'col_265'), 'B13\\Container\\DataProcessing\\ContainerProcessor', '246.' => array('colPos' => '266', 'as' => 'col_266'))), 'card_wrapper' => 'FLUIDTEMPLATE', 'card_wrapper.' => array('templateName' => 'CardWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '270.' => array('colPos' => '270', 'as' => 'col_270'))), 'button_group' => 'FLUIDTEMPLATE', 'button_group.' => array('templateName' => 'Buttongroup', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '271.' => array('colPos' => '271', 'as' => 'col_271'))), 'background_wrapper' => 'FLUIDTEMPLATE', 'background_wrapper.' => array('templateName' => 'BackgroundWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '273.' => array('colPos' => '273', 'as' => 'col_273'))), 'parallax_wrapper' => 'FLUIDTEMPLATE', 'parallax_wrapper.' => array('templateName' => 'ParallaxWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '274.' => array('colPos' => '274', 'as' => 'col_274'))), 'autoLayout_row' => 'FLUIDTEMPLATE', 'autoLayout_row.' => array('templateName' => 'AutoLayoutRow', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '272.' => array('colPos' => '272', 'as' => 'col_272'))), 'container' => 'FLUIDTEMPLATE', 'container.' => array('templateName' => 'Container', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '275.' => array('colPos' => '275', 'as' => 'col_275'))), 'carousel_container' => 'FLUIDTEMPLATE', 'carousel_container.' => array('templateName' => 'CarouselContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '276.' => array('colPos' => '276', 'as' => 'col_276'))), 'collapsible_container' => 'FLUIDTEMPLATE', 'collapsible_container.' => array('templateName' => 'CollapsibleContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '277.' => array('colPos' => '277', 'as' => 'col_277'))), 'collapsible_accordion' => 'FLUIDTEMPLATE', 'collapsible_accordion.' => array('templateName' => 'Collapsible', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '278.' => array('colPos' => '278', 'as' => 'col_278'))), 'modal' => 'FLUIDTEMPLATE', 'modal.' => array('templateName' => 'Modal', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '279.' => array('colPos' => '279', 'as' => 'col_279'))), 'tabs_container' => 'FLUIDTEMPLATE', 'tabs_container.' => array('templateName' => 'TabContainer', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '280.' => array('colPos' => '280', 'as' => 'col_280'))), 'tabs_tab' => 'FLUIDTEMPLATE', 'tabs_tab.' => array('templateName' => 'Tab', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '281.' => array('colPos' => '281', 'as' => 'col_281'))), 'listGroup_wrapper' => 'FLUIDTEMPLATE', 'listGroup_wrapper.' => array('templateName' => 'ListGroupWrapper', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:t3sbootstrap/Resources/Private/Templates/Container/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Container/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')), 'B13\\Container\\DataProcessing\\ContainerProcessor', '282.' => array('colPos' => '282', 'as' => 'col_282')))), '')
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 95
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $conf['table'] . ':' . $row['uid'];
                        $this->cObj->lastChanged($row['tstamp']);
                        $cObj->start($row, $conf['table']);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentContentObject), array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))), '10')
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 688
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id')))), 'CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))), 'RESTORE_REGISTER'))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php line 42
        if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
            return '';
        }

        $content = $this->cObj->cObjGet($conf);
        $wrap = isset($conf['wrap.']) ? $this->cObj->stdWrap($conf['wrap'], $conf['wrap.']) : $conf['wrap'];
        if ($wrap) {
            $content = $this->cObj->wrap($content, $wrap);
        }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject->render(array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id')))), 'CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))), 'RESTORE_REGISTER'))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject), array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id')))), 'CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))), 'RESTORE_REGISTER'))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('COA', array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id')))), 'CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))), 'RESTORE_REGISTER'), 'lib.dynamicContent')
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 193
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('parseFunc.' => array('tags.' => array('img' => 'TEXT', 'img.' => array('current' => '1', 'preUserFunc' => 'Netresearch\\RteCKEditorImage\\Controller\\ImageRenderingController->renderImageAttributes'), 'a' => 'TEXT', 'a.' => array('current' => '1', 'preUserFunc' => 'Netresearch\\RteCKEditorImage\\Controller\\ImageLinkRenderingController->renderImages', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'nonTypoTagStdWrap.' => array('HTMLparser.' => array('tags.' => array('img.' => array('fixAttrib.' => array('allparams.' => array('unset' => '1'), 'data-htmlarea-file-uid.' => array('unset' => '1'), 'data-htmlarea-file-table.' => array('unset' => '1'), 'data-htmlarea-zoom.' => array('unset' => '1'), 'data-htmlarea-clickenlarge.' => array('unset' => '1'), 'data-title-override.' => array('unset' => '1'), 'data-alt-override.' => array('unset' => '1')))), 'keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'HTMLparser' => '1'), 'makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var, s, mark, s, mark', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'htmlSanitize' => '1', 'tags' => 'mark'), 'contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'settings.' => array('defaultHeaderType' => '2', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('wrap' => '|', 'width' => '1140m', 'height' => '800m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '0', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '1', 'linkParams.' => array('ATagParams.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '98.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'data-caption="|"', 'required' => '1'), 'TEXT', '99.' => array('data' => 'file:current:description // file:current:title', 'stdWrap.' => array('htmlSpecialChars' => '1'), 'wrap' => 'title="|"', 'required' => '1')))))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')), 'codesnippet' => '0', 'linkHoverEffect' => '0', 'lazyLoad' => '1', 'imgCopyright' => '0', 'fixedButton' => '0', 'animateCss' => '1', 'animateVersion' => '3.7.2', 'owlCarouselVersion' => '2.3.4', 'viewportcheckerVersion' => '1.8.8', 'viewportcheckerIntegrity' => '', 'cdn' => '0', 'highlightIntegrity' => '', 'highlightVersion' => '10.4.0', 'dateformat' => 'd.m.Y', 'subheaderColor' => 'primary', 'sectionmenuStickyTop' => '0', 'magnifying' => '0', 'picturefill' => '0', 'srcsetDesktop' => '385, 576, 768, 1260, 1920', 'srcsetTablet' => '385, 576, 768, 992, 1260', 'srcsetMobile' => '60, 100, 200, 385, 575', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'lazyLoadBgWrapperImage' => '0', 'lazyLoadThreshold' => '0', 'cdnEnable' => '0', 'containerError' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sidebarSectionMobile' => '0', 'breakpoint' => 'sm', 'lightboxSelection' => '1', 'cardFlipperOnClick' => '0', 'config.' => array('sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130'), 'navbar.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200')), 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/', 'EXT:t3sbootstrap/Resources/Private/Templates/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Templates/Content/', ''), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '71.' => array('recentlyUpdatedContentElements' => '0', 'setMaxResults' => '10', 'if.' => array('isTrue' => '0')), 'T3SBS\\T3sbootstrap\\DataProcessing\\BootstrapProcessor', '224.' => array('defaultHeaderType' => '2', 'contentMarginTop' => '0', 'configuid' => '1', 'carouselFiles' => '0', 'disableAutoRow' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')))), 'parseFunc_RTE.' => array('tags.' => array('img' => 'TEXT', 'img.' => array('current' => '1', 'preUserFunc' => 'Netresearch\\RteCKEditorImage\\Controller\\ImageRenderingController->renderImageAttributes'), 'a' => 'TEXT', 'a.' => array('current' => '1', 'preUserFunc' => 'Netresearch\\RteCKEditorImage\\Controller\\ImageLinkRenderingController->renderImages', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'nonTypoTagStdWrap.' => array('HTMLparser.' => array('tags.' => array('img.' => array('fixAttrib.' => array('allparams.' => array('unset' => '1'), 'data-htmlarea-file-uid.' => array('unset' => '1'), 'data-htmlarea-file-table.' => array('unset' => '1'), 'data-htmlarea-zoom.' => array('unset' => '1'), 'data-htmlarea-clickenlarge.' => array('unset' => '1'), 'data-title-override.' => array('unset' => '1'), 'data-alt-override.' => array('unset' => '1')))), 'keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'HTMLparser' => '1', 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var, s, mark, s, mark', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('tags.' => array('img' => 'TEXT', 'img.' => array('current' => '1', 'preUserFunc' => 'Netresearch\\RteCKEditorImage\\Controller\\ImageRenderingController->renderImageAttributes'), 'a' => 'TEXT', 'a.' => array('current' => '1', 'preUserFunc' => 'Netresearch\\RteCKEditorImage\\Controller\\ImageLinkRenderingController->renderImages', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'nonTypoTagStdWrap.' => array('HTMLparser.' => array('tags.' => array('img.' => array('fixAttrib.' => array('allparams.' => array(*DEEP NESTED ARRAY*), 'data-htmlarea-file-uid.' => array(*DEEP NESTED ARRAY*), 'data-htmlarea-file-table.' => array(*DEEP NESTED ARRAY*), 'data-htmlarea-zoom.' => array(*DEEP NESTED ARRAY*), 'data-htmlarea-clickenlarge.' => array(*DEEP NESTED ARRAY*), 'data-title-override.' => array(*DEEP NESTED ARRAY*), 'data-alt-override.' => array(*DEEP NESTED ARRAY*)))), 'keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'HTMLparser' => '1'), 'makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var, s, mark', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array('fixAttrib.' => array('class.' => array('default' => 'table', 'always' => '1')))), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => '', 'innerStdWrap_all.' => array('ifBlank' => '')))))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1')), 'tags' => 'mark'), 'pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'leveltitle:-1'), 'newsTitle' => 'TEXT', 'newsTitle.' => array('data' => 'register:newsTitle', 'stdWrap.' => array('wrap' => '<li class="breadcrumb-item active">|</li>', 'required' => '1')), 'mathCeil' => 'TEXT', 'mathCeil.' => array('current' => '1', 'prioriCalc' => '1', 'round' => '1', 'round.' => array('roundType' => 'ceil')), 'currentDate' => 'TEXT', 'currentDate.' => array('data' => 'date : U', 'strftime' => '%A, %e. %B %Y'), 'currentDomain' => 'TEXT', 'currentDomain.' => array('dataWrap' => '{getIndpEnv:TYPO3_REQUEST_HOST}|', 'typolink.' => array('parameter.' => array('current' => '1'), 'returnLast' => 'url')), 'printButton' => 'COA', 'printButton.' => array('TEXT', '10.' => array('value' => '<i class="fas fa-print"></i>'), 'stdWrap.' => array('typolinkno_cache' => '1', 'typolink.' => array('title' => 'Druckversion dieser Seite in einem neuen Fenster öffnen', 'ATagParams' => 'target = _blank', 'parameter.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('data' => 'page:uid', 'wrap' => 'index.php?id=|', 'required' => '1'), 'TEXT', '10.' => array('value' => '&no_cache=1'), 'TEXT', '20.' => array('data' => 'GP:L', 'wrap' => '&L=|', 'required' => '1'), 'TEXT', '30.' => array('data' => 'GP:tx_news_pi1 | news', 'wrap' => '&tx_news_pi1[news]=|', 'required' => '1'), 'TEXT', '40.' => array('data' => 'GP:tx_news_pi1 | controller', 'wrap' => '&tx_news_pi1[controller]=|', 'required' => '1'), 'TEXT', '50.' => array('data' => 'GP:tx_news_pi1 | action', 'wrap' => '&tx_news_pi1[action]=|', 'required' => '1'), 'TEXT', '60.' => array('data' => 'GP:cHash', 'wrap' => '&cHash=|', 'required' => '1'), 'TEXT', '70.' => array('value' => '&type=98')))))), 'dynamicContent' => 'COA', 'dynamicContent.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id')))), 'CONTENT', '10.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => 'colPos={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid'))), 'RESTORE_REGISTER'), 'dynamicContentSlide' => '< lib.dynamicContent', 'dynamicContentSlide.' => array('10.' => array('slide' => '-1')), 'contentByUid' => 'RECORDS', 'contentByUid.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1'), 'content.' => array('footerFromPid' => 'CONTENT', 'footerFromPid.' => array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos=0', 'pidInList' => '466'), 'if.' => array('isTrue' => '466'))), 'tx_news.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'tx_form.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1'))), 'lib.dynamicContent', 'dynamicContent')
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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('pageUid' => 215, 'colPos' => 0), 'typoscriptObjectPath' => 'lib.dynamicContent', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/partial_BackendLayouts_TwoCol_3_9_c05b83ffe383e87f237bae9c0ea84e2b389b4f84.php line 659
);$array100['pageUid'] = $renderingContext->getVariableProvider()->getByPath('data.uid', $array101);
$array100['colPos'] = 0;
$arguments98['data'] = $array100;
$renderChildrenClosure99 = ($arguments98['data'] !== null) ? function() use ($arguments98) { return $arguments98['data']; } : $renderChildrenClosure99;
$output97 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments98, $renderChildrenClosure99, $renderingContext);

$output97 .= '
  ';
return $output97;
at partial_BackendLayouts_TwoCol_3_9_c05b83ffe383e87f237bae9c0ea84e2b389b4f84->{closure}()
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/partial_BackendLayouts_TwoCol_3_9_c05b83ffe383e87f237bae9c0ea84e2b389b4f84.php line 666
  ';
return $output97;
};

$output80 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments90, $renderChildrenClosure91, $renderingContext);

$output80 .= '
';

at partial_BackendLayouts_TwoCol_3_9_c05b83ffe383e87f237bae9c0ea84e2b389b4f84->section_186817d730a4234a5cb5db37d7099a3440fc5dea(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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('r', 'S')
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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('r', 'S')
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/partial_BackendLayouts_TwoCol_3_9_c05b83ffe383e87f237bae9c0ea84e2b389b4f84.php line 228
$arguments36['debug'] = true;
$arguments36['section'] = 'MainContent';
$arguments36['arguments'] = $renderingContext->getVariableProvider()->getAll();

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

$output0 .= '
 </main>
';
at partial_BackendLayouts_TwoCol_3_9_c05b83ffe383e87f237bae9c0ea84e2b389b4f84->section_808d7dca8a74d84af27a2d6602c3d786de45fe1e(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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('r', 'S')
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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('r', 'S')
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/partial_BackendLayouts_TwoCol_3_9_c05b83ffe383e87f237bae9c0ea84e2b389b4f84.php line 1484
$arguments243['debug'] = true;
$arguments243['section'] = 'Default';
$arguments243['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output242 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments243, $renderChildrenClosure244, $renderingContext);

$output242 .= '
   ';
return $output242;
at partial_BackendLayouts_TwoCol_3_9_c05b83ffe383e87f237bae9c0ea84e2b389b4f84->{closure}()
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/partial_BackendLayouts_TwoCol_3_9_c05b83ffe383e87f237bae9c0ea84e2b389b4f84.php line 1489

$output242 .= '
   ';
return $output242;
});
}
}, array($arguments180));

$output179 .= '
at partial_BackendLayouts_TwoCol_3_9_c05b83ffe383e87f237bae9c0ea84e2b389b4f84->{closure}(array('expression' => 'default'))
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/partial_BackendLayouts_TwoCol_3_9_c05b83ffe383e87f237bae9c0ea84e2b389b4f84.php line 1491
   ';
return $output242;
});
}
}, array($arguments180));

$output179 .= '
 </div>

at partial_BackendLayouts_TwoCol_3_9_c05b83ffe383e87f237bae9c0ea84e2b389b4f84->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 329
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
        return $output;
    }
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial('r', 'S')
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 141
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic('r', 'S')
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/Standard_action_index_abd86528f05ec72ed3a7f44fca7efba67d683c7b.php line 215
$output13 .= $renderingContext->getVariableProvider()->getByPath('be_layout', $array14);
$arguments11['partial'] = $output13;
$arguments11['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output10 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments11, $renderChildrenClosure12, $renderingContext);

$output10 .= '
   ';
return $output10;
at Standard_action_index_abd86528f05ec72ed3a7f44fca7efba67d683c7b->{closure}()
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/Standard_action_index_abd86528f05ec72ed3a7f44fca7efba67d683c7b.php line 251
   ';
return $output16;
};

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

$output0 .= '
 </div>
';
at Standard_action_index_abd86528f05ec72ed3a7f44fca7efba67d683c7b->section_e435c89d5cba9b2846882f39f7c202e0769a44ad(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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('r', 'S')
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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('r', 'S')
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/Standard_action_index_abd86528f05ec72ed3a7f44fca7efba67d683c7b.php line 3825
$arguments277['debug'] = true;
$arguments277['section'] = 'PageContent';
$arguments277['arguments'] = $renderingContext->getVariableProvider()->getAll();

$output276 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments277, $renderChildrenClosure278, $renderingContext);

$output276 .= '
        </div>
       ';
at Standard_action_index_abd86528f05ec72ed3a7f44fca7efba67d683c7b->{closure}()
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/Standard_action_index_abd86528f05ec72ed3a7f44fca7efba67d683c7b.php line 3833
       ';
return $output276;
};

$output269 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments270, $renderChildrenClosure271, $renderingContext);

$output269 .= '
     ';
return $output269;
at Standard_action_index_abd86528f05ec72ed3a7f44fca7efba67d683c7b->{closure}()
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/Standard_action_index_abd86528f05ec72ed3a7f44fca7efba67d683c7b.php line 3840
     ';
return $output269;
};

$output175 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments262, $renderChildrenClosure263, $renderingContext);

$output175 .= '
   </div>
   ';
at Standard_action_index_abd86528f05ec72ed3a7f44fca7efba67d683c7b->{closure}()
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/Standard_action_index_abd86528f05ec72ed3a7f44fca7efba67d683c7b.php line 4310
return $output175;
};
$arguments173 = array();

$output172 .= TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic($arguments173, $renderChildrenClosure174, $renderingContext);

$output172 .= '
 ';
return $output172;
at Standard_action_index_abd86528f05ec72ed3a7f44fca7efba67d683c7b->{closure}()
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/shared/public/typo3temp/var/cache/code/fluid_template/Standard_action_index_abd86528f05ec72ed3a7f44fca7efba67d683c7b.php line 4317
 ';
return $output172;
};

$output169 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments170, $renderChildrenClosure171, $renderingContext);

$output169 .= '


at Standard_action_index_abd86528f05ec72ed3a7f44fca7efba67d683c7b->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 186
        }

        if (!$parsedTemplate->hasLayout()) {
            $this->startRendering(self::RENDERING_TEMPLATE, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedTemplate->render($this->baseRenderingContext);
            $this->stopRendering();
        } else {
            $layoutName = $parsedTemplate->getLayoutName($this->baseRenderingContext);
            try {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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('settings.' => array('navbarBreakpointWidth' => '576', 'winwidth' => '576', 'indexedsearch.' => array('targetPid' => '0'), 'expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '1', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'navbar.' => array('image.' => array('defaultPath' => 'EXT:template_motrona/Resources/Public/Images/logo.png', 'width' => '241', 'height' => '40', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '1', 'company' => 'motrona GmbH', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '1', 'navbarJustify' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarImage' => '0', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'right', 'navbarClass' => 'row main-navbar', 'navbarToggler' => 'left', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'sm', 'navbarOffcanvas' => '0', 'navbarHeight' => '132', 'navbarSearchbox' => '1', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '1', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'page', 'jumbotronFluid' => '1', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '1', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'outside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '0', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => '0', 'footerPid' => '466', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '0', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '1', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '', 'bodyExtraClass' => '', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '{$bootstrap.config.globalPaddingTop}', 'stickyFooterExtraPadding' => '', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '1', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'primary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0')), 'file' => 'EXT:t3sbootstrap/Resources/Private/Templates/Main.html', 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1', 'override' => '1', 'override.' => array('if.' => array('isTrue' => '1')))), 'as' => 'navbarMenu', 'if.' => array('isFalse.' => array('value' => '0'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '11.' => array('special' => 'list', 'special.' => array('value' => '0'), 'as' => 'navbarMenuRight', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '12.' => array('special' => 'browse', 'special.' => array('items' => 'nextsection|next', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browseNext', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '13.' => array('special' => 'browse', 'special.' => array('items' => 'prev|prevsection', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browsePrev', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1', 'override' => '-1', 'override.' => array('if.' => array('equals' => '99', 'value' => '1')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'subNavigation', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => 'Sub')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'as' => 'breadcrumb', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('if.' => array('isTrue' => '1')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '{$bootstrap.config.bottom}')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languageNavigation', 'if.' => array('isTrue' => '1')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0'))))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1')), 'levels' => '1', 'as' => 'metaNavigation', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'as' => 'sectionMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'as' => 'content')), 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => 'Sub')), 'TEXT', '30.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '40.' => array('value' => '1', 'if.' => array('isTrue' => '0')))))), 'T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '70.' => array('lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0', 'if.' => array('value' => '0', 'equals' => '1'), 'isTrue' => '0'), 'T3SBS\\T3sbootstrap\\DataProcessing\\ConfigProcessor', '90.' => array('webp' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')))))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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('settings.' => array('navbarBreakpointWidth' => '576', 'winwidth' => '576', 'indexedsearch.' => array('targetPid' => '0'), 'expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '1', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'navbar.' => array('image.' => array('defaultPath' => 'EXT:template_motrona/Resources/Public/Images/logo.png', 'width' => '241', 'height' => '40', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '1', 'company' => 'motrona GmbH', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '1', 'navbarJustify' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarImage' => '0', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'right', 'navbarClass' => 'row main-navbar', 'navbarToggler' => 'left', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'sm', 'navbarOffcanvas' => '0', 'navbarHeight' => '132', 'navbarSearchbox' => '1', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '1', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'page', 'jumbotronFluid' => '1', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '1', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'outside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '0', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => '0', 'footerPid' => '466', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '0', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '1', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '', 'bodyExtraClass' => '', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '{$bootstrap.config.globalPaddingTop}', 'stickyFooterExtraPadding' => '', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '1', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'primary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0')), 'file' => 'EXT:t3sbootstrap/Resources/Private/Templates/Main.html', 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1', 'override' => '1', 'override.' => array('if.' => array('isTrue' => '1')))), 'as' => 'navbarMenu', 'if.' => array('isFalse.' => array('value' => '0'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '11.' => array('special' => 'list', 'special.' => array('value' => '0'), 'as' => 'navbarMenuRight', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '12.' => array('special' => 'browse', 'special.' => array('items' => 'nextsection|next', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browseNext', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '13.' => array('special' => 'browse', 'special.' => array('items' => 'prev|prevsection', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browsePrev', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1', 'override' => '-1', 'override.' => array('if.' => array('equals' => '99', 'value' => '1')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'subNavigation', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => 'Sub')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'as' => 'breadcrumb', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('if.' => array('isTrue' => '1')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '{$bootstrap.config.bottom}')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languageNavigation', 'if.' => array('isTrue' => '1')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0'))))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1')), 'levels' => '1', 'as' => 'metaNavigation', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'as' => 'sectionMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'as' => 'content')), 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => 'Sub')), 'TEXT', '30.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '40.' => array('value' => '1', 'if.' => array('isTrue' => '0')))))), 'T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '70.' => array('lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0', 'if.' => array('value' => '0', 'equals' => '1'), 'isTrue' => '0'), 'T3SBS\\T3sbootstrap\\DataProcessing\\ConfigProcessor', '90.' => array('webp' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')))))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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('settings.' => array('navbarBreakpointWidth' => '576', 'winwidth' => '576', 'indexedsearch.' => array('targetPid' => '0'), 'expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '1', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'navbar.' => array('image.' => array('defaultPath' => 'EXT:template_motrona/Resources/Public/Images/logo.png', 'width' => '241', 'height' => '40', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '1', 'company' => 'motrona GmbH', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '1', 'navbarJustify' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarImage' => '0', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'right', 'navbarClass' => 'row main-navbar', 'navbarToggler' => 'left', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'sm', 'navbarOffcanvas' => '0', 'navbarHeight' => '132', 'navbarSearchbox' => '1', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '1', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'page', 'jumbotronFluid' => '1', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '1', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'outside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '0', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => '0', 'footerPid' => '466', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '0', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '1', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '', 'bodyExtraClass' => '', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '{$bootstrap.config.globalPaddingTop}', 'stickyFooterExtraPadding' => '', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '1', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'primary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0')), 'file' => 'EXT:t3sbootstrap/Resources/Private/Templates/Main.html', 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1', 'override' => '1', 'override.' => array('if.' => array('isTrue' => '1')))), 'as' => 'navbarMenu', 'if.' => array('isFalse.' => array('value' => '0'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '11.' => array('special' => 'list', 'special.' => array('value' => '0'), 'as' => 'navbarMenuRight', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '12.' => array('special' => 'browse', 'special.' => array('items' => 'nextsection|next', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browseNext', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '13.' => array('special' => 'browse', 'special.' => array('items' => 'prev|prevsection', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browsePrev', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1', 'override' => '-1', 'override.' => array('if.' => array('equals' => '99', 'value' => '1')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'subNavigation', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => 'Sub')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'as' => 'breadcrumb', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('if.' => array('isTrue' => '1')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '{$bootstrap.config.bottom}')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languageNavigation', 'if.' => array('isTrue' => '1')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0'))))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1')), 'levels' => '1', 'as' => 'metaNavigation', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'as' => 'sectionMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'as' => 'content')), 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => 'Sub')), 'TEXT', '30.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '40.' => array('value' => '1', 'if.' => array('isTrue' => '0')))))), 'T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '70.' => array('lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0', 'if.' => array('value' => '0', 'equals' => '1'), 'isTrue' => '0'), 'T3SBS\\T3sbootstrap\\DataProcessing\\ConfigProcessor', '90.' => array('webp' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')))), '10')
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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('meta.' => array('viewport' => 'width=device-width, initial-scale=1, shrink-to-fit=no'), 'shortcutIcon' => '0', 'LOAD_REGISTER', '1.' => array('newsTitle.' => array('cObject' => 'RECORDS', 'cObject.' => array('source' => '{GP:tx_news_pi1|news}', 'source.' => array('insertData' => '1'), 'tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'TEXT', 'tx_news_domain_model_news.' => array('field' => 'title'))))), 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('wrap' => '<body |>', 'TEXT', '10.' => array('data' => 'TSFE:id', 'noTrimWrap' => '| id="page-|"|'), 'COA', '20.' => array('stdWrap.' => array('noTrimWrap' => '| class="|"|'), 'TEXT', '10.' => array('noTrimWrap' => '|||', 'value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1')), 'case' => 'lower')), 'TEXT', '20.' => array('data' => 'page:layout', 'noTrimWrap' => '| layout-||', 'if.' => array('isTrue.' => array('data' => 'page:layout'))), 'TEXT', '30.' => array('value' => '', 'noTrimWrap' => '| ||', 'if.' => array('isTrue' => '')), 'TEXT', '40.' => array('value' => 'bgi', 'noTrimWrap' => '| ||', 'if.' => array('isTrue' => '0')), 'TEXT', '50.' => array('value' => 'sm', 'noTrimWrap' => '| ||')), 'COA', '30.' => array('stdWrap.' => array('noTrimWrap' => '| style="|"|'), 'TEXT', '10.' => array('value' => '132', 'wrap' => 'padding-top:|px;'), 'if.' => array('isTrue' => '132')), 'TEXT', '40.' => array('value' => 'sm', 'noTrimWrap' => '| data-navbar-breakpoint="|"|'), 'TEXT', '50.' => array('value' => '576', 'noTrimWrap' => '| data-navbar-breakpointWidth="|"|', 'if.' => array('isTrue' => '576'))), 'includeCSS.' => array('bootstrapScss' => 'fileadmin/T3SB/Resources/Public/Contrib/Bootstrap/scss/bootstrap.scss', 'bootstrapScss.' => array('forceOnTop' => '1', 'if.' => array('isFalse' => '1')), 'bootstrapCustom' => 'uploads/tx_t3sbootstrap/bootstrap.scss', 'bootstrapCustom.' => array('forceOnTop' => '1', 'if.' => array('isTrue' => '1')), 't3sblightbox' => 'fileadmin/T3SB/Resources/Public/CSS/baguetteBox.min.css', 't3sblightbox.' => array('if.' => array('value' => '1', 'equals' => '1')), 'cookieconsentCss' => 'fileadmin/T3SB/Resources/Public/CSS/cookieconsent.min.css', 'cookieconsentCss.' => array('if.' => array('isTrue' => '1')), 't3sbootstrap' => 'EXT:t3sbootstrap/Resources/Public/Styles/t3sbootstrap.css', 't3sbootstrap.' => array('if.' => array('isFalse' => '0')), 't3sbootstrapStickyFooter' => 'EXT:t3sbootstrap/Resources/Public/Styles/t3sbootstrapSF.css', 't3sbootstrapStickyFooter.' => array('if.' => array('isTrue' => '0')), 'navbarSlideCss' => 'EXT:t3sbootstrap/Resources/Public/Styles/slideNavbar.css', 'navbarSlideCss.' => array('if.' => array('value' => 'slide', 'equals' => 'light')), 't3sfontawesomeLink' => 'EXT:t3sbootstrap/Resources/Public/Contrib/Fontawesome/css/fontawesomeLink.css', 't3sfontawesomeLink.' => array('if.' => array('value' => '1', 'equals' => '1')), 't3sfontawesomeProLink' => 'EXT:t3sbootstrap/Resources/Public/Contrib/Fontawesome/css/fontawesomeProLink.css', 't3sfontawesomeProLink.' => array('if.' => array('value' => '2', 'equals' => '1')), 't3sfontawesomeMinLink' => 'EXT:t3sbootstrap/Resources/Public/Contrib/Fontawesome/css/fontawesomeMinLink.css', 't3sfontawesomeMinLink.' => array('if.' => array('isFalse' => '1')), 'products' => 'EXT:products/Resources/Public/Scss/styles.scss', 'sitProductAttributes' => 'EXT:sit_product_attributes/Resources/Public/Scss/styles.scss', 'styles' => 'EXT:template_motrona/Resources/Public/Scss/styles.scss', 'fontAwesome4' => 'EXT:template_motrona/Resources/Public/css/vendor/font-awesome.min.css', 'jQueryDataTables' => 'EXT:template_motrona/Resources/Public/css/vendor/jquery.dataTables.min.css'), 'includeJSFooterlibs.' => array('jquery' => 'fileadmin/T3SB/Resources/Public/JS/jquery.min.js', 'jquery.' => array('forceOnTop' => '1'), 'popper' => 'fileadmin/T3SB/Resources/Public/JS/popper.js', 'bootstrap' => 'fileadmin/T3SB/Resources/Public/JS/bootstrap.min.js', 'recaptcha' => 'https://www.google.com/recaptcha/api.js?hl=', 'recaptcha.' => array('external' => '1'), 'viewPortChecker' => 'EXT:template_motrona/Resources/Public/js/vendor/jquery.viewportchecker.min.js'), 'includeJSFooter.' => array('t3sblightbox' => 'fileadmin/T3SB/Resources/Public/JS/baguetteBox.min.js', 't3sblightbox.' => array('if.' => array('value' => '1', 'equals' => '1')), 'cookieconsentJs' => 'fileadmin/T3SB/Resources/Public/JS/cookieconsent.min.js', 'cookieconsentJs.' => array('if.' => array('isTrue' => '1')), 't3sbjqueryeasing' => 'fileadmin/T3SB/Resources/Public/JS/jquery.easing.min.js', 't3sbjqueryeasing.' => array('forceOnTop' => '1'), 'lazyload' => 'fileadmin/T3SB/Resources/Public/JS/lazyload.min.js', 'lazyload.' => array('if.' => array('isTrue' => '1')), 'picturefill' => 'fileadmin/T3SB/Resources/Public/JS/picturefill.min.js', 'picturefill.' => array('if.' => array('isTrue' => '0')), 'modernizr' => 'EXT:t3sbootstrap/Resources/Public/Contrib/Modernizr/modernizr.js', 'modernizr.' => array('if.' => array('isTrue' => '0')), 'navbarSlide' => 'EXT:t3sbootstrap/Resources/Public/Scripts/slideNavbar.js', 'navbarSlide.' => array('if.' => array('value' => 'slide', 'equals' => 'light')), 'jQueryDataTables' => 'EXT:template_motrona/Resources/Public/js/vendor/jquery.dataTables.min.js', 'jqueryRwdImageMap' => 'EXT:template_motrona/Resources/Public/js/vendor/jquery.rwdImageMaps.min.js', 'main' => 'EXT:template_motrona/Resources/Public/js/main.js'), 'footerData.' => array('TEXT', '61.' => array('value' => '<script src="/fileadmin/T3SB/Resources/Public/JS/fontawesome.min.js" data-auto-replace-svg="nest"></script>', 'if.' => array('value' => '1', 'equals' => '1')), 'TEXT', '62.' => array('value' => '<script src="/fileadmin/T3SB/FA5Pro/js/all.min.js" data-auto-replace-svg="nest"></script>', 'if.' => array('value' => '2', 'equals' => '1'))), 'jsInline.' => array('COA', '5.' => array('TEXT', '1.' => array('value' => ' // Cookieconsent - page.jsInline.5 window.addEventListener("load", function(){ const CC = window.CookieConsent; const cc = new CC({ type: "categories", theme: "edgeless", position: "bottom-left", palette: { popup: { background: "#fff", text: "#333" }, button: { background: "#4fa6c6", text: "#fff" }, highlight: { background: "#000000", text: "#0000ff" } }, content: { message: "Diese Website verwendet Cookies für eine optimale Nutzerfreundlichkeit.", dismiss: "Akzeptieren", deny: "Cookies ablehnen", allow: "Akzeptieren", link: "Mehr Informationen", href: "/de/?id=270", acceptall: "Alle akzeptieren", save: "Speichern", categories_Essential: "Funktional", categories_Statistics: "Performance", }, elements: { allow: \'<a id="t3s-allow" aria-label="allow cookies" tabindex="0" class="cc-btn cc-allow">{{allow}}</a>\', }, revokeBtn: "<div class=\'cc-revoke {{classes}}\'>Cookie Optionen</div>", // no popup on this pages blacklistPage: ["/de/?id=270"], }); cc.on( "statusChanged", ( ...args ) => location.reload() ) });'), 'if.' => array('isTrue' => '1')), 'TEXT', '1508480348.' => array('value' => 'function onRecaptchaSubmit() { document.querySelectorAll(\'[data-callback="onRecaptchaSubmit"]\')[0].form.submit(); return false; }', 'if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => 'function onRecaptchaSubmit() { document.querySelectorAll(\'[data-callback="onRecaptchaSubmit"]\')[0].form.submit(); return false; }')), '10.' => array('settings.' => array('navbarBreakpointWidth' => '576', 'winwidth' => '576', 'indexedsearch.' => array('targetPid' => '0'), 'expandedContent' => '0', 'fontawesome.' => array('pagetitle' => '1'), 'codesnippet' => '0', 'lazyLoad' => '1', 'lazyLoadThreshold' => '0', 'webp' => '0', 'pagebrowser.' => array('enable' => '0'), 'backToTopTitle' => 'to top', 'backToTopClass' => 'fa fa-chevron-circle-up fa-4x', 'backToTopForAllPages' => '0', 'gtm' => '', 'bgMediaQueries' => '2560, 1920, 1200, 992, 768, 576', 'navbar.' => array('image.' => array('defaultPath' => 'EXT:template_motrona/Resources/Public/Images/logo.png', 'width' => '241', 'height' => '40', 'altText' => 'Company Logo'), 'subdropdown.' => array('twoColumns' => '30'), 'searchboxLink' => '0', 'feUserName' => '0', 'sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200'), 'pages.' => array('override.' => array('smallColumns' => '', 'breakpoint' => '')), 'config.' => array('uid' => '1', 'company' => 'motrona GmbH', 'homepageUid' => '1', 'pageTitle' => '0', 'pageTitlealign' => 'center', 'pageTitlecontainer' => '0', 'pageTitleclass' => '0', 'metaEnable' => '0', 'metaValue' => '0', 'metaContainer' => '0', 'metaClass' => '0', 'metaText' => '0', 'navbarEnable' => 'light', 'navbarEntrylevel' => '0', 'navbarLevels' => '4', 'navbarExcludeuiduist' => '0', 'navbarIncludespacer' => '1', 'navbarJustify' => '0', 'navbarSectionmenu' => '0', 'navbarMegamenu' => '0', 'navbarHover' => '1', 'navbarClickableparent' => '1', 'navbarPlusicon' => '{$bootstrap.config.navbarPlusicon}', 'navbarDropdownAnimate' => '0', 'navbarBrand' => 'image', 'navbarImage' => '0', 'navbarColor' => 'white', 'navbarBackground' => '0', 'navbarTransparent' => '0', 'navbarContainer' => 'inside', 'navbarPlacement' => 'fixed-top', 'navbarAlignment' => 'right', 'navbarClass' => 'row main-navbar', 'navbarToggler' => 'left', 'navbarAnimatedtoggler' => '0', 'navbarBreakpoint' => 'sm', 'navbarOffcanvas' => '0', 'navbarHeight' => '132', 'navbarSearchbox' => '1', 'navbarLangmenu' => '1', 'navbarShrinkcolorschemes' => 'white', 'navbarShrinkcolor' => 'light', 'navbarRightMenuUidList' => '0', 'navbarExtraRow' => '1', 'navbarLangFlags' => '1', 'jumbotronEnable' => '1', 'jumbotronBgimage' => 'page', 'jumbotronFluid' => '1', 'jumbotronSlide' => '0', 'jumbotronPosition' => 'below', 'jumbotronContainer' => 'container', 'jumbotronContainerposition' => 'Inside', 'jumbotronClass' => '0', 'jumbotronCarouselInterval' => '500', 'jumbotronCarouselPause' => '', 'breadcrumbEnable' => '1', 'breadcrumbNotonrootpage' => '1', 'breadcrumbFaicon' => '1', 'breadcrumbCorner' => '1', 'breadcrumbBottom' => '0', 'breadcrumbPosition' => 'belowJum', 'breadcrumbContainer' => 'container', 'breadcrumbContainerposition' => 'outside', 'breadcrumbClass' => '0', 'sidebarEnable' => 'Sub', 'sidebarRightenable' => '0', 'sidebarLevels' => '4', 'sidebarEntrylevel' => '1', 'sidebarExcludeuiduist' => '0', 'sidebarIncludespacer' => '0', 'sidebarSectionMobile' => '0', 'footerEnable' => '1', 'footerFluid' => '0', 'footerSlide' => '0', 'footerSticky' => '0', 'footerContainer' => 'container', 'footerContainerposition' => 'Inside', 'footerClass' => '0', 'footerPid' => '466', 'expandedcontentEnabletop' => '0', 'expandedcontentSlidetop' => '0', 'expandedcontentContainerpositiontop' => '0', 'expandedcontentContainertop' => '0', 'expandedcontentClasstop' => '0', 'expandedcontentEnablebottom' => '0', 'expandedcontentSlidebottom' => '0', 'expandedcontentContainerpositionbottom' => '0', 'expandedcontentContainerbottom' => '0', 'expandedcontentClassbottom' => '0', 'generalRootline' => '0', 'contentOnlyOnRootpage' => '0', 'jqueryHeader' => '0', 'compress' => '1', 'disablePrefixComment' => '1', 'containerError' => '0', 'slideLeftAside' => '0', 'slideRightAside' => '0', 'pageContentExtraClass' => '', 'bodyExtraClass' => '', 'asideExtraClass' => '0', 'mainExtraClass' => '0', 'globalPaddingTop' => '{$bootstrap.config.globalPaddingTop}', 'stickyFooterExtraPadding' => '', 'contentMarginTop' => '0', 'loadingSpinner' => '0', 'loadingSpinnerColor' => 'primary', 'lightboxSelection' => '1', 'magnifying' => '0', 'sectionmenuAnchorOffset' => '29', 'sectionmenuScrollspyOffset' => '130', 'sectionmenuStickyTop' => '0', 'backgroundImageEnable' => '0', 'backgroundImageSlide' => '0', 'shrinkingNavPadding' => '1', 'sidebarMenuPosition' => 'above', 'langMenuWithFaIcon' => '1', 'subheaderColor' => 'primary', 'dateFormat' => 'd.m.Y', 'favicon' => '0', 'faLinkIcons' => '1', 'cardFlipperOnClick' => '0', 'lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0')), 'file' => 'EXT:t3sbootstrap/Resources/Private/Templates/Main.html', 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/', 'EXT:t3sbootstrap/Resources/Private/Partials/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Partials/Content/', ''), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/', 'EXT:t3sbootstrap/Resources/Private/Layouts/Content/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/', 'EXT:template_motrona/Resources/ext/t3sbootstrap/Private/Layouts/Content/', ''), 'variables.' => array('be_layout' => 'TEXT', 'be_layout.' => array('value.' => array('data' => 'pagelayout', 'required' => '1', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1', 'override' => '1', 'override.' => array('if.' => array('isTrue' => '1')))), 'as' => 'navbarMenu', 'if.' => array('isFalse.' => array('value' => '0'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '11.' => array('special' => 'list', 'special.' => array('value' => '0'), 'as' => 'navbarMenuRight', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '12.' => array('special' => 'browse', 'special.' => array('items' => 'nextsection|next', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browseNext', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '13.' => array('special' => 'browse', 'special.' => array('items' => 'prev|prevsection', 'items.' => array('prevnextToSection' => '1')), 'entryLevel' => '1', 'as' => 'browsePrev', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1', 'override' => '-1', 'override.' => array('if.' => array('equals' => '99', 'value' => '1')))), 'levels.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '4', 'override' => '4', 'override.' => array('if.' => array('isTrue' => '4')))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'includeSpacer.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0')))), 'as' => 'subNavigation', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => 'Sub')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Sub', 'value' => '0')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'as' => 'breadcrumb', 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('if.' => array('isTrue' => '1')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '{$bootstrap.config.bottom}')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', 'as' => 'languageNavigation', 'if.' => array('isTrue' => '1')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '0', 'override' => '0', 'override.' => array('if.' => array('isTrue' => '0'))))), 'excludeUidList.' => array('cObject' => 'TEXT', 'cObject.' => array('value' => '1')), 'levels' => '1', 'as' => 'metaNavigation', 'if.' => array('isTrue' => '0')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '60.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages'))))), 'as' => 'sectionMenu', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'where' => 'sectionIndex = 1 AND ( colPos = 0 OR colPos > 199 )', 'orderBy' => 'sorting', 'as' => 'content')), 'if.' => array('isTrue.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '0')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => 'Sub')), 'TEXT', '30.' => array('value' => '1', 'if.' => array('equals' => 'Section', 'value' => '0')), 'TEXT', '40.' => array('value' => '1', 'if.' => array('isTrue' => '0')))))), 'T3SBS\\T3sbootstrap\\DataProcessing\\LastModifiedProcessor', '70.' => array('lastModifiedContentElement' => '0', 'recentlyUpdatedContentElements' => '0', 'if.' => array('value' => '0', 'equals' => '1'), 'isTrue' => '0'), 'T3SBS\\T3sbootstrap\\DataProcessing\\ConfigProcessor', '90.' => array('webp' => '0', 'breakpoint.' => array('sm' => '576', 'md' => '768', 'lg' => '992', 'xl' => '1200', 'no' => '0')))), 'FLUIDTEMPLATE', 'config.' => array('contentObjectExceptionHandler' => '0')))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3conf/ext/vhs/Classes/Middleware/AssetInclusion.php line 20
class AssetInclusion implements MiddlewareInterface
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);

        $body = $response->getBody();
        $body->rewind();
        $contents = $body->getContents();
at FluidTYPO3\Vhs\Middleware\AssetInclusion->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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/www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$e8->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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 /www/htdocs/w012b6ef/motrona.com/releases/9/public/typo3_src-10.4.36/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();
});