Whoops, looks like something went wrong.

(1/1) Error

Call to a member function getUid() on null

in /var/www/vhosts/loctimize.com/var/cache/code/news/tx_news_controller_newscontroller.php line 833
        $demand->setActionAndClass(__METHOD__, __CLASS__);

        $this->addCalendarCss($this->settings['dated_news']['cssFile']);

        $applicationsCount = $this->applicationRepository->countReservedSlotsForNews($news->getUid());

        $news->setSlotsFree((int)$news->getSlots() - $applicationsCount);
        $slotoptions = [];
        $i = 1;
at GeorgRinger\News\Controller\NewsController->eventDetailAction(null, 1, null)
in /var/www/vhosts/loctimize.com/html/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 498
        }
        $validationResult = $this->arguments->validate();
        if (!$validationResult->hasErrors()) {
            $this->eventDispatcher->dispatch(new BeforeActionCallEvent(static::class, $this->actionMethodName, $preparedArguments));
            $actionResult = $this->{$this->actionMethodName}(...$preparedArguments);
        } else {
            $actionResult = $this->{$this->errorMethodName}();
        }

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

    /**
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /var/www/vhosts/loctimize.com/html/typo3conf/ext/news/Classes/Controller/NewsBaseController.php line 54
     */
    public function processRequest(RequestInterface $request, ResponseInterface $response)
    {
        try {
            parent::processRequest($request, $response);
        } catch (\Exception $exception) {
            $this->handleKnownExceptionsElseThrowAgain($exception);
        }
    }
at GeorgRinger\News\Controller\NewsBaseController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 89
                throw new InfiniteLoopException('Could not ultimately dispatch the request after ' . $dispatchLoopCount . ' iterations. Most probably, a @' . IgnoreValidation::class . ' annotation is missing on re-displaying a form with validation errors.', 1217839467);
            }
            $controller = $this->resolveController($request);
            try {
                $controller->processRequest($request, $response);
            } catch (StopActionException $ignoredException) {
            }
        }

at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 66
        }

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

    /**
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest()
in /var/www/vhosts/loctimize.com/html/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 /var/www/vhosts/loctimize.com/html/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' => 'News', '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' => 'News', 'pluginName' => 'Pi1')))
in /var/www/vhosts/loctimize.com/html/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' => 'News', 'pluginName' => 'Pi1'), '')
in /var/www/vhosts/loctimize.com/html/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' => 'News', 'pluginName' => 'Pi1'))
in /var/www/vhosts/loctimize.com/html/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' => 'News', 'pluginName' => 'Pi1'))
in /var/www/vhosts/loctimize.com/html/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' => 'News', 'pluginName' => 'Pi1'), 'tt_content.list.20.news_pi1')
in /var/www/vhosts/loctimize.com/html/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('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'sffilecollectiongallery_pifilecollectiongallery' => 'USER', 'sffilecollectiongallery_pifilecollectiongallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfFilecollectionGallery', 'pluginName' => 'Pifilecollectiongallery')), 'tt_content.list.20.news_pi1', 'news_pi1')
in /var/www/vhosts/loctimize.com/html/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' => 207, 'pid' => 199, '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' => 207, 'tstamp' => 1488466189, 'crdate' => 1488466163, 'cruser_id' => 4, 'editlock' => 0, 'hidden' => 0, 'sorting' => 96, 'CType' => 'list', 'header' => '[EN: Einzelansicht]', 'rowDescription' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => '0', 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'menu_type' => '0', 'list_type' => 'news_pi1', 'select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 1, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.orderBy"> <value index="vDEF"></value> </field> <field index="settings.orderDirection"> <value index="vDEF"></value> </field> <field index="settings.categories"> <value index="vDEF"></value> </field> <field index="settings.categoryConjunction"> <value index="vDEF"></value> </field> <field index="settings.includeSubCategories"> <value index="vDEF">0</value> </field> <field index="settings.archiveRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestrictionHigh"> <value index="vDEF"></value> </field> <field index="settings.topNewsRestriction"> <value index="vDEF"></value> </field> <field index="settings.startingpoint"> <value index="vDEF">11</value> </field> <field index="settings.recursive"> <value index="vDEF">250</value> </field> <field index="settings.eventRestriction"> <value index="vDEF"></value> </field> <field index="settings.singleNews"> <value index="vDEF"></value> </field> <field index="settings.previewHiddenRecords"> <value index="vDEF">2</value> </field> <field index="settings.dateField"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;eventDetail</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF"></value> </field> <field index="settings.listPid"> <value index="vDEF"></value> </field> <field index="settings.backPid"> <value index="vDEF"></value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.tags"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.itemsPerPage"> <value index="vDEF"></value> </field> <field index="settings.topNewsFirst"> <value index="vDEF">0</value> </field> <field index="settings.excludeAlreadyDisplayedNews"> <value index="vDEF">0</value> </field> <field index="settings.disableOverrideDemand"> <value index="vDEF">0</value> </field> <field index="settings.applicationPid"> <value index="vDEF"></value> </field> <field index="settings.confirmationPid"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="template"> <language index="lDEF"> <field index="settings.media.maxWidth"> <value index="vDEF"></value> </field> <field index="settings.media.maxHeight"> <value index="vDEF"></value> </field> <field index="settings.cropMaxCharacters"> <value index="vDEF"></value> </field> <field index="settings.templateLayout"> <value index="vDEF">4</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 207, 'l18n_diffsource' => 'a:20:{s:5:"CType";s:4:"list";s:6:"colPos";s:1:"0";s:16:"sys_language_uid";s:1:"0";s:6:"header";s:0:"";s:13:"header_layout";s:1:"1";s:15:"header_position";s:0:"";s:11:"header_link";s:0:"";s:9:"list_type";s:8:"news_pi1";s:11:"pi_flexform";s:4758:"<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.orderBy"> <value index="vDEF"></value> </field> <field index="settings.orderDirection"> <value index="vDEF"></value> </field> <field index="settings.categories"> <value index="vDEF"></value> </field> <field index="settings.categoryConjunction"> <value index="vDEF"></value> </field> <field index="settings.includeSubCategories"> <value index="vDEF">0</value> </field> <field index="settings.archiveRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestrictionHigh"> <value index="vDEF"></value> </field> <field index="settings.topNewsRestriction"> <value index="vDEF"></value> </field> <field index="settings.startingpoint"> <value index="vDEF">11</value> </field> <field index="settings.recursive"> <value index="vDEF">250</value> </field> <field index="settings.eventRestriction"> <value index="vDEF"></value> </field> <field index="settings.singleNews"> <value index="vDEF"></value> </field> <field index="settings.previewHiddenRecords"> <value index="vDEF">2</value> </field> <field index="settings.dateField"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;eventDetail</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF"></value> </field> <field index="settings.listPid"> <value index="vDEF"></value> </field> <field index="settings.backPid"> <value index="vDEF"></value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.tags"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.itemsPerPage"> <value index="vDEF"></value> </field> <field index="settings.topNewsFirst"> <value index="vDEF">0</value> </field> <field index="settings.excludeAlreadyDisplayedNews"> <value index="vDEF">0</value> </field> <field index="settings.disableOverrideDemand"> <value index="vDEF">0</value> </field> <field index="settings.applicationPid"> <value index="vDEF"></value> </field> <field index="settings.confirmationPid"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="template"> <language index="lDEF"> <field index="settings.media.maxWidth"> <value index="vDEF"></value> </field> <field index="settings.media.maxHeight"> <value index="vDEF"></value> </field> <field index="settings.cropMaxCharacters"> <value index="vDEF"></value> </field> <field index="settings.templateLayout"> <value index="vDEF">4</value> </field> </language> </sheet> </data></T3FlexForms>";s:6:"layout";s:1:"0";s:13:"section_frame";s:1:"0";s:6:"hidden";s:1:"0";s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";s:0:"";s:8:"editlock";s:1:"0";s:14:"rowDescription";s:0:"";s:10:"categories";s:1:"0";s:25:"tx_gridelements_container";s:1:"0";s:11:"l18n_parent";s:1:"0";}', 'selected_categories' => '', 'category_field' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'categories' => 0, 'header_position' => '', 'section_frame' => 0, 'icon' => '', 'icon_position' => '', 'icon_size' => 'default', 'icon_type' => 'default', 'icon_color' => '#FFFFFF', 'icon_background' => '#333333', 'external_media_source' => '', 'external_media_ratio' => '', 'tx_bootstrappackage_carousel_item' => 0, 'tx_bootstrappackage_accordion_item' => 0, 'tx_bootstrappackage_tab_item' => 0, 'tx_news_related_news' => 0, 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'tx_dce_dce' => 0, 'tx_dce_index' => null, 'tx_dce_new_container' => 0, 'teaser' => null, 'quote_source' => '', 'quote_link' => '', 'l10n_source' => 0, 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'filelink_sorting_direction' => '', 'table_class' => '', 'panel_class' => 'default', 'file_folder' => null, 'icon_set' => '', 'icon_file' => 0, 'tx_bootstrappackage_card_group_item' => 0, 'tx_bootstrappackage_icon_group_item' => 0, 'tx_bootstrappackage_timeline_item' => 0, 'background_color_class' => '', 'background_image' => 0, 'gridelements_shortcut_page_order_by' => 0, 'l10nmgr_language_restriction' => 0, 'readmore_label' => '', 'background_image_options' => null, '_LOCALIZED_UID' => 2355), 'typoscriptObjectPath' => 'tt_content.list.20.news_pi1', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/loctimize.com/var/cache/code/fluid_template/Standard_action_list_55c3eeaf0fed6914b785d2f0d4b72222cd1606e3.php line 68
$array5 = array (
);$arguments1['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array5);
$arguments1['table'] = 'tt_content';
$renderChildrenClosure2 = ($arguments1['data'] !== null) ? function() use ($arguments1) { return $arguments1['data']; } : $renderChildrenClosure2;
$output0 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '

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

$output121 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments139, $renderChildrenClosure140, $renderingContext);

$output121 .= '
        </div>
    ';
at layout_Default_html_67baa9f9ea8ee104279fb806be6be5ddd4436d10->{closure}()
in /var/www/vhosts/loctimize.com/var/cache/code/fluid_template/layout_Default_html_67baa9f9ea8ee104279fb806be6be5ddd4436d10.php line 1133
$output121 .= '
        </div>
    ';
return $output121;
});
}
}, array($arguments27));

$output0 .= '
at layout_Default_html_67baa9f9ea8ee104279fb806be6be5ddd4436d10->{closure}(array('expression' => ' default'))
in /var/www/vhosts/loctimize.com/var/cache/code/fluid_template/layout_Default_html_67baa9f9ea8ee104279fb806be6be5ddd4436d10.php line 1135
    ';
return $output121;
});
}
}, array($arguments27));

$output0 .= '

';
at layout_Default_html_67baa9f9ea8ee104279fb806be6be5ddd4436d10->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/loctimize.com/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 200
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /var/www/vhosts/loctimize.com/html/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 /var/www/vhosts/loctimize.com/html/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 108

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'List', 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '1509614342.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532626753.' => array('fieldName' => 'background_image_options')), 'variables.' => array('backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default')), 'settings.' => array('header.' => array('defaultHeaderType' => '2', 'class' => 'element-header', 'date.' => array('format' => '%B %e, %Y')), 'subheader.' => array('class' => 'element-subheader'), 'lightbox.' => array('cssClass' => 'lightbox', 'prefix' => 'lightbox-group', 'image.' => array('maxHeight' => '1200', 'maxWidth' => '1200')), 'media.' => array('additionalConfig.' => array('autoplay' => '0', 'controls' => '1', 'loop' => '0', 'enablejsapi' => '1', 'showinfo' => '0', 'relatedVideos' => '0', 'modestbranding' => '0')), 'gallery.' => array('columns.' => array('1.' => array('class' => 'gallery-item-size-1'), '2.' => array('class' => 'gallery-item-size-2', 'multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1200', 'width' => '1100'), 'large.' => array('breakpoint' => '992', 'width' => '920'), 'medium.' => array('breakpoint' => '768', 'width' => '680'), 'small.' => array('breakpoint' => '576', 'width' => '500'), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '374')), 'backendlayout.' => array('2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '21.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '22.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'top.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'bottom.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))))), 'menuthumbnail.' => array('title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '80')), 'menucard.' => array('icon.' => array('enable' => '0', 'height' => '32', 'width' => '32c'), 'title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '100'), 'abstract.' => array('crop' => '250')), 'texticon.' => array('icon.' => array('default.' => array('height' => '32', 'width' => '32'), 'medium.' => array('height' => '48', 'width' => '48'), 'large.' => array('height' => '64', 'width' => '64'), 'awesome.' => array('height' => '80', 'width' => '80'))), 'timeline.' => array('date.' => array('format' => '%B %e, %Y - %H:%M')), 'uploads.' => array('preview.' => array('height' => '100c', 'width' => '100c'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'sffilecollectiongallery_pifilecollectiongallery' => 'USER', 'sffilecollectiongallery_pifilecollectiongallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfFilecollectionGallery', 'pluginName' => 'Pifilecollectiongallery'))))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'List', 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '1509614342.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532626753.' => array('fieldName' => 'background_image_options')), 'variables.' => array('backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default')), 'settings.' => array('header.' => array('defaultHeaderType' => '2', 'class' => 'element-header', 'date.' => array('format' => '%B %e, %Y')), 'subheader.' => array('class' => 'element-subheader'), 'lightbox.' => array('cssClass' => 'lightbox', 'prefix' => 'lightbox-group', 'image.' => array('maxHeight' => '1200', 'maxWidth' => '1200')), 'media.' => array('additionalConfig.' => array('autoplay' => '0', 'controls' => '1', 'loop' => '0', 'enablejsapi' => '1', 'showinfo' => '0', 'relatedVideos' => '0', 'modestbranding' => '0')), 'gallery.' => array('columns.' => array('1.' => array('class' => 'gallery-item-size-1'), '2.' => array('class' => 'gallery-item-size-2', 'multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1200', 'width' => '1100'), 'large.' => array('breakpoint' => '992', 'width' => '920'), 'medium.' => array('breakpoint' => '768', 'width' => '680'), 'small.' => array('breakpoint' => '576', 'width' => '500'), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '374')), 'backendlayout.' => array('2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '21.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '22.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'top.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'bottom.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))))), 'menuthumbnail.' => array('title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '80')), 'menucard.' => array('icon.' => array('enable' => '0', 'height' => '32', 'width' => '32c'), 'title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '100'), 'abstract.' => array('crop' => '250')), 'texticon.' => array('icon.' => array('default.' => array('height' => '32', 'width' => '32'), 'medium.' => array('height' => '48', 'width' => '48'), 'large.' => array('height' => '64', 'width' => '64'), 'awesome.' => array('height' => '80', 'width' => '80'))), 'timeline.' => array('date.' => array('format' => '%B %e, %Y - %H:%M')), 'uploads.' => array('preview.' => array('height' => '100c', 'width' => '100c'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'sffilecollectiongallery_pifilecollectiongallery' => 'USER', 'sffilecollectiongallery_pifilecollectiongallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfFilecollectionGallery', 'pluginName' => 'Pifilecollectiongallery'))))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '1509614342.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532626753.' => array('fieldName' => 'background_image_options')), 'variables.' => array('backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default')), 'settings.' => array('header.' => array('defaultHeaderType' => '2', 'class' => 'element-header', 'date.' => array('format' => '%B %e, %Y')), 'subheader.' => array('class' => 'element-subheader'), 'lightbox.' => array('cssClass' => 'lightbox', 'prefix' => 'lightbox-group', 'image.' => array('maxHeight' => '1200', 'maxWidth' => '1200')), 'media.' => array('additionalConfig.' => array('autoplay' => '0', 'controls' => '1', 'loop' => '0', 'enablejsapi' => '1', 'showinfo' => '0', 'relatedVideos' => '0', 'modestbranding' => '0')), 'gallery.' => array('columns.' => array('1.' => array('class' => 'gallery-item-size-1'), '2.' => array('class' => 'gallery-item-size-2', 'multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1200', 'width' => '1100'), 'large.' => array('breakpoint' => '992', 'width' => '920'), 'medium.' => array('breakpoint' => '768', 'width' => '680'), 'small.' => array('breakpoint' => '576', 'width' => '500'), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '374')), 'backendlayout.' => array('2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '21.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '22.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'top.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'bottom.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))))), 'menuthumbnail.' => array('title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '80')), 'menucard.' => array('icon.' => array('enable' => '0', 'height' => '32', 'width' => '32c'), 'title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '100'), 'abstract.' => array('crop' => '250')), 'texticon.' => array('icon.' => array('default.' => array('height' => '32', 'width' => '32'), 'medium.' => array('height' => '48', 'width' => '48'), 'large.' => array('height' => '64', 'width' => '64'), 'awesome.' => array('height' => '80', 'width' => '80'))), 'timeline.' => array('date.' => array('format' => '%B %e, %Y - %H:%M')), 'uploads.' => array('preview.' => array('height' => '100c', 'width' => '100c'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'sffilecollectiongallery_pifilecollectiongallery' => 'USER', 'sffilecollectiongallery_pifilecollectiongallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfFilecollectionGallery', 'pluginName' => 'Pifilecollectiongallery'))), 'lib.contentElement')
in /var/www/vhosts/loctimize.com/html/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '1509614342.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532626753.' => array('fieldName' => 'background_image_options')), 'variables.' => array('backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default')), 'settings.' => array('header.' => array('defaultHeaderType' => '2', 'class' => 'element-header', 'date.' => array('format' => '%B %e, %Y')), 'subheader.' => array('class' => 'element-subheader'), 'lightbox.' => array('cssClass' => 'lightbox', 'prefix' => 'lightbox-group', 'image.' => array('maxHeight' => '1200', 'maxWidth' => '1200')), 'media.' => array('additionalConfig.' => array('autoplay' => '0', 'controls' => '1', 'loop' => '0', 'enablejsapi' => '1', 'showinfo' => '0', 'relatedVideos' => '0', 'modestbranding' => '0')), 'gallery.' => array('columns.' => array('1.' => array('class' => 'gallery-item-size-1'), '2.' => array('class' => 'gallery-item-size-2', 'multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1200', 'width' => '1100'), 'large.' => array('breakpoint' => '992', 'width' => '920'), 'medium.' => array('breakpoint' => '768', 'width' => '680'), 'small.' => array('breakpoint' => '576', 'width' => '500'), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '374')), 'backendlayout.' => array('2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '21.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '22.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'top.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'bottom.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))))), 'menuthumbnail.' => array('title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '80')), 'menucard.' => array('icon.' => array('enable' => '0', 'height' => '32', 'width' => '32c'), 'title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '100'), 'abstract.' => array('crop' => '250')), 'texticon.' => array('icon.' => array('default.' => array('height' => '32', 'width' => '32'), 'medium.' => array('height' => '48', 'width' => '48'), 'large.' => array('height' => '64', 'width' => '64'), 'awesome.' => array('height' => '80', 'width' => '80'))), 'timeline.' => array('date.' => array('format' => '%B %e, %Y - %H:%M')), 'uploads.' => array('preview.' => array('height' => '100c', 'width' => '100c'))), '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'sffilecollectiongallery_pifilecollectiongallery' => 'USER', 'sffilecollectiongallery_pifilecollectiongallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfFilecollectionGallery', 'pluginName' => 'Pifilecollectiongallery'))), 'list')
in /var/www/vhosts/loctimize.com/html/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'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'sffilecollectiongallery_pifilecollectiongallery' => 'USER', 'sffilecollectiongallery_pifilecollectiongallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfFilecollectionGallery', 'pluginName' => 'Pifilecollectiongallery')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), '11.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="container"><div class="row grid"><div class="col-xs-12">|</div></div></div>')), 'wrap' => '<div class="grid">|</div>', 'wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '<div class="grid">|</div>'), 'TEXT', '60.' => array('value' => '<div class="grid versprechen">|</div>'), 'TEXT', '61.' => array('value' => '<div class="grid highlight">|</div>'), 'TEXT', '62.' => array('value' => '<div class="grid gruen">|</div>'), 'TEXT', '63.' => array('value' => '<div class="grid lila">|</div>'), 'TEXT', '64.' => array('value' => '<div class="grid blau">|</div>'), 'TEXT', '65.' => array('value' => '<div class="grid gelb">|</div>'), 'TEXT', '66.' => array('value' => '<div class="grid grau">|</div>'), 'TEXT', '67.' => array('value' => '<div class="grid noPaddingTop">|</div>')))), '2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '5.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '9.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '5.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>')), 'wrap' => '<div class="row fivecolumns grid">|</div>'), '7.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '10.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('11.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="container"><div class="row grid"><div class="col-xs-12">|</div></div></div>')), 'wrap' => '<div class="grid">|</div>', 'wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '<div class="grid">|</div>'), 'TEXT', '60.' => array('value' => '<div class="grid versprechen">|</div>'), 'TEXT', '61.' => array('value' => '<div class="grid highlight">|</div>'), 'TEXT', '62.' => array('value' => '<div class="grid gruen">|</div>'), 'TEXT', '63.' => array('value' => '<div class="grid lila">|</div>'), 'TEXT', '64.' => array('value' => '<div class="grid blau">|</div>'), 'TEXT', '65.' => array('value' => '<div class="grid gelb">|</div>'), 'TEXT', '66.' => array('value' => '<div class="grid grau">|</div>'), 'TEXT', '67.' => array('value' => '<div class="grid noPaddingTop">|</div>')))), '2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '5.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '9.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '5.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>')), 'wrap' => '<div class="row fivecolumns grid">|</div>'), '7.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '10.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'), 'default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'mailform.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'menu.' => array('thumbnail_list.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'default.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'categorized_content.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'categorized_pages.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '1.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '4.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '7.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '5.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '6.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '3.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '2.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '8.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/'))), 'loctimize_cookies' => 'COA', 'loctimize_cookies.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Cookies', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_counter' => 'COA', 'loctimize_counter.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Counter', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_logoslider' => '< lib.contentElement', 'loctimize_logoslider.' => array('templateName' => 'LogoSlider', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('as' => 'LogoSliderItems', 'references.' => array('fieldName' => 'image', 'table' => 'tt_content')))), 'loctimize_ceteaser' => 'COA', 'loctimize_ceteaser.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Teaser', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_cetestimonial' => 'COA', 'loctimize_cetestimonial.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Testimonial', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_totop' => 'COA', 'loctimize_totop.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Totop', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'audio' => '< lib.contentElement', 'audio.' => array('templateName' => 'Audio', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'csv' => '< lib.contentElement', 'csv.' => array('templateName' => 'Csv', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\CsvFileProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'maximumColumns.' => array('field' => 'cols')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'media' => '< lib.contentElement', 'media.' => array('templateName' => 'Media', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('allowedFileExtensions' => 'youtube, vimeo'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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 tt_content.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=\'|\''), 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', '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'))))), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'quote' => '< lib.contentElement', 'quote.' => array('templateName' => 'Quote'), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'), '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'))))), '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')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'social_links' => '< lib.contentElement', 'social_links.' => array('templateName' => 'SocialLinks', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'socialmedia', 'key' => 'page.theme.socialmedia'))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'as' => 'table')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'textcolumn' => '< lib.contentElement', 'textcolumn.' => array('templateName' => 'Textcolumn'), 'textteaser' => '< lib.contentElement', 'textteaser.' => array('templateName' => 'Textteaser'), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextpicBelow'), 'TEXT', '25.' => array('value' => 'TextpicRight'), 'TEXT', '26.' => array('value' => 'TextpicLeft'), 'TEXT', '125.' => array('value' => 'TextpicCenteredRight'), 'TEXT', '126.' => array('value' => 'TextpicCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextpicAbove')))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextmediaBelow'), 'TEXT', '25.' => array('value' => 'TextmediaRight'), 'TEXT', '26.' => array('value' => 'TextmediaLeft'), 'TEXT', '125.' => array('value' => 'TextmediaCenteredRight'), 'TEXT', '126.' => array('value' => 'TextmediaCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextmediaAbove')))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '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')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'accordion' => '< lib.contentElement', 'accordion.' => array('templateName' => 'Accordion', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_accordion_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'card_group' => '< lib.contentElement', 'card_group.' => array('templateName' => 'CardGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_card_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'link_icon'), 'as' => 'linkIcon'))))), 'carousel' => '< lib.contentElement', 'carousel.' => array('templateName' => 'Carousel', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'carousel_small' => '< lib.contentElement', 'carousel_small.' => array('templateName' => 'CarouselSmall', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'carousel_fullscreen' => '< lib.contentElement', 'carousel_fullscreen.' => array('templateName' => 'CarouselFullscreen', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'external_media' => '< lib.contentElement', 'external_media.' => array('templateName' => 'ExternalMedia', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'icon_group' => '< lib.contentElement', 'icon_group.' => array('templateName' => 'IconGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_icon_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'))))), 'listgroup' => '< lib.contentElement', 'listgroup.' => array('templateName' => 'ListGroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'items')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'panel' => '< lib.contentElement', 'panel.' => array('templateName' => 'Panel', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'tab' => '< lib.contentElement', 'tab.' => array('templateName' => 'Tab', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_tab_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'texticon' => '< lib.contentElement', 'texticon.' => array('templateName' => 'Texticon', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'icon', 'if.' => array('isFalse.' => array('field' => 'icon_set'))), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '20.' => array('files.' => array('0.' => array('field' => 'icon')), 'as' => 'icon', 'if.' => array('isTrue.' => array('field' => 'icon_set')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'timeline' => '< lib.contentElement', 'timeline.' => array('templateName' => 'Timeline', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_bootstrappackage_timeline_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'flexform:pi_flexform:sorting', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => 'date desc'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'))))), 'menu_card_dir' => '< lib.contentElement', 'menu_card_dir.' => array('templateName' => 'MenuCardDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_card_list' => '< lib.contentElement', 'menu_card_list.' => array('templateName' => 'MenuCardList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_dir' => '< lib.contentElement', 'menu_thumbnail_dir.' => array('templateName' => 'MenuThumbnailDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_list' => '< lib.contentElement', 'menu_thumbnail_list.' => array('templateName' => 'MenuThumbnailList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement')))))
in /var/www/vhosts/loctimize.com/html/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'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'sffilecollectiongallery_pifilecollectiongallery' => 'USER', 'sffilecollectiongallery_pifilecollectiongallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfFilecollectionGallery', 'pluginName' => 'Pifilecollectiongallery')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), '11.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="container"><div class="row grid"><div class="col-xs-12">|</div></div></div>')), 'wrap' => '<div class="grid">|</div>', 'wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '<div class="grid">|</div>'), 'TEXT', '60.' => array('value' => '<div class="grid versprechen">|</div>'), 'TEXT', '61.' => array('value' => '<div class="grid highlight">|</div>'), 'TEXT', '62.' => array('value' => '<div class="grid gruen">|</div>'), 'TEXT', '63.' => array('value' => '<div class="grid lila">|</div>'), 'TEXT', '64.' => array('value' => '<div class="grid blau">|</div>'), 'TEXT', '65.' => array('value' => '<div class="grid gelb">|</div>'), 'TEXT', '66.' => array('value' => '<div class="grid grau">|</div>'), 'TEXT', '67.' => array('value' => '<div class="grid noPaddingTop">|</div>')))), '2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '5.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '9.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '5.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>')), 'wrap' => '<div class="row fivecolumns grid">|</div>'), '7.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '10.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('11.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="container"><div class="row grid"><div class="col-xs-12">|</div></div></div>')), 'wrap' => '<div class="grid">|</div>', 'wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '<div class="grid">|</div>'), 'TEXT', '60.' => array('value' => '<div class="grid versprechen">|</div>'), 'TEXT', '61.' => array('value' => '<div class="grid highlight">|</div>'), 'TEXT', '62.' => array('value' => '<div class="grid gruen">|</div>'), 'TEXT', '63.' => array('value' => '<div class="grid lila">|</div>'), 'TEXT', '64.' => array('value' => '<div class="grid blau">|</div>'), 'TEXT', '65.' => array('value' => '<div class="grid gelb">|</div>'), 'TEXT', '66.' => array('value' => '<div class="grid grau">|</div>'), 'TEXT', '67.' => array('value' => '<div class="grid noPaddingTop">|</div>')))), '2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '5.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '9.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '5.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>')), 'wrap' => '<div class="row fivecolumns grid">|</div>'), '7.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '10.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'), 'default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'mailform.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'menu.' => array('thumbnail_list.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'default.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'categorized_content.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'categorized_pages.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '1.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '4.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '7.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '5.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '6.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '3.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '2.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '8.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/'))), 'loctimize_cookies' => 'COA', 'loctimize_cookies.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Cookies', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_counter' => 'COA', 'loctimize_counter.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Counter', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_logoslider' => '< lib.contentElement', 'loctimize_logoslider.' => array('templateName' => 'LogoSlider', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('as' => 'LogoSliderItems', 'references.' => array('fieldName' => 'image', 'table' => 'tt_content')))), 'loctimize_ceteaser' => 'COA', 'loctimize_ceteaser.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Teaser', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_cetestimonial' => 'COA', 'loctimize_cetestimonial.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Testimonial', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_totop' => 'COA', 'loctimize_totop.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Totop', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'audio' => '< lib.contentElement', 'audio.' => array('templateName' => 'Audio', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'csv' => '< lib.contentElement', 'csv.' => array('templateName' => 'Csv', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\CsvFileProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'maximumColumns.' => array('field' => 'cols')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'media' => '< lib.contentElement', 'media.' => array('templateName' => 'Media', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('allowedFileExtensions' => 'youtube, vimeo'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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 tt_content.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=\'|\''), 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', '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'))))), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'quote' => '< lib.contentElement', 'quote.' => array('templateName' => 'Quote'), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'), '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'))))), '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')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'social_links' => '< lib.contentElement', 'social_links.' => array('templateName' => 'SocialLinks', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'socialmedia', 'key' => 'page.theme.socialmedia'))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'as' => 'table')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'textcolumn' => '< lib.contentElement', 'textcolumn.' => array('templateName' => 'Textcolumn'), 'textteaser' => '< lib.contentElement', 'textteaser.' => array('templateName' => 'Textteaser'), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextpicBelow'), 'TEXT', '25.' => array('value' => 'TextpicRight'), 'TEXT', '26.' => array('value' => 'TextpicLeft'), 'TEXT', '125.' => array('value' => 'TextpicCenteredRight'), 'TEXT', '126.' => array('value' => 'TextpicCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextpicAbove')))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextmediaBelow'), 'TEXT', '25.' => array('value' => 'TextmediaRight'), 'TEXT', '26.' => array('value' => 'TextmediaLeft'), 'TEXT', '125.' => array('value' => 'TextmediaCenteredRight'), 'TEXT', '126.' => array('value' => 'TextmediaCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextmediaAbove')))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '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')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'accordion' => '< lib.contentElement', 'accordion.' => array('templateName' => 'Accordion', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_accordion_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'card_group' => '< lib.contentElement', 'card_group.' => array('templateName' => 'CardGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_card_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'link_icon'), 'as' => 'linkIcon'))))), 'carousel' => '< lib.contentElement', 'carousel.' => array('templateName' => 'Carousel', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'carousel_small' => '< lib.contentElement', 'carousel_small.' => array('templateName' => 'CarouselSmall', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'carousel_fullscreen' => '< lib.contentElement', 'carousel_fullscreen.' => array('templateName' => 'CarouselFullscreen', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'external_media' => '< lib.contentElement', 'external_media.' => array('templateName' => 'ExternalMedia', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'icon_group' => '< lib.contentElement', 'icon_group.' => array('templateName' => 'IconGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_icon_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'))))), 'listgroup' => '< lib.contentElement', 'listgroup.' => array('templateName' => 'ListGroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'items')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'panel' => '< lib.contentElement', 'panel.' => array('templateName' => 'Panel', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'tab' => '< lib.contentElement', 'tab.' => array('templateName' => 'Tab', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_tab_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'texticon' => '< lib.contentElement', 'texticon.' => array('templateName' => 'Texticon', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'icon', 'if.' => array('isFalse.' => array('field' => 'icon_set'))), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '20.' => array('files.' => array('0.' => array('field' => 'icon')), 'as' => 'icon', 'if.' => array('isTrue.' => array('field' => 'icon_set')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'timeline' => '< lib.contentElement', 'timeline.' => array('templateName' => 'Timeline', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_bootstrappackage_timeline_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'flexform:pi_flexform:sorting', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => 'date desc'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'))))), 'menu_card_dir' => '< lib.contentElement', 'menu_card_dir.' => array('templateName' => 'MenuCardDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_card_list' => '< lib.contentElement', 'menu_card_list.' => array('templateName' => 'MenuCardList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_dir' => '< lib.contentElement', 'menu_thumbnail_dir.' => array('templateName' => 'MenuThumbnailDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_list' => '< lib.contentElement', 'menu_thumbnail_list.' => array('templateName' => 'MenuThumbnailList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement')))))
in /var/www/vhosts/loctimize.com/html/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'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'sffilecollectiongallery_pifilecollectiongallery' => 'USER', 'sffilecollectiongallery_pifilecollectiongallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfFilecollectionGallery', 'pluginName' => 'Pifilecollectiongallery')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), '11.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="container"><div class="row grid"><div class="col-xs-12">|</div></div></div>')), 'wrap' => '<div class="grid">|</div>', 'wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '<div class="grid">|</div>'), 'TEXT', '60.' => array('value' => '<div class="grid versprechen">|</div>'), 'TEXT', '61.' => array('value' => '<div class="grid highlight">|</div>'), 'TEXT', '62.' => array('value' => '<div class="grid gruen">|</div>'), 'TEXT', '63.' => array('value' => '<div class="grid lila">|</div>'), 'TEXT', '64.' => array('value' => '<div class="grid blau">|</div>'), 'TEXT', '65.' => array('value' => '<div class="grid gelb">|</div>'), 'TEXT', '66.' => array('value' => '<div class="grid grau">|</div>'), 'TEXT', '67.' => array('value' => '<div class="grid noPaddingTop">|</div>')))), '2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '5.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '9.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '5.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>')), 'wrap' => '<div class="row fivecolumns grid">|</div>'), '7.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '10.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('11.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="container"><div class="row grid"><div class="col-xs-12">|</div></div></div>')), 'wrap' => '<div class="grid">|</div>', 'wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '<div class="grid">|</div>'), 'TEXT', '60.' => array('value' => '<div class="grid versprechen">|</div>'), 'TEXT', '61.' => array('value' => '<div class="grid highlight">|</div>'), 'TEXT', '62.' => array('value' => '<div class="grid gruen">|</div>'), 'TEXT', '63.' => array('value' => '<div class="grid lila">|</div>'), 'TEXT', '64.' => array('value' => '<div class="grid blau">|</div>'), 'TEXT', '65.' => array('value' => '<div class="grid gelb">|</div>'), 'TEXT', '66.' => array('value' => '<div class="grid grau">|</div>'), 'TEXT', '67.' => array('value' => '<div class="grid noPaddingTop">|</div>')))), '2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '5.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '9.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '5.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>')), 'wrap' => '<div class="row fivecolumns grid">|</div>'), '7.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '10.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'), 'default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'mailform.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'menu.' => array('thumbnail_list.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'default.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'categorized_content.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'categorized_pages.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '1.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '4.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '7.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '5.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '6.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '3.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '2.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '8.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/'))), 'loctimize_cookies' => 'COA', 'loctimize_cookies.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Cookies', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_counter' => 'COA', 'loctimize_counter.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Counter', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_logoslider' => '< lib.contentElement', 'loctimize_logoslider.' => array('templateName' => 'LogoSlider', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('as' => 'LogoSliderItems', 'references.' => array('fieldName' => 'image', 'table' => 'tt_content')))), 'loctimize_ceteaser' => 'COA', 'loctimize_ceteaser.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Teaser', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_cetestimonial' => 'COA', 'loctimize_cetestimonial.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Testimonial', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_totop' => 'COA', 'loctimize_totop.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Totop', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'audio' => '< lib.contentElement', 'audio.' => array('templateName' => 'Audio', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'csv' => '< lib.contentElement', 'csv.' => array('templateName' => 'Csv', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\CsvFileProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'maximumColumns.' => array('field' => 'cols')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'media' => '< lib.contentElement', 'media.' => array('templateName' => 'Media', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('allowedFileExtensions' => 'youtube, vimeo'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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 tt_content.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=\'|\''), 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', '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'))))), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'quote' => '< lib.contentElement', 'quote.' => array('templateName' => 'Quote'), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'), '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'))))), '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')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'social_links' => '< lib.contentElement', 'social_links.' => array('templateName' => 'SocialLinks', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'socialmedia', 'key' => 'page.theme.socialmedia'))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'as' => 'table')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'textcolumn' => '< lib.contentElement', 'textcolumn.' => array('templateName' => 'Textcolumn'), 'textteaser' => '< lib.contentElement', 'textteaser.' => array('templateName' => 'Textteaser'), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextpicBelow'), 'TEXT', '25.' => array('value' => 'TextpicRight'), 'TEXT', '26.' => array('value' => 'TextpicLeft'), 'TEXT', '125.' => array('value' => 'TextpicCenteredRight'), 'TEXT', '126.' => array('value' => 'TextpicCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextpicAbove')))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextmediaBelow'), 'TEXT', '25.' => array('value' => 'TextmediaRight'), 'TEXT', '26.' => array('value' => 'TextmediaLeft'), 'TEXT', '125.' => array('value' => 'TextmediaCenteredRight'), 'TEXT', '126.' => array('value' => 'TextmediaCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextmediaAbove')))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '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')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'accordion' => '< lib.contentElement', 'accordion.' => array('templateName' => 'Accordion', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_accordion_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'card_group' => '< lib.contentElement', 'card_group.' => array('templateName' => 'CardGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_card_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'link_icon'), 'as' => 'linkIcon'))))), 'carousel' => '< lib.contentElement', 'carousel.' => array('templateName' => 'Carousel', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'carousel_small' => '< lib.contentElement', 'carousel_small.' => array('templateName' => 'CarouselSmall', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'carousel_fullscreen' => '< lib.contentElement', 'carousel_fullscreen.' => array('templateName' => 'CarouselFullscreen', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'external_media' => '< lib.contentElement', 'external_media.' => array('templateName' => 'ExternalMedia', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'icon_group' => '< lib.contentElement', 'icon_group.' => array('templateName' => 'IconGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_icon_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'))))), 'listgroup' => '< lib.contentElement', 'listgroup.' => array('templateName' => 'ListGroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'items')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'panel' => '< lib.contentElement', 'panel.' => array('templateName' => 'Panel', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'tab' => '< lib.contentElement', 'tab.' => array('templateName' => 'Tab', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_tab_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'texticon' => '< lib.contentElement', 'texticon.' => array('templateName' => 'Texticon', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'icon', 'if.' => array('isFalse.' => array('field' => 'icon_set'))), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '20.' => array('files.' => array('0.' => array('field' => 'icon')), 'as' => 'icon', 'if.' => array('isTrue.' => array('field' => 'icon_set')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'timeline' => '< lib.contentElement', 'timeline.' => array('templateName' => 'Timeline', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_bootstrappackage_timeline_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'flexform:pi_flexform:sorting', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => 'date desc'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'))))), 'menu_card_dir' => '< lib.contentElement', 'menu_card_dir.' => array('templateName' => 'MenuCardDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_card_list' => '< lib.contentElement', 'menu_card_list.' => array('templateName' => 'MenuCardList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_dir' => '< lib.contentElement', 'menu_thumbnail_dir.' => array('templateName' => 'MenuThumbnailDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_list' => '< lib.contentElement', 'menu_thumbnail_list.' => array('templateName' => 'MenuThumbnailList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement')))), 'tt_content')
in /var/www/vhosts/loctimize.com/html/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'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('indexedsearch_pi2' => 'USER', 'indexedsearch_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'IndexedSearch', 'pluginName' => 'Pi2'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'powermail_pi1' => 'USER', 'powermail_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi1'), 'powermail_pi2' => 'USER', 'powermail_pi2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Powermail', 'pluginName' => 'Pi2'), 'sffilecollectiongallery_pifilecollectiongallery' => 'USER', 'sffilecollectiongallery_pifilecollectiongallery.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SfFilecollectionGallery', 'pluginName' => 'Pifilecollectiongallery')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'felogin_login' => '< lib.contentElement', 'felogin_login.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Felogin', 'pluginName' => 'Login')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'dataWrap' => '{register:elementWrap}', 'required' => '1'), 'gridelements_pi1' => 'COA', 'gridelements_pi1.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))), '11.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="container"><div class="row grid"><div class="col-xs-12">|</div></div></div>')), 'wrap' => '<div class="grid">|</div>', 'wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '<div class="grid">|</div>'), 'TEXT', '60.' => array('value' => '<div class="grid versprechen">|</div>'), 'TEXT', '61.' => array('value' => '<div class="grid highlight">|</div>'), 'TEXT', '62.' => array('value' => '<div class="grid gruen">|</div>'), 'TEXT', '63.' => array('value' => '<div class="grid lila">|</div>'), 'TEXT', '64.' => array('value' => '<div class="grid blau">|</div>'), 'TEXT', '65.' => array('value' => '<div class="grid gelb">|</div>'), 'TEXT', '66.' => array('value' => '<div class="grid grau">|</div>'), 'TEXT', '67.' => array('value' => '<div class="grid noPaddingTop">|</div>')))), '2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '5.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '9.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '5.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>')), 'wrap' => '<div class="row fivecolumns grid">|</div>'), '7.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '10.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'))))), 'gridelements_view' => 'COA', 'gridelements_view.' => array('COA', '20.' => array('USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->main', 'setup.' => array('11.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="container"><div class="row grid"><div class="col-xs-12">|</div></div></div>')), 'wrap' => '<div class="grid">|</div>', 'wrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'layout'), 'default' => 'TEXT', 'default.' => array('value' => '<div class="grid">|</div>'), 'TEXT', '60.' => array('value' => '<div class="grid versprechen">|</div>'), 'TEXT', '61.' => array('value' => '<div class="grid highlight">|</div>'), 'TEXT', '62.' => array('value' => '<div class="grid gruen">|</div>'), 'TEXT', '63.' => array('value' => '<div class="grid lila">|</div>'), 'TEXT', '64.' => array('value' => '<div class="grid blau">|</div>'), 'TEXT', '65.' => array('value' => '<div class="grid gelb">|</div>'), 'TEXT', '66.' => array('value' => '<div class="grid grau">|</div>'), 'TEXT', '67.' => array('value' => '<div class="grid noPaddingTop">|</div>')))), '2.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '3.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-9">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '4.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '5.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-8">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '6.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-4">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '9.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>'), '5.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-2">|</div>')), 'wrap' => '<div class="row fivecolumns grid">|</div>'), '7.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-6">|</div>')), 'wrap' => '<div class="row grid">|</div>'), '10.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')), '1.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '2.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '3.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>'), '4.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'), 'wrap' => '<div class="col-xs-12 col-sm-3">|</div>')), 'wrap' => '<div class="row grid">|</div>'), 'default.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content')))))))), 'mailform.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'menu.' => array('thumbnail_list.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'default.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'categorized_content.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'categorized_pages.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '1.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '4.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '7.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '5.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '6.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '3.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '2.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '8.' => array('templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/'))), 'loctimize_cookies' => 'COA', 'loctimize_cookies.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Cookies', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_counter' => 'COA', 'loctimize_counter.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Counter', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_logoslider' => '< lib.contentElement', 'loctimize_logoslider.' => array('templateName' => 'LogoSlider', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('as' => 'LogoSliderItems', 'references.' => array('fieldName' => 'image', 'table' => 'tt_content')))), 'loctimize_ceteaser' => 'COA', 'loctimize_ceteaser.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Teaser', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_cetestimonial' => 'COA', 'loctimize_cetestimonial.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Testimonial', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'loctimize_totop' => 'COA', 'loctimize_totop.' => array('FLUIDTEMPLATE', '10.' => array('templateName' => 'Totop', 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'))), 'audio' => '< lib.contentElement', 'audio.' => array('templateName' => 'Audio', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'csv' => '< lib.contentElement', 'csv.' => array('templateName' => 'Csv', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\CsvFileProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'maximumColumns.' => array('field' => 'cols')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'media' => '< lib.contentElement', 'media.' => array('templateName' => 'Media', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('allowedFileExtensions' => 'youtube, vimeo'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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 tt_content.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=\'|\''), 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', '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'))))), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), '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')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'quote' => '< lib.contentElement', 'quote.' => array('templateName' => 'Quote'), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,pages,tx_news_domain_model_news', 'conf.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'), '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'))))), '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')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'social_links' => '< lib.contentElement', 'social_links.' => array('templateName' => 'SocialLinks', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'socialmedia', 'key' => 'page.theme.socialmedia'))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure'))), 'as' => 'table')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'textcolumn' => '< lib.contentElement', 'textcolumn.' => array('templateName' => 'Textcolumn'), 'textteaser' => '< lib.contentElement', 'textteaser.' => array('templateName' => 'Textteaser'), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextpicBelow'), 'TEXT', '25.' => array('value' => 'TextpicRight'), 'TEXT', '26.' => array('value' => 'TextpicLeft'), 'TEXT', '125.' => array('value' => 'TextpicCenteredRight'), 'TEXT', '126.' => array('value' => 'TextpicCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextpicAbove')))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'folders.' => array('field' => 'file_folder'), 'sorting.' => array('field' => 'filelink_sorting')), 'BK2K\\BootstrapPackage\\DataProcessing\\FileFilterProcessor', '20.' => array('predefinedList' => 'image')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'TEXT', 'templateName.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'imageorient'), 'TEXT', '8.' => array('value' => 'TextmediaBelow'), 'TEXT', '25.' => array('value' => 'TextmediaRight'), 'TEXT', '26.' => array('value' => 'TextmediaLeft'), 'TEXT', '125.' => array('value' => 'TextmediaCenteredRight'), 'TEXT', '126.' => array('value' => 'TextmediaCenteredLeft'), 'default' => 'TEXT', 'default.' => array('value' => 'TextmediaAbove')))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets'))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), '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')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'accordion' => '< lib.contentElement', 'accordion.' => array('templateName' => 'Accordion', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_accordion_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'card_group' => '< lib.contentElement', 'card_group.' => array('templateName' => 'CardGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_card_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'link_icon'), 'as' => 'linkIcon'))))), 'carousel' => '< lib.contentElement', 'carousel.' => array('templateName' => 'Carousel', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'carousel_small' => '< lib.contentElement', 'carousel_small.' => array('templateName' => 'CarouselSmall', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'carousel_fullscreen' => '< lib.contentElement', 'carousel_fullscreen.' => array('templateName' => 'CarouselFullscreen', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_carousel_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532633187.' => array('fieldName' => 'background_image_options')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'external_media' => '< lib.contentElement', 'external_media.' => array('templateName' => 'ExternalMedia', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'icon_group' => '< lib.contentElement', 'icon_group.' => array('templateName' => 'IconGroup', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_icon_group_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'))))), 'listgroup' => '< lib.contentElement', 'listgroup.' => array('templateName' => 'ListGroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'items')), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'panel' => '< lib.contentElement', 'panel.' => array('templateName' => 'Panel', 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'tab' => '< lib.contentElement', 'tab.' => array('templateName' => 'Tab', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_bootstrappackage_tab_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'texticon' => '< lib.contentElement', 'texticon.' => array('templateName' => 'Texticon', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'icon', 'if.' => array('isFalse.' => array('field' => 'icon_set'))), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '20.' => array('files.' => array('0.' => array('field' => 'icon')), 'as' => 'icon', 'if.' => array('isTrue.' => array('field' => 'icon_set')))), 'templateRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/ContentElements/')), 'timeline' => '< lib.contentElement', 'timeline.' => array('templateName' => 'Timeline', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_bootstrappackage_timeline_item', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy.' => array('stdWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'flexform:pi_flexform:sorting', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => 'date desc'))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'icon_file'), 'as' => 'iconFile'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'))))), 'menu_card_dir' => '< lib.contentElement', 'menu_card_dir.' => array('templateName' => 'MenuCardDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_card_list' => '< lib.contentElement', 'menu_card_list.' => array('templateName' => 'MenuCardList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail'), 'if.' => array('isTrue' => '{$plugin.bootstrap_package_contentelements.menu_card.thumbnail.enable}')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '0')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_dir' => '< lib.contentElement', 'menu_thumbnail_dir.' => array('templateName' => 'MenuThumbnailDir', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement'))), 'menu_thumbnail_list' => '< lib.contentElement', 'menu_thumbnail_list.' => array('templateName' => 'MenuThumbnailList', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'includeNotInMenu' => '1', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'thumbnail')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '90.' => array('if.' => array('isTrue.' => array('field' => 'accessibility_bypass')), 'table' => 'tt_content', 'pidInList' => 'this', 'orderBy' => 'sorting', 'max' => '1', 'where.' => array('dataWrap' => 'colPos = {field:colPos} AND sorting > {field:sorting}'), 'as' => 'nextContentElement')))), '')
in /var/www/vhosts/loctimize.com/html/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', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')))
in /var/www/vhosts/loctimize.com/html/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', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')))
in /var/www/vhosts/loctimize.com/html/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', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), '20')
in /var/www/vhosts/loctimize.com/html/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')))), 'slide.' => array('cObject' => 'TEXT', 'cObject.' => array('override.' => array('field' => 'slide', 'if.' => array('isInList.' => array('field' => 'slide'), 'value' => '-1, 0, 1, 2')), 'ifEmpty' => '0')), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /var/www/vhosts/loctimize.com/html/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')))), 'slide.' => array('cObject' => 'TEXT', 'cObject.' => array('override.' => array('field' => 'slide', 'if.' => array('isInList.' => array('field' => 'slide'), 'value' => '-1, 0, 1, 2')), 'ifEmpty' => '0')), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /var/www/vhosts/loctimize.com/html/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')))), 'slide.' => array('cObject' => 'TEXT', 'cObject.' => array('override.' => array('field' => 'slide', 'if.' => array('isInList.' => array('field' => 'slide'), 'value' => '-1, 0, 1, 2')), 'ifEmpty' => '0')), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'))
in /var/www/vhosts/loctimize.com/html/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')))), 'slide.' => array('cObject' => 'TEXT', 'cObject.' => array('override.' => array('field' => 'slide', 'if.' => array('isInList.' => array('field' => 'slide'), 'value' => '-1, 0, 1, 2')), 'ifEmpty' => '0')), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), 'lib.dynamicContent')
in /var/www/vhosts/loctimize.com/html/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('contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:loctimize_sitepackage/Resources/Private/ContentElements/Templates/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:loctimize_sitepackage/Resources/Private/ContentElements/Partials/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:loctimize_sitepackage/Resources/Private/ContentElements/Layouts/'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '1509614342.' => array('references.' => array('fieldName' => 'background_image'), 'as' => 'backgroundImage'), 'BK2K\\BootstrapPackage\\DataProcessing\\FlexFormProcessor', '1532626753.' => array('fieldName' => 'background_image_options')), 'variables.' => array('backendlayout' => 'TEXT', 'backendlayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default')), 'settings.' => array('header.' => array('defaultHeaderType' => '2', 'class' => 'element-header', 'date.' => array('format' => '%B %e, %Y')), 'subheader.' => array('class' => 'element-subheader'), 'lightbox.' => array('cssClass' => 'lightbox', 'prefix' => 'lightbox-group', 'image.' => array('maxHeight' => '1200', 'maxWidth' => '1200')), 'media.' => array('additionalConfig.' => array('autoplay' => '0', 'controls' => '1', 'loop' => '0', 'enablejsapi' => '1', 'showinfo' => '0', 'relatedVideos' => '0', 'modestbranding' => '0')), 'gallery.' => array('columns.' => array('1.' => array('class' => 'gallery-item-size-1'), '2.' => array('class' => 'gallery-item-size-2', 'multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1200', 'width' => '1100'), 'large.' => array('breakpoint' => '992', 'width' => '920'), 'medium.' => array('breakpoint' => '768', 'width' => '680'), 'small.' => array('breakpoint' => '576', 'width' => '500'), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '374')), 'backendlayout.' => array('2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '21.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), '22.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'top.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '24', 'large' => '24', 'medium' => '24'), 'corrections.' => array('default' => '25', 'large' => '25', 'medium' => '25', 'small' => '50', 'extrasmall' => '50')), 'bottom.' => array('corrections.' => array('default' => '50', 'large' => '50', 'medium' => '50', 'small' => '50', 'extrasmall' => '50'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('text_and_image.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'large' => '40', 'medium' => '40'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '20', 'large' => '20', 'medium' => '20', 'small' => '20'), 'corrections.' => array('default' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '3.' => array('multiplier.' => array('default' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10')), '4.' => array('multiplier.' => array('default' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '10', 'large' => '10', 'medium' => '10', 'small' => '10'))))), 'menuthumbnail.' => array('title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '80')), 'menucard.' => array('icon.' => array('enable' => '0', 'height' => '32', 'width' => '32c'), 'title.' => array('crop' => '100'), 'subtitle.' => array('crop' => '100'), 'abstract.' => array('crop' => '250')), 'texticon.' => array('icon.' => array('default.' => array('height' => '32', 'width' => '32'), 'medium.' => array('height' => '48', 'width' => '48'), 'large.' => array('height' => '64', 'width' => '64'), 'awesome.' => array('height' => '80', 'width' => '80'))), 'timeline.' => array('date.' => array('format' => '%B %e, %Y - %H:%M')), 'uploads.' => array('preview.' => array('height' => '100c', 'width' => '100c')))), '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')))), 'slide.' => array('cObject' => 'TEXT', 'cObject.' => array('override.' => array('field' => 'slide', 'if.' => array('isInList.' => array('field' => 'slide'), 'value' => '-1, 0, 1, 2')), 'ifEmpty' => '0')), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), 'dynamicContentSlide' => '< lib.dynamicContent', 'dynamicContentSlide.' => array('20.' => array('slide' => '-1')), 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('data' => 'parameters:target'), 'extTarget' => '_blank', 'extTarget.' => array('override.' => array('data' => 'parameters:target'))))), '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,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var,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,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="text-highlight">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'))), 'parseFunc_RTE.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('data' => 'parameters:target'), 'extTarget' => '_blank', 'extTarget.' => array('override.' => array('data' => 'parameters:target'))))), '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,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var,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,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="text-highlight">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p, pre, h1, h2, h3, h4, h5, h6, hr, dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'externalBlocks' => 'article, address, aside, blockquote, div, dd, dl, footer,header, nav, ol, section, table, ul, pre', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc', 'HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('ul.' => array('fixAttrib.' => array('class.' => array('default' => 'list-normal')))), 'keepNonMatchedTags' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('wrap' => '<div class="table-responsive">|</div>'), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => ''))))))), 'pre.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('data' => 'parameters:target'), 'extTarget' => '_blank', 'extTarget.' => array('override.' => array('data' => 'parameters:target'))))), '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,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var,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,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="text-highlight">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'))))), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'address.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => 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'))), 'block' => 'FLUIDTEMPLATE', 'block.' => array('templateName' => 'Default', 'templateName.' => array('override.' => array('field' => 'template')), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Blocks/', 'EXT:bootstrap_package/Resources/Private/Templates/Blocks/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Blocks/', 'EXT:bootstrap_package/Resources/Private/Partials/Blocks/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Blocks/', 'EXT:bootstrap_package/Resources/Private/Layouts/Blocks/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'))), 'page.' => array('class' => 'COA', 'class.' => array('TEXT', '10.' => array('field' => 'alias // uid', 'noTrimWrap' => '|page-||'), 'TEXT', '20.' => array('data' => 'level:1', 'noTrimWrap' => '| pagelevel-||'), 'TEXT', '30.' => array('data' => 'siteLanguage:languageId', 'noTrimWrap' => '| language-||'), 'TEXT', '40.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default', 'noTrimWrap' => '| backendlayout-||'), 'TEXT', '50.' => array('field' => 'layout', 'noTrimWrap' => '| layout-||', 'ifEmpty' => 'default'))), 'tx_form.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'math' => 'TEXT', 'math.' => array('current' => '1', 'prioriCalc' => 'https://www.loctimize.com/typo3/index.php?M=web_ts&moduleToken=00d7f2823143319f4bdf1385436b745bccd27697&id=1'), 'pageName' => 'TEXT', 'pageName.' => array('value' => 'Loctimize GmbH'), 'currentUrl' => 'TEXT', 'currentUrl.' => array('typolink.' => array('parameter.' => array('data' => 'page:canonical_link // page:content_from_pid // page:uid'), 'forceAbsoluteUrl' => '1', 'returnLast' => 'url', 'useCacheHash' => '1', 'additionalParams.' => array('data' => 'tx_csseo_url_parameters'))), 'AJAXPrototype' => 'PAGE', 'AJAXPrototype.' => array('config.' => array('xhtml_cleaning' => '0', 'admPanel' => '0', 'debug' => '0', 'no_cache' => '1', 'disableAllHeaderCode' => '1', 'additionalHeaders' => 'Content-type: application/json, utf-8', 'disablePrefixComment' => '1')), 'gridelements.' => array('defaultGridSetup.' => array('columns.' => array('default.' => array('renderObj' => 'COA', 'renderObj.' => array('< tt_content'))))), 'tt_content.' => array('shortcut.' => array('pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER'))), 'tx_news.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'parseFunc_powermail.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank', 'forceAbsoluteUrl' => '1'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('data' => 'parameters:target'), 'extTarget' => '_blank', 'extTarget.' => array('override.' => array('data' => 'parameters:target')), 'forceAbsoluteUrl' => '1'))), '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,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var,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,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="text-highlight">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p, pre, h1, h2, h3, h4, h5, h6, hr, dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'externalBlocks' => 'article, address, aside, blockquote, div, dd, dl, footer,header, nav, ol, section, table, ul, pre', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc', 'HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('ul.' => array('fixAttrib.' => array('class.' => array('default' => 'list-normal')))), 'keepNonMatchedTags' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('wrap' => '<div class="table-responsive">|</div>'), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => ''))))))), 'pre.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('data' => 'parameters:target'), 'extTarget' => '_blank', 'extTarget.' => array('override.' => array('data' => 'parameters:target'))))), '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,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var,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,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="text-highlight">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'))))), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'address.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => 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'))), 'mainnavigation' => 'HMENU', 'mainnavigation.' => array('TMENU', '1.' => array('expAll' => '1', 'wrap' => '<ul class="nav navbar-nav navbar-right">|</ul>', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="level-1">|</li>', 'ATagParams' => 'class="level-1"'), 'IFSUB' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="level-1 dropdown">|</li>', 'ATagParams' => 'class="level-1 dropdown-toggle" data-toggle="dropdown"', 'stdWrap.' => array('append' => 'TEXT', 'append.' => array('value' => '<span class="caret"></span>'))), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="level-1 active">|</li>', 'ATagParams' => 'class="level-1 active"'), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="dropdown active level-1">|</li>', 'ATagParams' => 'class="dropdown-toggle active level-1" data-toggle="dropdown"', 'stdWrap.' => array('append' => 'TEXT', 'append.' => array('value' => '<span class="caret"></span>')))), 'TMENU', '2.' => array('wrap' => '<ul class="dropdown-menu level-2" role="menu">|</ul>', 'NO' => '1', 'NO.' => array('wrapItemAndSub' => '<li class="level-2">|</li>', 'ATagParams' => 'class="level-2"', 'stdWrap.' => array('htmlSpecialChars' => '1')), 'ACT' => '.NO', 'ACT.' => array('wrapItemAndSub' => '<li class="active level-2">|</li>', 'ATagParams' => 'class="active level-2"'))), 'hmenu' => 'HMENU', 'hmenu.' => array('excludeUidList' => '10', 'special' => 'list', 'special.' => array('value' => '13,6,7,8,9'), 'TMENU', '1.' => array('expAll' => '1', 'noBlur' => '1', 'wrap' => '<ul class="nav navbar-nav navbar-main hmenu">|</ul>', 'NO' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'ATagTitle.' => array('field' => 'description // nav_title // title'), 'wrapItemAndSub' => '<li class="dropdown">|</li>'), 'ACT' => '1', 'ACT.' => array('ATagParams' => 'class=""', 'ATagTitle.' => array('field' => 'description // nav_title // title'), 'wrapItemAndSub' => '<li class="dropdown"|</li>'), 'CUR' => '1', 'CUR.' => array('ATagParams' => 'class=""', 'ATagTitle.' => array('field' => 'description // nav_title // title'), 'wrapItemAndSub' => '<li class="dropdown"|</li>')), 'TMENU', '2.' => array('expAll' => '1', 'noBlur' => '1', 'wrap' => '<ul>|</ul>', 'NO' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'ATagTitle.' => array('field' => 'description // nav_title // title'), 'wrapItemAndSub' => '<li>|</li>'), 'ACT' => '1', 'ACT.' => array('ATagParams' => 'class="active"', 'ATagTitle.' => array('field' => 'description // nav_title // title'), 'wrapItemAndSub' => '<li>|</li>'), 'CUR' => '1', 'CUR.' => array('ATagParams' => 'class="active"', 'ATagTitle.' => array('field' => 'description // nav_title // title'), 'wrapItemAndSub' => '<li>|</li>')), 'TMENU', '3.' => array('expAll' => '1', 'noBlur' => '1', 'wrap' => '<ul>|</ul>', 'NO' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'ATagTitle.' => array('field' => 'description // nav_title // title'), 'wrapItemAndSub' => '<li>|</li>'), 'ACT' => '1', 'ACT.' => array('ATagParams' => 'class="active"', 'ATagTitle.' => array('field' => 'description // nav_title // title'), 'wrapItemAndSub' => '<li>|</li>'), 'CUR' => '1', 'CUR.' => array('ATagParams' => 'class="active"', 'ATagTitle.' => array('field' => 'description // nav_title // title'), 'wrapItemAndSub' => '<li>|</li>'))), 'hmenu2' => 'HMENU', 'hmenu2.' => array('excludeUidList' => '10', 'special' => 'list', 'special.' => array('value' => '13,6,7,8,9'), 'TMENU', '1.' => array('expAll' => '1', 'wrap' => '<ul class="nav">|</ul>', 'NO.' => array('allWrap' => '<li>|</li>', 'ATagTitle.' => array('field' => 'abstract // description // title')), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="active">|</li>', 'ATagTitle.' => array('field' => 'abstract // description // title')), 'IFSUB' => '1', 'IFSUB.' => array('before' => '<a href="#" class="dropdown-toggle" data-toggle="dropdown">', 'after' => '<b class="caret"></b></a>', 'doNotLinkIt' => '0', 'wrapItemAndSub' => '<li class="dropdown">|</li>', 'ATagTitle.' => array('field' => 'abstract // description // title')), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('before' => '<a href="#" class="dropdown-toggle" data-toggle="dropdown">', 'after' => '<b class="caret"></b></a>', 'doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="dropdown active">|</li>', 'ATagTitle.' => array('field' => 'abstract // description // title'))), 'TMENU', '2.' => array('expAll' => '1', 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="active">|</li>', 'ATagTitle.' => array('field' => 'abstract // description // title')), 'ACTIFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '|', 'before' => '<li class="divider"></li><li class="nav-header">', 'after' => '</li>', 'doNotLinkIt' => '1', 'ATagTitle.' => array('field' => 'abstract // description // title')), 'NO.' => array('allWrap' => '<li>|</li>', 'ATagTitle.' => array('field' => 'abstract // description // title')), 'IFSUB' => '1', 'IFSUB.' => array('before' => '<li class="divider"></li><li class="nav-header">', 'after' => '</li>', 'doNotLinkIt' => '1', 'ATagTitle.' => array('field' => 'abstract // description // title')), 'SPC' => '1', 'SPC.' => array('allWrap' => '<li class="divider"></li><li class="nav-header">|</li>'), 'wrap' => '<ul class="dropdown-menu">|</ul>'), 'TMENU', '3.' => array('NO.' => array('allWrap' => '<li>|</li>', 'ATagTitle.' => array('field' => 'abstract // description // title')), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="active">|</li>', 'ATagTitle.' => array('field' => 'abstract // description // title')))), 'language_switch' => 'HMENU', 'language_switch.' => array('special' => 'language', 'special.' => array('value' => '0,1,6,9,10', 'normalWhenNoLanguage' => '0'), 'TMENU', '1.' => array('noBlur' => '1', 'NO' => '1', 'NO.' => array('linkWrap' => '<li class="level-1">|</li>', 'stdWrap.' => array('override' => 'Deutsch || English || Français || русский || Chinese', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => 'L=0 || L=1 || L=2 || L=6', 'addQueryString' => '1', 'addQueryString.' => array('exclude' => 'L,id,cHash,no_cache', 'method' => 'GET'), 'useCacheHash' => '1', 'no_cache' => '0')), 'doNotLinkIt' => '1'), 'ACT' => '1', 'ACT.' => array('linkWrap' => '<li class="active">|<li>', 'stdWrap.' => array('override' => 'Deutsch || English || Français || русский || Chinese', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => 'L=0 || L=1 || L=2 || L=6', 'addQueryString' => '1', 'addQueryString.' => array('exclude' => 'L,id,cHash,no_cache', 'method' => 'GET'), 'useCacheHash' => '1', 'no_cache' => '0')), 'doNotLinkIt' => '1'), 'USERDEF1' => '1', 'USERDEF1.' => array('linkWrap' => '<li class="level-1">|</li>', 'stdWrap.' => array('override' => 'Deutsch || English || Français || русский || Chinese', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => 'L=0 || L=1 || L=2 || L=6', 'addQueryString' => '1', 'addQueryString.' => array('exclude' => 'L,id,cHash,no_cache', 'method' => 'GET'), 'useCacheHash' => '1', 'no_cache' => '0')), 'doNotLinkIt' => '1'), 'USERDEF2' => '1', 'USERDEF2.' => array('linkWrap' => '<li class="active">|<li>', 'stdWrap.' => array('override' => 'Deutsch || English || Français || русский || Chinese', 'typolink.' => array('parameter.' => array('data' => 'page:uid'), 'additionalParams' => 'L=0 || L=1 || L=2 || L=6', 'addQueryString' => '1', 'addQueryString.' => array('exclude' => 'L,id,cHash,no_cache', 'method' => 'GET'), 'useCacheHash' => '1', 'no_cache' => '0')), 'doNotLinkIt' => '1'))), 'robotsHost' => 'TEXT', 'robotsHost.' => array('data' => 'getIndpEnv : TYPO3_REQUEST_HOST', 'noTrimWrap' => '| ||'), 'news' => 'COA', 'news.' => array('table' => 'tx_news_domain_model_news', 'additionalParams' => 'tx_news_pi1[controller]=News&tx_news_pi1[action]=eventDetail&tx_news_pi1[news]', 'languageUids' => '0', 'categories' => '', 'categoryField' => '', 'categoryMMTable' => 'sys_category_record_mm', 'categoryMMTablenames' => '1', 'categoryMMFieldname' => 'categories'), 'meetusArticlesLang.' => array('value' => 'More dates'), 'mobileMenuBack.' => array('value' => 'Back'), 'registerNowLang.' => array('value' => 'Register Now'), 'meetusArticlesLang' => 'TEXT', 'mobileMenuBack' => 'TEXT', 'registerNowLang' => 'TEXT'), 'lib.dynamicContent', 'dynamicContent')
in /var/www/vhosts/loctimize.com/html/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' => 199, 'colPos' => 0), 'typoscriptObjectPath' => 'lib.dynamicContent', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/loctimize.com/var/cache/code/fluid_template/Standard_action_defaultnews_d8a5753eefa5e46d8b48d31de19a8ae770ed6e43.php line 96
);$array7['pageUid'] = $renderingContext->getVariableProvider()->getByPath('data.uid', $array8);
$array7['colPos'] = 0;
$arguments5['data'] = $array7;
$renderChildrenClosure6 = ($arguments5['data'] !== null) ? function() use ($arguments5) { return $arguments5['data']; } : $renderChildrenClosure6;
$output0 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments5, $renderChildrenClosure6, $renderingContext);

$output0 .= '

';
at Standard_action_defaultnews_d8a5753eefa5e46d8b48d31de19a8ae770ed6e43->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/loctimize.com/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 258
                    new InvalidSectionException('Section "' . $sectionName . '" does not exist.')
                );
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('Main', array(), false)
in /var/www/vhosts/loctimize.com/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 171
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
        }
        // Replace empty content with default value. If default is
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'Main', 'partial' => null, 'delegate' => null, 'renderable' => null, 'arguments' => array(), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/loctimize.com/var/cache/code/fluid_template/layout_Default_html_1e661d36bf53798277a898a50dfc203d4fecc301.php line 203
$arguments20['contentAs'] = NULL;
$arguments20['debug'] = true;
$arguments20['section'] = 'Main';

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

$output0 .= '
        </section>
        <!--TYPO3SEARCH_end-->
at layout_Default_html_1e661d36bf53798277a898a50dfc203d4fecc301->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/vhosts/loctimize.com/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 200
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /var/www/vhosts/loctimize.com/html/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 /var/www/vhosts/loctimize.com/html/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' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '4', 'includeSpacer' => '1', 'as' => 'mainnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '1')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '1'))))))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel' => '1', 'levels' => '2', 'expandAll' => '0', 'includeSpacer' => '1', 'as' => 'subnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '1')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'as' => 'breadcrumb', 'if.' => array('value' => '2', 'value.' => array('insertData' => '1', 'prioriCalc' => '1', 'stdWrap.' => array('wrap' => '|-1')), 'isGreaterThan.' => array('data' => 'level')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => '0,1,6,9,10', 'as' => 'languagenavigation'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value' => ''), 'includeNotInMenu' => '1', 'as' => 'metanavigation', 'if.' => array('isTrue' => '')), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '1553883874.' => array('files.' => array('normal' => 'EXT:loctimize_sitepackage/Resources/Public/Images/loctimize_training_consulting.png', 'inverted' => 'EXT:bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '57', 'width' => '250', 'linktitle' => '')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'TSFE:tmpl|setup|sitetitle'), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'leveluid:0'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'TSFE:tmpl|setup|sitetitle', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => '')), 'TEXT', '20.' => array('value' => '', 'if.' => array('isTrue' => ''))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array(), 'footerPageUid' => 'TEXT', 'footerPageUid.' => array('value' => '240')), 'stdWrap.' => array('replacement.' => array('1.' => array('search' => 'http://###BACKEND_URL###/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '2.' => array('search' => '###FRONTEND_URL###', 'replace.' => array('typolink.' => array('parameter.' => array('data' => 'leveluid:0'), 'returnLast' => 'url'))), '3.' => array('search' => '###CURRENTYEAR###', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '4.' => array('search' => '###SPACE###', 'replace.' => array('char' => '32')), '99.' => array('search' => '###GoogleAnalyticsStatus###', 'replace.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('templateName' => 'GoogleAnalyticsStatus', 'templateName.' => array('override.' => array('field' => 'template')), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Blocks/', 'EXT:bootstrap_package/Resources/Private/Templates/Blocks/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Blocks/', 'EXT:bootstrap_package/Resources/Private/Partials/Blocks/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Blocks/', 'EXT:bootstrap_package/Resources/Private/Layouts/Blocks/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme')))))))))
in /var/www/vhosts/loctimize.com/html/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' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '4', 'includeSpacer' => '1', 'as' => 'mainnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '1')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '1'))))))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel' => '1', 'levels' => '2', 'expandAll' => '0', 'includeSpacer' => '1', 'as' => 'subnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '1')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'as' => 'breadcrumb', 'if.' => array('value' => '2', 'value.' => array('insertData' => '1', 'prioriCalc' => '1', 'stdWrap.' => array('wrap' => '|-1')), 'isGreaterThan.' => array('data' => 'level')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => '0,1,6,9,10', 'as' => 'languagenavigation'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value' => ''), 'includeNotInMenu' => '1', 'as' => 'metanavigation', 'if.' => array('isTrue' => '')), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '1553883874.' => array('files.' => array('normal' => 'EXT:loctimize_sitepackage/Resources/Public/Images/loctimize_training_consulting.png', 'inverted' => 'EXT:bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '57', 'width' => '250', 'linktitle' => '')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'TSFE:tmpl|setup|sitetitle'), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'leveluid:0'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'TSFE:tmpl|setup|sitetitle', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => '')), 'TEXT', '20.' => array('value' => '', 'if.' => array('isTrue' => ''))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array(), 'footerPageUid' => 'TEXT', 'footerPageUid.' => array('value' => '240')), 'stdWrap.' => array('replacement.' => array('1.' => array('search' => 'http://###BACKEND_URL###/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '2.' => array('search' => '###FRONTEND_URL###', 'replace.' => array('typolink.' => array('parameter.' => array('data' => 'leveluid:0'), 'returnLast' => 'url'))), '3.' => array('search' => '###CURRENTYEAR###', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '4.' => array('search' => '###SPACE###', 'replace.' => array('char' => '32')), '99.' => array('search' => '###GoogleAnalyticsStatus###', 'replace.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('templateName' => 'GoogleAnalyticsStatus', 'templateName.' => array('override.' => array('field' => 'template')), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Blocks/', 'EXT:bootstrap_package/Resources/Private/Templates/Blocks/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Blocks/', 'EXT:bootstrap_package/Resources/Private/Partials/Blocks/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Blocks/', 'EXT:bootstrap_package/Resources/Private/Layouts/Blocks/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme')))))))))
in /var/www/vhosts/loctimize.com/html/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' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '4', 'includeSpacer' => '1', 'as' => 'mainnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array('isTrue' => '1')), 'TEXT', '20.' => array('value' => '1', 'if.' => array('isTrue' => '1'))))))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel' => '1', 'levels' => '2', 'expandAll' => '0', 'includeSpacer' => '1', 'as' => 'subnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '1')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'as' => 'breadcrumb', 'if.' => array('value' => '2', 'value.' => array('insertData' => '1', 'prioriCalc' => '1', 'stdWrap.' => array('wrap' => '|-1')), 'isGreaterThan.' => array('data' => 'level')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => '0,1,6,9,10', 'as' => 'languagenavigation'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value' => ''), 'includeNotInMenu' => '1', 'as' => 'metanavigation', 'if.' => array('isTrue' => '')), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '1553883874.' => array('files.' => array('normal' => 'EXT:loctimize_sitepackage/Resources/Public/Images/loctimize_training_consulting.png', 'inverted' => 'EXT:bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '57', 'width' => '250', 'linktitle' => '')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'TSFE:tmpl|setup|sitetitle'), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'leveluid:0'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'TSFE:tmpl|setup|sitetitle', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => '')), 'TEXT', '20.' => array('value' => '', 'if.' => array('isTrue' => ''))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array(), 'footerPageUid' => 'TEXT', 'footerPageUid.' => array('value' => '240')), 'stdWrap.' => array('replacement.' => array('1.' => array('search' => 'http://###BACKEND_URL###/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '2.' => array('search' => '###FRONTEND_URL###', 'replace.' => array('typolink.' => array('parameter.' => array('data' => 'leveluid:0'), 'returnLast' => 'url'))), '3.' => array('search' => '###CURRENTYEAR###', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '4.' => array('search' => '###SPACE###', 'replace.' => array('char' => '32')), '99.' => array('search' => '###GoogleAnalyticsStatus###', 'replace.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('templateName' => 'GoogleAnalyticsStatus', 'templateName.' => array('override.' => array('field' => 'template')), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Blocks/', 'EXT:bootstrap_package/Resources/Private/Templates/Blocks/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Blocks/', 'EXT:bootstrap_package/Resources/Private/Partials/Blocks/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Blocks/', 'EXT:bootstrap_package/Resources/Private/Layouts/Blocks/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme')))))))), '10')
in /var/www/vhosts/loctimize.com/html/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('COA', '1.' => array('EDITPANEL', '10.' => array('allow' => 'toolbar,move,hide', 'label' => '%s')), 'includeCSS.' => array('theme' => 'EXT:loctimize_sitepackage/Resources/Public/Css/Less/Theme/theme.less', 'powermailBasicCss' => 'EXT:loctimize_sitepackage/Resources/Public/Extensions/powermail/Public/Css/Basic.css', 'fonts' => 'EXT:loctimize_sitepackage/Resources/Public/Css/Less/Fonts/Fonts.css', 'cookie' => 'EXT:loctimize_sitepackage/Resources/Public/Css/cookieconsent.min.css', 'owlCarousel' => 'EXT:loctimize_sitepackage/Resources/Public/Css/owl-carousel/owl.carousel.css', 'owlTheme' => 'EXT:loctimize_sitepackage/Resources/Public/Css/owl-carousel/owl.theme.css', 'owlTransitions' => 'EXT:loctimize_sitepackage/Resources/Public/Css/owl-carousel/owl.transitions.css', 'customNavigation' => 'EXT:loctimize_sitepackage/Resources/Public/Css/owl-carousel/custom.css', 'featherlight' => 'EXT:loctimize_sitepackage/Resources/Public/Css/featherlight.min.css', 'featherlight_gallery' => 'EXT:loctimize_sitepackage/Resources/Public/Css/featherlight.gallery.min.css', 'loctimize' => 'EXT:loctimize_sitepackage/Resources/Public/Css/loctimize.css'), 'includeJSFooterlibs.' => array('bootstrap' => 'EXT:bootstrap_package/Resources/Public/Contrib/bootstrap3/js/bootstrap.min.js', 'jquery' => 'EXT:bootstrap_package/Resources/Public/Contrib/jquery/jquery.min.js', 'jquery.' => array('forceOnTop' => '1'), 'hammerjs' => 'EXT:bootstrap_package/Resources/Public/Contrib/hammerjs/hammer.min.js', 'photoswipe_core' => 'EXT:bootstrap_package/Resources/Public/Contrib/photoswipe/photoswipe.min.js', 'photoswipe_ui' => 'EXT:bootstrap_package/Resources/Public/Contrib/photoswipe/photoswipe-ui-default.min.js', 'bootstrap_accordion' => 'EXT:bootstrap_package/Resources/Public/JavaScript/Dist/bootstrap.accordion.min.js', 'bootstrap_form' => 'EXT:bootstrap_package/Resources/Public/JavaScript/Dist/bootstrap.form.min.js', 'bootstrap_swipe' => 'EXT:bootstrap_package/Resources/Public/JavaScript/Dist/bootstrap.swipe.min.js', 'bootstrap_popover' => 'EXT:bootstrap_package/Resources/Public/JavaScript/Dist/bootstrap.popover.min.js', 'bootstrap_stickyheader' => 'EXT:bootstrap_package/Resources/Public/JavaScript/Dist/bootstrap.stickyheader.min.js', 'bootstrap_smoothscroll' => 'EXT:bootstrap_package/Resources/Public/JavaScript/Dist/bootstrap.smoothscroll.min.js', 'bootstrap_lightbox' => 'EXT:bootstrap_package/Resources/Public/JavaScript/Dist/bootstrap.lightbox.min.js', 'bootstrap_navbar' => 'EXT:bootstrap_package/Resources/Public/JavaScript/Dist/bootstrap.navbar.min.js', 'contrib_cookieconsent' => 'EXT:bootstrap_package/Resources/Public/Contrib/cookieconsent/cookieconsent.min.js', 'bootstrap_cookieconsent' => 'EXT:bootstrap_package/Resources/Public/JavaScript/Dist/bootstrap.cookieconsent.min.js'), 'typeNum' => '0', 'shortcutIcon' => 'EXT:loctimize_sitepackage/Resources/Public/Images/favicon.ico', 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('TEXT', '10.' => array('data' => 'TSFE:id', 'noTrimWrap' => '| id="p|"|'), '< lib.page.class', '20.' => array('stdWrap.' => array('noTrimWrap' => '| class="|"|')), 'wrap' => '<body|>'), 'headerData.' => array('HMENU', '10.' => array('special' => 'browse', 'special.' => array('items' => 'prev|next'), 'TMENU', '1.' => array('NO.' => array('allWrap' => '<link rel="prev" href="|"> |*| <link rel="next" href="|">', 'doNotLinkIt' => '1', 'stdWrap.' => array('typolink.' => array('parameter.' => array('data' => 'field:uid'), 'returnLast' => 'url'))))), 'COA', '657.' => array('COA', '10.' => array('TEXT', '10.' => array('value' => '', 'wrap' => '<!-- Global site tag (gtag.js) - Google Analytics --><script async src="https://www.googletagmanager.com/gtag/js?id=#"></script>', 'wrap.' => array('splitChar' => '#'), 'required' => '1'), 'TEXT', '20.' => array('value' => '', 'wrap' => '<!-- Global site tag (gtag.js) - Google Analytics --><script> /* Google Analytics Optout */ var gaProperty = \'#\'; var disableStr = \'ga-disable-\' + gaProperty; if (document.cookie.indexOf(disableStr + \'=true\') > -1) { window[disableStr] = true; } function gaOptout() { document.cookie = disableStr + \'=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/\'; window[disableStr] = true; } /* Google Analytics */ window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag(\'js\', new Date()); gtag(\'config\', gaProperty, { \'anonymize_ip\': true }); /* End Google Analytics */</script>', 'wrap.' => array('splitChar' => '#'), 'required' => '1'))), 'TEXT', '1623938362.' => array('if.' => array('isTrue.' => array('data' => 'levelfield:tx_loctimize_sitepackage_bodyclass_next_level, -1 , slide', 'override.' => array('field' => 'tx_loctimize_sitepackage_bodyclass'))), 'data' => 'levelfield:tx_loctimize_sitepackage_bodyclass_next_level, -1 , slide', 'override.' => array('field' => 'tx_loctimize_sitepackage_bodyclass'), 'wrap' => ' <style type="text/css" media="all"> /* <![CDATA[ */ @import url( "/typo3conf/ext/loctimize_sitepackage/Resources/Public/Css/pages/|.css" ); /* ]]> */ </style> '), '998.' => array('value' => ''), '654.' => array('COA', '30.' => array('TEXT', '1.' => array('value' => '<meta name="robots" content="index,follow">', 'if.' => array('isFalse.' => array('field' => 'tx_csseo_no_index'))), 'TEXT', '2.' => array('value' => '<meta name="robots" content="noindex,nofollow">', 'if.' => array('isTrue.' => array('field' => 'tx_csseo_no_index')))))), 'FLUIDTEMPLATE', '10.' => array('templateName' => 'TEXT', 'templateName.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets__', 'cObjNum' => '1', '1.' => array('current' => '1'))), 'ifEmpty' => 'Default'), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:loctimize_sitepackage/Resources/Private/Extensions/bootstrap_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '4', 'includeSpacer' => '1', 'as' => 'mainnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue.' => array('stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '1', 'if.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '1', 'if.' => array(*DEEP NESTED ARRAY*))))))))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '20.' => array('entryLevel' => '1', 'levels' => '2', 'expandAll' => '0', 'includeSpacer' => '1', 'as' => 'subnavigation', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon', 'if.' => array('isTrue' => '1')))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '30.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'as' => 'breadcrumb', 'if.' => array('value' => '2', 'value.' => array('insertData' => '1', 'prioriCalc' => '1', 'stdWrap.' => array('wrap' => '|-1')), 'isGreaterThan.' => array('data' => 'level')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'nav_icon'), 'as' => 'icon'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => '0,1,6,9,10', 'as' => 'languagenavigation'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '50.' => array('special' => 'list', 'special.' => array('value' => ''), 'includeNotInMenu' => '1', 'as' => 'metanavigation', 'if.' => array('isTrue' => '')), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '1553883874.' => array('files.' => array('normal' => 'EXT:loctimize_sitepackage/Resources/Public/Images/loctimize_training_consulting.png', 'inverted' => 'EXT:bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '57', 'width' => '250', 'linktitle' => '')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'TSFE:tmpl|setup|sitetitle'), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'leveluid:0'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'TSFE:tmpl|setup|sitetitle', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => '')), 'TEXT', '20.' => array('value' => '', 'if.' => array('isTrue' => ''))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array(), 'footerPageUid' => 'TEXT', 'footerPageUid.' => array('value' => '240')), 'stdWrap.' => array('replacement.' => array('1.' => array('search' => 'http://###BACKEND_URL###/', 'replace.' => array('typolink.' => array('parameter' => 'typo3/', 'returnLast' => 'url'))), '2.' => array('search' => '###FRONTEND_URL###', 'replace.' => array('typolink.' => array('parameter.' => array('data' => 'leveluid:0'), 'returnLast' => 'url'))), '3.' => array('search' => '###CURRENTYEAR###', 'replace.' => array('data' => 'date:U', 'strftime' => '%Y')), '4.' => array('search' => '###SPACE###', 'replace.' => array('char' => '32')), '99.' => array('search' => '###GoogleAnalyticsStatus###', 'replace.' => array('cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('templateName' => 'GoogleAnalyticsStatus', 'templateName.' => array('override.' => array('field' => 'template')), 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/Blocks/', 'EXT:bootstrap_package/Resources/Private/Templates/Blocks/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Blocks/', 'EXT:bootstrap_package/Resources/Private/Partials/Blocks/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Blocks/', 'EXT:bootstrap_package/Resources/Private/Layouts/Blocks/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme')))))))), 'meta.' => array('viewport' => 'width=device-width, initial-scale=1, minimum-scale=1', 'robots' => 'index,follow', 'apple-mobile-web-app-capable' => 'no', 'X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'google' => 'notranslate', 'google-site-verification' => '', 'og:type' => 'website', 'og:image.' => array('stdWrap.' => array('typolink.' => array('parameter.' => array('stdWrap.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'path:', 'if.' => array('isFalse.' => array(*DEEP NESTED ARRAY*))), 'height' => '628c', 'width' => '1200')))), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1'))), 'twitter:card' => 'summary', 'twitter:card.' => array('override' => 'summary_large_image', 'override.' => array('if.' => array('isTrue.' => array('data' => 'field:twitter_image // field:og_image')))), 'twitter:creator.' => array('data' => 'page:tx_csseo_tw_creator', 'htmlSpecialChars' => '1', 'wrap' => '@|', 'ifEmpty' => '', 'required' => '1'), 'twitter:site.' => array('data' => 'page:tx_csseo_tw_site', 'htmlSpecialChars' => '1', 'wrap' => '@|', 'ifEmpty' => '', 'required' => '1'), 'twitter:image.' => array('stdWrap.' => array('typolink.' => array('parameter.' => array('stdWrap.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'path: // path:', 'if.' => array('isFalse.' => array(*DEEP NESTED ARRAY*))), 'height' => '512c', 'width' => '1024')))), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1')))), 'includeCSSLibs.' => array('googlewebfont' => 'https://fonts.googleapis.com/css?family=Source Sans Pro:300,400,700', 'googlewebfont.' => array('external' => '1', 'disableCompression' => '1', 'excludeFromConcatenation' => '1', 'fontLoader.' => array('families.' => array('Source Sans Pro:300,400,700'), 'enabled' => '1'), 'if.' => array('isTrue' => '1')), 'bootstrappackageicon' => 'EXT:bootstrap_package/Resources/Public/Fonts/bootstrappackageicon.min.css', 'bootstrappackageicon.' => array('fontLoader.' => array('families.' => array('BootstrapPackageIcon'), 'enabled' => '1'))), 'includeJSLibs.' => array('wpfix' => '>'), 'theme.' => array('footerSitemapShowLang' => 'TEXT', 'footerSitemapShowLang.' => array('value' => '0')), 'includeJSFooter.' => array('EXT:cs_seo/Resources/Public/JavaScript/jquery.cs_seo.ga.js', '654.' => array('if.' => array('isTrue' => '')), 'getslots' => 'typo3conf/ext/dated_news/Resources/Public/JS/getslots.js', 'powermailJQueryDatepicker' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/jquery.datetimepicker.min.js', 'powermailJQueryFormValidation' => 'EXT:powermail/Resources/Public/JavaScript/Libraries/parsley.min.js', 'powermailJQueryTabs' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Tabs.min.js', 'powermailForm' => 'EXT:powermail/Resources/Public/JavaScript/Powermail/Form.min.js', 'loctimize' => 'EXT:loctimize_sitepackage/Resources/Public/JavaScript/loctimize.js', 'counter' => 'EXT:loctimize_sitepackage/Resources/Public/JavaScript/counter.js', 'dated_news' => 'EXT:loctimize_sitepackage/Resources/Public/JavaScript/dated_news.js', 'bs_select' => 'EXT:loctimize_sitepackage/Resources/Public/JavaScript/bootstrap-select.js', 'featherlightbox' => 'EXT:loctimize_sitepackage/Resources/Public/JavaScript/featherlight.min.js', 'featherlightbox_gallery' => 'EXT:loctimize_sitepackage/Resources/Public/JavaScript/featherlight.gallery.min.js', 'matchheight' => 'EXT:loctimize_sitepackage/Resources/Public/JavaScript/matchheight.js', 'owlslider' => 'EXT:loctimize_sitepackage/Resources/Public/JavaScript/owl-carousel/owl.carousel.min.js', 'owlslider.' => array('excludeFromConcatenation' => '1', 'disableCompression' => '1')), 'footerData.' => array('USER', '655.' => array('userFunc' => 'Clickstorm\\CsSeo\\UserFunc\\StructuredData->getSiteSearch', 'userFunc.' => array('pid' => '0', 'searchterm' => 'searchterm'), 'stdWrap.' => array('if.' => array('isTrue' => ''))), 'USER', '656.' => array('userFunc' => 'Clickstorm\\CsSeo\\UserFunc\\StructuredData->getBreadcrumb', 'stdWrap.' => array('if.' => array('isTrue' => ''))), '667.' => array('value' => '<script src="/fileadmin/template/js/js-webshim/en.WebshimForm.js" type="text/javascript"></script>')), 'jsFooterInline.' => array(), 'config.' => array('defaultGetVars.' => array('L' => '0'), 'sys_language_mode' => 'content_fallback')))
in /var/www/vhosts/loctimize.com/html/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 /var/www/vhosts/loctimize.com/html/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 /var/www/vhosts/loctimize.com/html/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 /var/www/vhosts/loctimize.com/html/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 /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 45
     * @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\Adminpanel\Middleware\AdminPanelDataPersister->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelRenderer.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\Adminpanel\Middleware\AdminPanelRenderer->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/loctimize.com/html/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/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/loctimize.com/html/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/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/loctimize.com/html/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/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/loctimize.com/html/typo3conf/ext/feedit/Classes/Middleware/FrontendEditInitiator.php line 68
                    }
                }
            }
        }
        return $handler->handle($request);
    }

    /**
     * Returns TRUE if an edit-action is sent from the Admin Panel
at TYPO3\CMS\Feedit\Middleware\FrontendEditInitiator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/loctimize.com/html/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/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/loctimize.com/html/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/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/adminpanel/Classes/Middleware/SqlLogging.php line 58
        if (StateUtility::isActivatedForUser() && StateUtility::isOpen()) {
            $connection = $this->connectionPool->getConnectionByName(ConnectionPool::DEFAULT_CONNECTION_NAME);
            $connection->getConfiguration()->setSQLLogger(GeneralUtility::makeInstance(DoctrineSqlLogger::class));
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\SqlLogging->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 80

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

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/loctimize.com/html/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/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelInitiator.php line 55
                MainController::class
            );
            $request = $adminPanelController->initialize($request);
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelInitiator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 77
        // 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/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/loctimize.com/html/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/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

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

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php0x7f382319541b))
in /var/www/vhosts/loctimize.com/html/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/vhosts/loctimize.com/html/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 /var/www/vhosts/loctimize.com/html/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 /var/www/vhosts/loctimize.com/html/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 /var/www/vhosts/loctimize.com/html/index.php line 25
// Set up the application for the frontend
call_user_func(function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /var/www/vhosts/loctimize.com/html/index.php line 26
call_user_func(function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});