Whoops, looks like something went wrong.

Get help in the TYPO3 Documentation

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

Find a solution for this exception in the TYPO3 Documentation.

(1/1) #1298012500 TYPO3\CMS\Extbase\Mvc\Controller\Exception\RequiredArgumentMissingException

Required argument "exhibition" is not set for Albertvanderveen\Depont\Controller\ExhibitionController->detail.

in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 1044
            $argumentName = $argument->getName();
            if ($this->request->hasArgument($argumentName)) {
                $this->setArgumentValue($argument, $this->request->getArgument($argumentName));
            } elseif ($argument->isRequired()) {
                throw new RequiredArgumentMissingException('Required argument "' . $argumentName . '" is not set for ' . $this->request->getControllerObjectName() . '->' . $this->request->getControllerActionName() . '.', 1298012500);
            }
        }
    }

at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->mapRequestArgumentsToControllerArguments()
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 481
        $callable = [$this, $actionInitializationMethodName];
        if (is_callable($callable)) {
            $callable();
        }
        $this->mapRequestArgumentsToControllerArguments();
        // @deprecated since v11, will be removed with v12.
        $this->controllerContext = $this->buildControllerContext();
        $this->view = $this->resolveView();
        if ($this->view !== null && method_exists($this, 'initializeView')) {
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Request))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 96
                throw new InfiniteLoopException('Could not ultimately dispatch the request after ' . $dispatchLoopCount . ' iterations. Most probably, a @' . IgnoreValidation::class . ' annotation is missing on re-displaying a form with validation errors.', 1217839467);
            }
            $controller = $this->resolveController($request);
            try {
                $response = $controller->processRequest($request);
                if ($response instanceof ForwardResponse) {
                    // The controller action returned an extbase internal Forward response:
                    // Another action should be dispatched.
                    $request = static::buildRequestFromCurrentRequestAndForwardResponse($request, $response);
at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Request))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 46
     * @throws InfiniteLoopException
     */
    public function handleRequest(RequestInterface $request)
    {
        return $this->dispatcher->dispatch($request);
    }

    /**
     * This request handler can handle any web request.
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest(object(TYPO3\CMS\Extbase\Mvc\Request))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 165
        }

        // Dispatch the extbase request
        $requestHandler = $this->requestHandlerResolver->resolveRequestHandler($extbaseRequest);
        $response = $requestHandler->handleRequest($extbaseRequest);
        if ($response->getStatusCode() >= 300) {
            // Avoid caching the plugin when we issue a redirect or error response
            // This means that even when an action is configured as cachable
            // we avoid the plugin to be cached, but keep the page cache untouched
at TYPO3\CMS\Extbase\Core\Bootstrap->handleFrontendRequest(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 148
    public function run(string $content, array $configuration, ?ServerRequestInterface $request = null): string
    {
        $request = $request ?? $GLOBALS['TYPO3_REQUEST'];
        $this->initialize($configuration);
        return $this->handleFrontendRequest($request);
    }

    protected function handleFrontendRequest(ServerRequestInterface $request): string
    {
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Exhibition'), object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5431
                        // Extensions should either drop the property altogether if they don't need current instance
                        // of ContentObjectRenderer, or set the property to protected and use the setter above.
                        $classObj->cObj = $this;
                    }
                    $content = $callable($content, $conf, $this->getRequest());
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', LogLevel::ERROR);
                }
            } else {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Exhibition'), '')
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 44
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->processNonCacheableContentPartsAndSubstituteContentMarkers()!
            $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
        }
        $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
        if ($this->cObj->doConvertToUserIntObject) {
            $this->cObj->doConvertToUserIntObject = false;
            $content = $this->cObj->cObjGetSingle('USER_INT', $conf);
        } else {
at TYPO3\CMS\Frontend\ContentObject\UserContentObject->render(array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Exhibition'))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Exhibition'))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Exhibition'), 'tt_content.list.20.depont_exhibition')
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 197
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\FrontendEditing\Xclass\ContentObject\ContentObjectRenderer), array('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'depont_artist' => 'USER', 'depont_artist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Artist'), 'depont_work' => 'USER', 'depont_work.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Work'), 'depont_exhibition' => 'USER', 'depont_exhibition.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Exhibition'), 'depont_event' => 'USER', 'depont_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Event'), 'depont_infoscreen' => 'USER', 'depont_infoscreen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Infoscreen'), 'depont_registration' => 'USER', 'depont_registration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Registration'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1'), 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest')), 'tt_content.list.20.depont_exhibition', 'depont_exhibition')
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 174
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('uid' => 141, 'pid' => 46, 't3ver_oid' => 0, 'tstamp' => 1503239831, 'hidden' => 0, 'sorting' => 100, 'CType' => 'list', 'header' => '', 'header_position' => '', 'bodytext' => '', 'image' => 0, 'imagewidth' => 0, 'imageorient' => 8, 'imagecols' => 0, 'imageborder' => 0, 'media' => 0, 'layout' => '0', 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '26,1,25', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '0', 'list_type' => 'depont_exhibition', 'sectionIndex' => 1, 'linkToTop' => 0, 'filelink_size' => 0, '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="switchableControllerActions"> <value index="vDEF">Exhibition-&gt;detail</value> </field> </language> </sheet> </data></T3FlexForms>', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":null,"colPos":null,"header":null,"header_layout":null,"header_position":null,"date":null,"header_link":null,"subheader":null,"list_type":null,"pi_flexform":null,"pages":null,"recursive":null,"layout":null,"frame_class":null,"space_before_class":null,"space_after_class":null,"sectionIndex":null,"linkToTop":null,"sys_language_uid":null,"hidden":null,"starttime":null,"endtime":null,"fe_group":null,"editlock":null,"categories":null,"rowDescription":null,"tx_gridelements_container":null}', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 0, 'crdate' => 0, 'cruser_id' => 0, 'module_sys_dmail_category' => 0, 'file_collections' => null, 'filelink_sorting' => '', 'target' => '', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'icon' => '', 'icon_position' => '', 'icon_size' => 'default', 'icon_type' => 'default', 'icon_color' => '', 'icon_background' => '', 'external_media_source' => '', 'external_media_ratio' => '', 'tx_bootstrappackage_carousel_item' => 0, 'tx_bootstrappackage_accordion_item' => 0, 'tx_bootstrappackage_tab_item' => 0, 'assets' => 0, 'backupColPos' => -2, 'tx_gridelements_backend_layout' => '', 'tx_gridelements_children' => 0, 'tx_gridelements_container' => 0, 'tx_gridelements_columns' => 0, 'slickdefault' => 0, 'slickheight' => '', 'tx_slickcarouselbgimg' => '', 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'teaser' => null, 'quote_source' => '', 'quote_link' => '', 'panel_class' => 'default', 'tx_news_related_news' => 0, 'l10n_state' => null, 'filelink_sorting_direction' => '', 'readmore_label' => '', '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, 'background_image_options' => null, 'gridelements_shortcut_page_order_by' => 0, 'aspect_ratio' => '1.3333333333333', 'items_per_page' => 10, 'frame_layout' => 'default'), 'typoscriptObjectPath' => 'tt_content.list.20.depont_exhibition', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /data/sites/web/depontnl/subsites/production/var/cache/code/fluid_template/Standard_action_list_181e87d345b39bd63c53b3af11100de8a2cfbeb4.php line 69
'currentValueKey' => NULL,
'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_181e87d345b39bd63c53b3af11100de8a2cfbeb4->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /data/sites/web/depontnl/subsites/production/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 257
                    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 /data/sites/web/depontnl/subsites/production/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 166
            $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 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, 'arguments' => array(), 'optional' => true, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /data/sites/web/depontnl/subsites/production/var/cache/code/fluid_template/layout_Default_html_f34fa382b353bb1c59c82dada24e6f2dd42262d8.php line 938
'contentAs' => NULL,
'debug' => true,
];

$output93 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments119, $renderChildrenClosure120, $renderingContext);

$output93 .= '
                                ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_f34fa382b353bb1c59c82dada24e6f2dd42262d8->{closure}()
in /data/sites/web/depontnl/subsites/production/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__then'])) {
                return $arguments['__then']();
            }
            return '';
        }
        if (!empty($arguments['__elseIf'])) {
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__then' => object(Closure), '__else' => object(Closure)), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /data/sites/web/depontnl/subsites/production/var/cache/code/fluid_template/layout_Default_html_f34fa382b353bb1c59c82dada24e6f2dd42262d8.php line 1415
return $output137;
},
];

$output3 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments90, static fn() => '', $renderingContext)
;

$output3 .= '
';
at layout_Default_html_f34fa382b353bb1c59c82dada24e6f2dd42262d8->{closure}()
in /data/sites/web/depontnl/subsites/production/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 61
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', (string)$childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic(array(), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /data/sites/web/depontnl/subsites/production/var/cache/code/fluid_template/layout_Default_html_f34fa382b353bb1c59c82dada24e6f2dd42262d8.php line 1426

$arguments1 = [
];

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

$output0 .= '

';
at layout_Default_html_f34fa382b353bb1c59c82dada24e6f2dd42262d8->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /data/sites/web/depontnl/subsites/production/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 199
            } 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 /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 340
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 106

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'List', 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:depont/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:depont/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:depont/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', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'xlarge' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'xlarge' => '0.16666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1400', 'width' => '1280'), 'xlarge.' => 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', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'xlarge' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80', 'medium' => '80')), '21.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80', 'medium' => '80')), '22.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80', 'medium' => '80'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16'), 'corrections.' => array('default' => '21', 'xlarge' => '21', 'large' => '21', 'medium' => '21', 'small' => '42', 'extrasmall' => '42')), 'top.' => array('corrections.' => array('default' => '42', 'xlarge' => '42', 'large' => '42', 'medium' => '42', 'small' => '42', 'extrasmall' => '42')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16'), 'corrections.' => array('default' => '21', 'xlarge' => '21', 'large' => '21', 'medium' => '21', 'small' => '42', 'extrasmall' => '42')), 'bottom.' => array('corrections.' => array('default' => '42', 'xlarge' => '42', 'large' => '42', 'medium' => '42', 'small' => '42', 'extrasmall' => '42'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '32'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '48', 'xlarge' => '48', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('background_image.' => array('multiplier.' => array('default' => '1.5', 'xlarge' => '1.5', 'large' => '1.5')), 'text_and_image.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('background_image.' => array('multiplier.' => array('default' => '1.5', 'xlarge' => '1.5', 'large' => '1.5')), 'text_and_image.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('background_image.' => array('multiplier.' => array('default' => '1.5', 'xlarge' => '1.5', 'large' => '1.5')), 'text_and_image.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'xlarge' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '32'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '48', 'xlarge' => '48', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '32'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '48', 'xlarge' => '48', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '16', 'small' => '16'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '16', 'small' => '16'))))), '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' => '', 'width' => '169'))), '20.' => array('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'depont_artist' => 'USER', 'depont_artist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Artist'), 'depont_work' => 'USER', 'depont_work.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Work'), 'depont_exhibition' => 'USER', 'depont_exhibition.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Exhibition'), 'depont_event' => 'USER', 'depont_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Event'), 'depont_infoscreen' => 'USER', 'depont_infoscreen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Infoscreen'), 'depont_registration' => 'USER', 'depont_registration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Registration'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1'), 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'))))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'List', 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:depont/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:depont/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:depont/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', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'xlarge' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'xlarge' => '0.16666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1400', 'width' => '1280'), 'xlarge.' => 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', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'xlarge' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80', 'medium' => '80')), '21.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80', 'medium' => '80')), '22.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80', 'medium' => '80'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16'), 'corrections.' => array('default' => '21', 'xlarge' => '21', 'large' => '21', 'medium' => '21', 'small' => '42', 'extrasmall' => '42')), 'top.' => array('corrections.' => array('default' => '42', 'xlarge' => '42', 'large' => '42', 'medium' => '42', 'small' => '42', 'extrasmall' => '42')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16'), 'corrections.' => array('default' => '21', 'xlarge' => '21', 'large' => '21', 'medium' => '21', 'small' => '42', 'extrasmall' => '42')), 'bottom.' => array('corrections.' => array('default' => '42', 'xlarge' => '42', 'large' => '42', 'medium' => '42', 'small' => '42', 'extrasmall' => '42'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '32'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '48', 'xlarge' => '48', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('background_image.' => array('multiplier.' => array('default' => '1.5', 'xlarge' => '1.5', 'large' => '1.5')), 'text_and_image.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('background_image.' => array('multiplier.' => array('default' => '1.5', 'xlarge' => '1.5', 'large' => '1.5')), 'text_and_image.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('background_image.' => array('multiplier.' => array('default' => '1.5', 'xlarge' => '1.5', 'large' => '1.5')), 'text_and_image.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'xlarge' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '32'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '48', 'xlarge' => '48', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '32'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '48', 'xlarge' => '48', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '16', 'small' => '16'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '16', 'small' => '16'))))), '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' => '', 'width' => '169'))), '20.' => array('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'depont_artist' => 'USER', 'depont_artist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Artist'), 'depont_work' => 'USER', 'depont_work.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Work'), 'depont_exhibition' => 'USER', 'depont_exhibition.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Exhibition'), 'depont_event' => 'USER', 'depont_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Event'), 'depont_infoscreen' => 'USER', 'depont_infoscreen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Infoscreen'), 'depont_registration' => 'USER', 'depont_registration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Registration'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1'), 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'))))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:depont/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:depont/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:depont/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', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'xlarge' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'xlarge' => '0.16666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1400', 'width' => '1280'), 'xlarge.' => 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', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'xlarge' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80', 'medium' => '80')), '21.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80', 'medium' => '80')), '22.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80', 'medium' => '80'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16'), 'corrections.' => array('default' => '21', 'xlarge' => '21', 'large' => '21', 'medium' => '21', 'small' => '42', 'extrasmall' => '42')), 'top.' => array('corrections.' => array('default' => '42', 'xlarge' => '42', 'large' => '42', 'medium' => '42', 'small' => '42', 'extrasmall' => '42')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16'), 'corrections.' => array('default' => '21', 'xlarge' => '21', 'large' => '21', 'medium' => '21', 'small' => '42', 'extrasmall' => '42')), 'bottom.' => array('corrections.' => array('default' => '42', 'xlarge' => '42', 'large' => '42', 'medium' => '42', 'small' => '42', 'extrasmall' => '42'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '32'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '48', 'xlarge' => '48', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('background_image.' => array('multiplier.' => array('default' => '1.5', 'xlarge' => '1.5', 'large' => '1.5')), 'text_and_image.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('background_image.' => array('multiplier.' => array('default' => '1.5', 'xlarge' => '1.5', 'large' => '1.5')), 'text_and_image.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('background_image.' => array('multiplier.' => array('default' => '1.5', 'xlarge' => '1.5', 'large' => '1.5')), 'text_and_image.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'xlarge' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '32'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '48', 'xlarge' => '48', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '32'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '48', 'xlarge' => '48', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '16', 'small' => '16'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '16', 'small' => '16'))))), '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' => '', 'width' => '169'))), '20.' => array('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'depont_artist' => 'USER', 'depont_artist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Artist'), 'depont_work' => 'USER', 'depont_work.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Work'), 'depont_exhibition' => 'USER', 'depont_exhibition.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Exhibition'), 'depont_event' => 'USER', 'depont_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Event'), 'depont_infoscreen' => 'USER', 'depont_infoscreen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Infoscreen'), 'depont_registration' => 'USER', 'depont_registration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Registration'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1'), 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'))), 'lib.contentElement')
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 746
            [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
            $conf = array_replace_recursive($conf, $confOverride);
            // Getting the cObject
            $timeTracker->incStackPointer();
            $content .= $this->cObjGetSingle($name, $conf, $key);
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:depont/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:depont/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:depont/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', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'xlarge' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'xlarge' => '0.16666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1400', 'width' => '1280'), 'xlarge.' => 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', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'xlarge' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80', 'medium' => '80')), '21.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80', 'medium' => '80')), '22.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80', 'medium' => '80'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16'), 'corrections.' => array('default' => '21', 'xlarge' => '21', 'large' => '21', 'medium' => '21', 'small' => '42', 'extrasmall' => '42')), 'top.' => array('corrections.' => array('default' => '42', 'xlarge' => '42', 'large' => '42', 'medium' => '42', 'small' => '42', 'extrasmall' => '42')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16'), 'corrections.' => array('default' => '21', 'xlarge' => '21', 'large' => '21', 'medium' => '21', 'small' => '42', 'extrasmall' => '42')), 'bottom.' => array('corrections.' => array('default' => '42', 'xlarge' => '42', 'large' => '42', 'medium' => '42', 'small' => '42', 'extrasmall' => '42'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '32'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '48', 'xlarge' => '48', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('background_image.' => array('multiplier.' => array('default' => '1.5', 'xlarge' => '1.5', 'large' => '1.5')), 'text_and_image.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('background_image.' => array('multiplier.' => array('default' => '1.5', 'xlarge' => '1.5', 'large' => '1.5')), 'text_and_image.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('background_image.' => array('multiplier.' => array('default' => '1.5', 'xlarge' => '1.5', 'large' => '1.5')), 'text_and_image.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'xlarge' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '32'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '48', 'xlarge' => '48', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '32'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '48', 'xlarge' => '48', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '16', 'small' => '16'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '16', 'small' => '16'))))), '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' => '', 'width' => '169'))), '20.' => array('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'depont_artist' => 'USER', 'depont_artist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Artist'), 'depont_work' => 'USER', 'depont_work.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Work'), 'depont_exhibition' => 'USER', 'depont_exhibition.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Exhibition'), 'depont_event' => 'USER', 'depont_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Event'), 'depont_infoscreen' => 'USER', 'depont_infoscreen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Infoscreen'), 'depont_registration' => 'USER', 'depont_registration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Registration'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1'), 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'))), 'list')
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 45
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'depont_artist' => 'USER', 'depont_artist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Artist'), 'depont_work' => 'USER', 'depont_work.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Work'), 'depont_exhibition' => 'USER', 'depont_exhibition.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Exhibition'), 'depont_event' => 'USER', 'depont_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Event'), 'depont_infoscreen' => 'USER', 'depont_infoscreen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Infoscreen'), 'depont_registration' => 'USER', 'depont_registration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Registration'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1'), 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'))), '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')), 'mindshapecookieconsent_consent' => '< lib.contentElement', 'mindshapecookieconsent_consent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consent')), 'mindshapecookieconsent_consentmodal' => '< lib.contentElement', 'mindshapecookieconsent_consentmodal.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consentmodal')), 'mindshapecookieconsent_cookielist' => '< lib.contentElement', 'mindshapecookieconsent_cookielist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Cookielist')), 'typoscriptcode_content' => '< lib.contentElement', 'typoscriptcode_content.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TyposcriptCode', 'pluginName' => 'Content')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/', 'EXT:bootstrap_grids/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/', 'EXT:bootstrap_grids/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children', 'options.' => array('resolveChildFlexFormData' => '0'))))), 'slickcarousel' => 'FLUIDTEMPLATE', 'slickcarousel.' => array('templateName' => 'Slickcarousel', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'slickdefault'), 'as' => 'slickimages')), 'variables.' => array('tx_slickcarousel_maxWidth' => 'TEXT', 'tx_slickcarousel_maxWidth.' => array('value' => '2260'))), 'slickcarouselbasic' => 'FLUIDTEMPLATE', 'slickcarouselbasic.' => array('templateName' => 'Slickcarouselbasic', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'slickdefault'), 'as' => 'slickimages')), 'variables.' => array('tx_slickcarousel_maxWidth' => 'TEXT', 'tx_slickcarousel_maxWidth.' => array('value' => '650'))), 'slickcarouselsync' => 'FLUIDTEMPLATE', 'slickcarouselsync.' => array('templateName' => 'Slickcarouselsync', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'slickdefault'), 'as' => 'slickimages'))), 'slickcarouselbgimg' => 'FLUIDTEMPLATE', 'slickcarouselbgimg.' => array('templateName' => 'Slickcarouselbgimg', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_slickcarouselbgimg', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'as' => 'slides', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'))))), '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'))), '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'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header'), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html'), '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'))), '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,tx_news_domain_model_news,pages', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1')), 'pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), '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'))))), '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'))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text'), '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'))), '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')))), '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'))))), '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')))))), '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'), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'link_icon_set'), 'iconIdentifier.' => array('field' => 'link_icon_identifier'), 'iconFileFieldName' => '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'))))), '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'))))), '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'))))), 'external_media' => '< lib.contentElement', 'external_media.' => array('templateName' => 'ExternalMedia'), 'gallery' => '< lib.contentElement', 'gallery.' => array('templateName' => 'Gallery', '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'))), '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('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'icon_set'), 'iconIdentifier.' => array('field' => 'icon_identifier'), 'iconFileFieldName' => 'icon_file', 'as' => 'icon'))))), 'listgroup' => '< lib.contentElement', 'listgroup.' => array('templateName' => 'ListGroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'items'))), 'panel' => '< lib.contentElement', 'panel.' => array('templateName' => 'Panel'), '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')))))), 'texticon' => '< lib.contentElement', 'texticon.' => array('templateName' => 'Texticon', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'icon_set'), 'iconIdentifier.' => array('field' => 'icon'), 'iconFileFieldName' => 'icon_file', 'as' => 'icon'))), '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', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'icon_set'), 'iconIdentifier.' => array('field' => 'icon_identifier'), 'iconFileFieldName' => 'icon_file', 'as' => 'icon'))))), '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}')), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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}')), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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'))), 'stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'depont_artist' => 'USER', 'depont_artist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Artist'), 'depont_work' => 'USER', 'depont_work.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Work'), 'depont_exhibition' => 'USER', 'depont_exhibition.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Exhibition'), 'depont_event' => 'USER', 'depont_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Event'), 'depont_infoscreen' => 'USER', 'depont_infoscreen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Infoscreen'), 'depont_registration' => 'USER', 'depont_registration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Registration'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1'), 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'))), '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')), 'mindshapecookieconsent_consent' => '< lib.contentElement', 'mindshapecookieconsent_consent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consent')), 'mindshapecookieconsent_consentmodal' => '< lib.contentElement', 'mindshapecookieconsent_consentmodal.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consentmodal')), 'mindshapecookieconsent_cookielist' => '< lib.contentElement', 'mindshapecookieconsent_cookielist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Cookielist')), 'typoscriptcode_content' => '< lib.contentElement', 'typoscriptcode_content.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TyposcriptCode', 'pluginName' => 'Content')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/', 'EXT:bootstrap_grids/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/', 'EXT:bootstrap_grids/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children', 'options.' => array('resolveChildFlexFormData' => '0'))))), 'slickcarousel' => 'FLUIDTEMPLATE', 'slickcarousel.' => array('templateName' => 'Slickcarousel', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'slickdefault'), 'as' => 'slickimages')), 'variables.' => array('tx_slickcarousel_maxWidth' => 'TEXT', 'tx_slickcarousel_maxWidth.' => array('value' => '2260'))), 'slickcarouselbasic' => 'FLUIDTEMPLATE', 'slickcarouselbasic.' => array('templateName' => 'Slickcarouselbasic', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'slickdefault'), 'as' => 'slickimages')), 'variables.' => array('tx_slickcarousel_maxWidth' => 'TEXT', 'tx_slickcarousel_maxWidth.' => array('value' => '650'))), 'slickcarouselsync' => 'FLUIDTEMPLATE', 'slickcarouselsync.' => array('templateName' => 'Slickcarouselsync', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'slickdefault'), 'as' => 'slickimages'))), 'slickcarouselbgimg' => 'FLUIDTEMPLATE', 'slickcarouselbgimg.' => array('templateName' => 'Slickcarouselbgimg', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_slickcarouselbgimg', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'as' => 'slides', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'))))), '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'))), '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'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header'), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html'), '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'))), '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,tx_news_domain_model_news,pages', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1')), 'pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), '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'))))), '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'))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text'), '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'))), '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')))), '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'))))), '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')))))), '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'), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'link_icon_set'), 'iconIdentifier.' => array('field' => 'link_icon_identifier'), 'iconFileFieldName' => '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'))))), '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'))))), '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'))))), 'external_media' => '< lib.contentElement', 'external_media.' => array('templateName' => 'ExternalMedia'), 'gallery' => '< lib.contentElement', 'gallery.' => array('templateName' => 'Gallery', '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'))), '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('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'icon_set'), 'iconIdentifier.' => array('field' => 'icon_identifier'), 'iconFileFieldName' => 'icon_file', 'as' => 'icon'))))), 'listgroup' => '< lib.contentElement', 'listgroup.' => array('templateName' => 'ListGroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'items'))), 'panel' => '< lib.contentElement', 'panel.' => array('templateName' => 'Panel'), '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')))))), 'texticon' => '< lib.contentElement', 'texticon.' => array('templateName' => 'Texticon', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'icon_set'), 'iconIdentifier.' => array('field' => 'icon'), 'iconFileFieldName' => 'icon_file', 'as' => 'icon'))), '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', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'icon_set'), 'iconIdentifier.' => array('field' => 'icon_identifier'), 'iconFileFieldName' => 'icon_file', 'as' => 'icon'))))), '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}')), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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}')), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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'))), 'stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'depont_artist' => 'USER', 'depont_artist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Artist'), 'depont_work' => 'USER', 'depont_work.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Work'), 'depont_exhibition' => 'USER', 'depont_exhibition.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Exhibition'), 'depont_event' => 'USER', 'depont_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Event'), 'depont_infoscreen' => 'USER', 'depont_infoscreen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Infoscreen'), 'depont_registration' => 'USER', 'depont_registration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Registration'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1'), 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'))), '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')), 'mindshapecookieconsent_consent' => '< lib.contentElement', 'mindshapecookieconsent_consent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consent')), 'mindshapecookieconsent_consentmodal' => '< lib.contentElement', 'mindshapecookieconsent_consentmodal.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consentmodal')), 'mindshapecookieconsent_cookielist' => '< lib.contentElement', 'mindshapecookieconsent_cookielist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Cookielist')), 'typoscriptcode_content' => '< lib.contentElement', 'typoscriptcode_content.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TyposcriptCode', 'pluginName' => 'Content')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/', 'EXT:bootstrap_grids/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/', 'EXT:bootstrap_grids/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children', 'options.' => array('resolveChildFlexFormData' => '0'))))), 'slickcarousel' => 'FLUIDTEMPLATE', 'slickcarousel.' => array('templateName' => 'Slickcarousel', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'slickdefault'), 'as' => 'slickimages')), 'variables.' => array('tx_slickcarousel_maxWidth' => 'TEXT', 'tx_slickcarousel_maxWidth.' => array('value' => '2260'))), 'slickcarouselbasic' => 'FLUIDTEMPLATE', 'slickcarouselbasic.' => array('templateName' => 'Slickcarouselbasic', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'slickdefault'), 'as' => 'slickimages')), 'variables.' => array('tx_slickcarousel_maxWidth' => 'TEXT', 'tx_slickcarousel_maxWidth.' => array('value' => '650'))), 'slickcarouselsync' => 'FLUIDTEMPLATE', 'slickcarouselsync.' => array('templateName' => 'Slickcarouselsync', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'slickdefault'), 'as' => 'slickimages'))), 'slickcarouselbgimg' => 'FLUIDTEMPLATE', 'slickcarouselbgimg.' => array('templateName' => 'Slickcarouselbgimg', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_slickcarouselbgimg', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'as' => 'slides', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'))))), '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'))), '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'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header'), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html'), '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'))), '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,tx_news_domain_model_news,pages', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1')), 'pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), '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'))))), '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'))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text'), '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'))), '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')))), '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'))))), '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')))))), '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'), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'link_icon_set'), 'iconIdentifier.' => array('field' => 'link_icon_identifier'), 'iconFileFieldName' => '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'))))), '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'))))), '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'))))), 'external_media' => '< lib.contentElement', 'external_media.' => array('templateName' => 'ExternalMedia'), 'gallery' => '< lib.contentElement', 'gallery.' => array('templateName' => 'Gallery', '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'))), '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('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'icon_set'), 'iconIdentifier.' => array('field' => 'icon_identifier'), 'iconFileFieldName' => 'icon_file', 'as' => 'icon'))))), 'listgroup' => '< lib.contentElement', 'listgroup.' => array('templateName' => 'ListGroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'items'))), 'panel' => '< lib.contentElement', 'panel.' => array('templateName' => 'Panel'), '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')))))), 'texticon' => '< lib.contentElement', 'texticon.' => array('templateName' => 'Texticon', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'icon_set'), 'iconIdentifier.' => array('field' => 'icon'), 'iconFileFieldName' => 'icon_file', 'as' => 'icon'))), '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', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'icon_set'), 'iconIdentifier.' => array('field' => 'icon_identifier'), 'iconFileFieldName' => 'icon_file', 'as' => 'icon'))))), '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}')), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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}')), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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'))), 'stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'tt_content')
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 746
            [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
            $conf = array_replace_recursive($conf, $confOverride);
            // Getting the cObject
            $timeTracker->incStackPointer();
            $content .= $this->cObjGetSingle($name, $conf, $key);
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', '20.' => array('ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'depont_artist' => 'USER', 'depont_artist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Artist'), 'depont_work' => 'USER', 'depont_work.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Work'), 'depont_exhibition' => 'USER', 'depont_exhibition.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Exhibition'), 'depont_event' => 'USER', 'depont_event.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Event'), 'depont_infoscreen' => 'USER', 'depont_infoscreen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Infoscreen'), 'depont_registration' => 'USER', 'depont_registration.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Depont', 'pluginName' => 'Registration'), 'fpnewsletter_pi1' => 'USER', 'fpnewsletter_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FpNewsletter', 'pluginName' => 'Pi1'), 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'))), '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')), 'mindshapecookieconsent_consent' => '< lib.contentElement', 'mindshapecookieconsent_consent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consent')), 'mindshapecookieconsent_consentmodal' => '< lib.contentElement', 'mindshapecookieconsent_consentmodal.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Consentmodal')), 'mindshapecookieconsent_cookielist' => '< lib.contentElement', 'mindshapecookieconsent_cookielist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'MindshapeCookieConsent', 'pluginName' => 'Cookielist')), 'typoscriptcode_content' => '< lib.contentElement', 'typoscriptcode_content.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TyposcriptCode', 'pluginName' => 'Content')), 'gridelements_pi1' => '< lib.contentElement', 'gridelements_pi1.' => array('templateName' => 'GridElement', 'templateName.' => array('override.' => array('field' => 'tx_gridelements_backend_layout')), 'templateRootPaths.' => array('EXT:gridelements/Resources/Private/Templates/', 'EXT:bootstrap_grids/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:gridelements/Resources/Private/Partials/', 'EXT:bootstrap_grids/Resources/Private/Partials/'), 'dataProcessing.' => array('GridElementsTeam\\Gridelements\\DataProcessing\\GridChildrenProcessor', '10.' => array('default.' => array('as' => 'children', 'options.' => array('resolveChildFlexFormData' => '0'))))), 'slickcarousel' => 'FLUIDTEMPLATE', 'slickcarousel.' => array('templateName' => 'Slickcarousel', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'slickdefault'), 'as' => 'slickimages')), 'variables.' => array('tx_slickcarousel_maxWidth' => 'TEXT', 'tx_slickcarousel_maxWidth.' => array('value' => '2260'))), 'slickcarouselbasic' => 'FLUIDTEMPLATE', 'slickcarouselbasic.' => array('templateName' => 'Slickcarouselbasic', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/', 'EXT:depont/Resources/Private/Extensions/slickcarousel/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'slickdefault'), 'as' => 'slickimages')), 'variables.' => array('tx_slickcarousel_maxWidth' => 'TEXT', 'tx_slickcarousel_maxWidth.' => array('value' => '650'))), 'slickcarouselsync' => 'FLUIDTEMPLATE', 'slickcarouselsync.' => array('templateName' => 'Slickcarouselsync', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '20.' => array('references.' => array('fieldName' => 'slickdefault'), 'as' => 'slickimages'))), 'slickcarouselbgimg' => 'FLUIDTEMPLATE', 'slickcarouselbgimg.' => array('templateName' => 'Slickcarouselbgimg', 'templateRootPaths.' => array('EXT:slickcarousel/Resources/Private/Templates/'), 'partialRootPaths.' => array('EXT:slickcarousel/Resources/Private/Partials/'), 'layoutRootPaths.' => array('EXT:slickcarousel/Resources/Private/Layouts/'), 'dataProcessing.' => array('Bo\\Slickcarousel\\DataProcessing\\FlexFormProcessor', 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tx_slickcarouselbgimg', 'pidInList.' => array('field' => 'pid'), 'where.' => array('data' => 'field:uid', 'intval' => '1', 'wrap' => 'tt_content=|'), 'orderBy' => 'sorting', 'as' => 'slides', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'), 'as' => 'images'))))), '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'))), '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'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header'), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html'), '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'))), '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,tx_news_domain_model_news,pages', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1')), 'pages' => 'COA', 'pages.' => array('LOAD_REGISTER', '5.' => array('tt_content_shortcut_recursive.' => array('field' => 'recursive')), 'USER', '10.' => array('userFunc' => 'GridElementsTeam\\Gridelements\\Plugin\\Gridelements->user_getTreeList'), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('data' => 'register:pidInList'), 'selectFields.' => array('dataWrap' => '*,FIND_IN_SET(pid,{register:pidInList}) AS gridelements_shortcut_page_order_by'), 'where' => 'colPos >= 0', 'languageField' => 'sys_language_uid', 'orderBy' => 'gridelements_shortcut_page_order_by,colPos,sorting')), 'RESTORE_REGISTER')))), '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'))))), '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'))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text'), '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'))), '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')))), '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'))))), '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')))))), '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'), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'link_icon_set'), 'iconIdentifier.' => array('field' => 'link_icon_identifier'), 'iconFileFieldName' => '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'))))), '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'))))), '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'))))), 'external_media' => '< lib.contentElement', 'external_media.' => array('templateName' => 'ExternalMedia'), 'gallery' => '< lib.contentElement', 'gallery.' => array('templateName' => 'Gallery', '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'))), '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('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'icon_set'), 'iconIdentifier.' => array('field' => 'icon_identifier'), 'iconFileFieldName' => 'icon_file', 'as' => 'icon'))))), 'listgroup' => '< lib.contentElement', 'listgroup.' => array('templateName' => 'ListGroup', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'items'))), 'panel' => '< lib.contentElement', 'panel.' => array('templateName' => 'Panel'), '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')))))), 'texticon' => '< lib.contentElement', 'texticon.' => array('templateName' => 'Texticon', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'icon_set'), 'iconIdentifier.' => array('field' => 'icon'), 'iconFileFieldName' => 'icon_file', 'as' => 'icon'))), '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', '20.' => array('references.' => array('fieldName' => 'image'), 'as' => 'image'), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'icon_set'), 'iconIdentifier.' => array('field' => 'icon_identifier'), 'iconFileFieldName' => 'icon_file', 'as' => 'icon'))))), '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}')), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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}')), 'BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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'))), 'stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), '')
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 96
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $registerField;
                        $this->cObj->lastChanged($row['tstamp'] ?? 0);
                        $cObj->start($row, $conf['table'], $this->request);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('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 /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentContentObject), array('table' => 'tt_content', 'select.' => array('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 /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('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 /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 713
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && !str_contains($theKey, '.')) {
                $conf = $setup[$theKey . '.'] ?? [];
                $contentObjects[] = $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $contentObjects;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSeparated(array('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 /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 693
    {
        if (!is_array($setup)) {
            return '';
        }
        return implode('', $this->cObjGetSeparated($setup, $addKey));
    }

    /**
     * Rendering of a "numerical array" of cObjects from TypoScript
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('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 /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectArrayContentObject.php line 43
        if (!empty($conf['if.']) && !$this->cObj->checkIf($conf['if.'])) {
            return '';
        }

        $content = $this->cObj->cObjGet($conf);
        $wrap = $this->cObj->stdWrapValue('wrap', $conf ?? []);
        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 /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\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 /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('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 /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 197
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\FrontendEditing\Xclass\ContentObject\ContentObjectRenderer), array('contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:depont/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:depont/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:depont/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', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'xlarge' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'xlarge' => '0.16666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1400', 'width' => '1280'), 'xlarge.' => 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', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '2_columns_25_75.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '2_columns_50_50.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'subnavigation_left.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '2_columns_offset_right.' => array('0.' => array('multiplier.' => array('default' => '0.6666', 'xlarge' => '0.6666', 'large' => '0.6666'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), '3_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'special_feature.' => array('30.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '31.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '32.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '33.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '34.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '35.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '36.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40')), '37.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40', 'small' => '40'))), 'special_start.' => array('20.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80', 'medium' => '80')), '21.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80', 'medium' => '80')), '22.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80', 'medium' => '80'))), 'subnavigation_left_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'subnavigation_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40'))), 'subnavigation_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')))), 'contentelements.' => array('textpic.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'textmedia.' => array('centered_left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'centered_right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'accordion.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16'), 'corrections.' => array('default' => '21', 'xlarge' => '21', 'large' => '21', 'medium' => '21', 'small' => '42', 'extrasmall' => '42')), 'top.' => array('corrections.' => array('default' => '42', 'xlarge' => '42', 'large' => '42', 'medium' => '42', 'small' => '42', 'extrasmall' => '42')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16'), 'corrections.' => array('default' => '21', 'xlarge' => '21', 'large' => '21', 'medium' => '21', 'small' => '42', 'extrasmall' => '42')), 'bottom.' => array('corrections.' => array('default' => '42', 'xlarge' => '42', 'large' => '42', 'medium' => '42', 'small' => '42', 'extrasmall' => '42'))), 'card_group.' => array('1.' => array('corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '32'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '48', 'xlarge' => '48', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'carousel.' => array('background_image.' => array('multiplier.' => array('default' => '1.5', 'xlarge' => '1.5', 'large' => '1.5')), 'text_and_image.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_small.' => array('background_image.' => array('multiplier.' => array('default' => '1.5', 'xlarge' => '1.5', 'large' => '1.5')), 'text_and_image.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'carousel_fullscreen.' => array('background_image.' => array('multiplier.' => array('default' => '1.5', 'xlarge' => '1.5', 'large' => '1.5')), 'text_and_image.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'))), 'tab.' => array('left.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16')), 'right.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16'))), 'timeline.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5'), 'corrections.' => array('default' => '49', 'xlarge' => '49', 'large' => '49', 'medium' => '49', 'small' => '72', 'extrasmall' => '72')), 'menu_card_dir.' => array('1.' => array('corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '32'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '48', 'xlarge' => '48', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_card_list.' => array('1.' => array('corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '32'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '48', 'xlarge' => '48', 'large' => '16', 'medium' => '16', 'small' => '16'), 'corrections.' => array('default' => '2', 'xlarge' => '2', 'large' => '2', 'medium' => '2', 'small' => '2', 'extrasmall' => '2'))), 'menu_thumbnail_dir.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '16', 'small' => '16'))), 'menu_thumbnail_list.' => array('2.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8')), '3.' => array('multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16')), '4.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '16', 'small' => '16'))))), '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' => '', 'width' => '169')))), '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,button,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,button', '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,button,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,button', 'denyTags' => '*', 'sword' => '<span class="text-highlight">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'externalBlocks' => 'button', 'externalBlocks.' => array('div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'button.' => 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')), 'solr_extbase_bootstrap' => 'USER', 'solr_extbase_bootstrap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'ApacheSolrForTypo3', 'extensionName' => 'Solr', 'settings.' => array('faceting.' => array('limit' => '10')), 'view.' => array('pluginNamespace' => 'tx_solr', 'templateRootPaths.' => array('EXT:solr/Resources/Private/Templates/', 'EXT:depont/Resources/Private/Extensions/solr/Templates/'), 'partialRootPaths.' => array('EXT:solr/Resources/Private/Partials/', 'EXT:depont/Resources/Private/Extensions/solr/Partials/'), 'layoutRootPaths.' => array('EXT:solr/Resources/Private/Layouts/', 'EXT:depont/Resources/Private/Extensions/solr/Layouts/'), 'templateFiles.' => array('results' => 'Results', 'results.' => array('availableTemplates.' => array('default.' => array('label' => 'Default Searchresults Template', 'file' => 'Results'), 'menu.' => array('label' => 'Menu Template', 'file' => 'Menu')))))), 'tx_news.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), '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'))), 'fotos' => 'COA', 'fotos.' => array('FILES', '10.' => array('stdWrap.' => array('wrap' => '<div id="slider" class="flexslider"><ul class="slides"> | </ul></div>'), 'folders' => '1:bestanden/voorpagina/', 'renderObj' => 'IMAGE', 'renderObj.' => array('wrap' => '<li>|</li>', 'file.' => array('import.' => array('data' => 'file:current:uid'), 'width' => '800c', 'height' => '520c'))), 'FILES', '20.' => array('stdWrap.' => array('wrap' => '<div id="carousel" class="flexslider"><ul class="slides"> | </ul></div>'), 'folders' => '1:bestanden/voorpagina/', 'renderObj' => 'IMAGE', 'renderObj.' => array('wrap' => '<li>|</li>', 'file.' => array('import.' => array('data' => 'file:current:uid'), 'width' => '800c', 'height' => '520c')))), 'navigation.' => array('main' => 'COA', 'main.' => array('HMENU', '20.' => array('entryLevel' => '0', 'debugItemConf' => '1', 'TMENU', '1.' => array('noBlur' => '1', 'wrap' => '<ul id="navmenu"> | </ul>', 'NO.' => array('stdWrap.' => array('case' => 'lower'), 'wrapItemAndSub' => '<li>|</li>'), 'ACT.' => array('stdWrap.' => array('case' => 'lower'), 'wrapItemAndSub' => '<li class="act">|</li>'), 'ACT' => '1', 'RO.' => array('stdWrap.' => array('case' => 'lower'), 'wrapItemAndSub' => '<li>|</li>'), 'RO' => '1'), 'TMENU', '2.' => array('noBlur' => '1', 'wrap' => '<ul class="subnav"> | </ul>', 'NO.' => array('stdWrap.' => array('case' => 'lower'), 'wrapItemAndSub' => '<li>|</li>'), 'ACT.' => array('stdWrap.' => array('case' => 'lower'), 'wrapItemAndSub' => '<li class="act">|</li>'), 'ACT' => '1', 'RO.' => array('stdWrap.' => array('case' => 'lower'), 'wrapItemAndSub' => '<li>|</li>'), 'RO' => '1'), 'TMENU', '3.' => array('noBlur' => '1', 'wrap' => '<ul class="subsubnav"> | </ul>', 'NO.' => array('stdWrap.' => array('case' => 'lower'), 'wrapItemAndSub' => '<li>|</li>'), 'ACT.' => array('stdWrap.' => array('case' => 'lower'), 'wrapItemAndSub' => '<li class="act">|</li>'), 'ACT' => '1', 'RO.' => array('stdWrap.' => array('case' => 'lower'), 'wrapItemAndSub' => '<li>|</li>'), 'RO' => '1', 'itemArrayProcFunc' => 'Albertvanderveen\\Depont\\Utility\\HmenuUserFunc->user_itemArrayProcFunc', 'IProcFunc' => 'Albertvanderveen\\Depont\\Utility\\HmenuUserFunc->user_IProcFunc')), '40.' => array('stdWrap.' => array('wrap' => '<div id="langswitch">|</div>')), 'USER', '50.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results', 'vendorName' => 'ApacheSolrForTypo3', 'controller' => 'Search', 'action' => 'results', 'switchableControllerActions.' => array('Search.' => array('results')), 'view.' => array('pluginNamespace' => 'tx_solr', 'templateRootPaths.' => array('EXT:solr/Resources/Private/Templates/', 'EXT:depont/Resources/Private/Extensions/solr/Templates/'), 'partialRootPaths.' => array('EXT:solr/Resources/Private/Partials/', 'EXT:depont/Resources/Private/Extensions/solr/Partials/'), 'layoutRootPaths.' => array('EXT:solr/Resources/Private/Layouts/', 'EXT:depont/Resources/Private/Extensions/solr/Layouts/'), 'templateFiles.' => array('results' => 'Menu', 'results.' => array('availableTemplates.' => array('default.' => array('label' => 'Default Searchresults Template', 'file' => 'Results'), 'menu.' => array('label' => 'Menu Template', 'file' => 'Menu'))))), 'settings.' => array('faceting.' => array('limit' => '10')))), 'header' => 'COA', 'header.' => array('HMENU', '20.' => array('special' => 'list', 'special.' => array('value' => '1649'), 'includeNotInMenu' => '1', 'TMENU', '1.' => array('noBlur' => '1', 'wrap' => '<ul id="headermenu" class="language-menu"> | </ul>', 'NO.' => array('stdWrap.' => array('case' => 'lower'), 'wrapItemAndSub' => '<li>|</li>'), 'ACT.' => array('stdWrap.' => array('case' => 'lower'), 'wrapItemAndSub' => '<li class="act">|</li>'), 'ACT' => '1', 'RO.' => array('stdWrap.' => array('case' => 'lower'), 'wrapItemAndSub' => '<li>|</li>'), 'RO' => '1'))), 'logo' => 'TEXT', 'logo.' => array('value' => ' <svg version="1.1" id="Laag_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 700 75" xml:space="preserve" > <path fill-rule="evenodd" fill="rgb(26, 195, 215)" d="M685.632,64.543 L685.632,70.564 L662.558,70.564 L662.558,28.731 L685.632,28.731 L685.632,34.752 L668.953,34.752 L668.953,45.351 L685.130,45.351 L685.130,51.372 L668.953,51.372 L668.953,64.543 L685.632,64.543 ZM617.294,70.564 L610.899,70.564 L610.899,25.909 L641.246,57.707 L641.246,28.731 L647.641,28.731 L647.641,73.136 L617.294,41.337 L617.294,70.564 ZM589.693,28.731 L596.089,28.731 L596.089,70.564 L589.693,70.564 L589.693,28.731 ZM560.675,28.731 L567.070,28.731 L567.070,64.543 L579.360,64.543 L579.360,70.564 L560.675,70.564 L560.675,28.731 ZM515.411,70.564 L509.015,70.564 L509.015,25.909 L539.363,57.707 L539.363,28.731 L545.758,28.731 L545.758,73.136 L515.411,41.337 L515.411,70.564 ZM474.592,71.380 C462.052,71.380 452.835,61.972 452.835,49.679 C452.835,37.386 462.052,27.978 474.592,27.978 C487.132,27.978 496.349,37.386 496.349,49.679 C496.349,61.972 487.132,71.380 474.592,71.380 ZM474.592,33.874 C465.626,33.874 459.230,40.397 459.230,49.679 C459.230,58.961 465.626,65.484 474.592,65.484 C483.558,65.484 489.954,58.961 489.954,49.679 C489.954,40.397 483.558,33.874 474.592,33.874 ZM405.927,70.564 L395.934,70.564 L395.934,14.607 L380.945,14.607 L380.945,5.199 L420.917,5.199 L420.917,14.607 L405.927,14.607 L405.927,70.564 ZM310.602,70.564 L300.609,70.564 L300.609,0.789 L348.027,50.474 L348.027,5.199 L358.021,5.199 L358.021,74.582 L310.602,24.897 L310.602,70.564 ZM241.827,71.838 C222.232,71.838 207.830,57.138 207.830,37.931 C207.830,18.723 222.232,4.023 241.827,4.023 C261.421,4.023 275.823,18.723 275.823,37.931 C275.823,57.138 261.421,71.838 241.827,71.838 ZM241.827,13.235 C227.817,13.235 217.823,23.427 217.823,37.931 C217.823,52.434 227.817,62.626 241.827,62.626 C255.836,62.626 265.830,52.434 265.830,37.931 C265.830,23.427 255.836,13.235 241.827,13.235 ZM168.250,44.007 L163.743,44.007 L163.743,70.564 L153.750,70.564 L153.750,5.199 L168.152,5.199 C172.169,5.199 177.753,5.591 182.456,8.727 C187.942,12.353 190.588,18.625 190.588,24.603 C190.588,28.425 189.608,34.305 184.219,38.911 C179.027,43.321 173.051,44.007 168.250,44.007 ZM168.152,14.411 L163.743,14.411 L163.743,34.795 L168.250,34.795 C176.872,34.795 180.986,30.581 180.986,24.505 C180.986,20.879 179.517,14.411 168.152,14.411 ZM74.296,5.199 L110.350,5.199 L110.350,14.607 L84.289,14.607 L84.289,31.169 L109.566,31.169 L109.566,40.577 L84.289,40.577 L84.289,61.156 L110.350,61.156 L110.350,70.564 L74.296,70.564 L74.296,5.199 ZM14.044,70.564 L0.524,70.564 L0.524,5.199 L14.240,5.199 C23.351,5.199 31.287,6.179 38.537,11.569 C46.473,17.547 51.077,27.053 51.077,37.931 C51.077,48.808 46.571,58.216 37.949,64.292 C30.307,69.682 23.155,70.564 14.044,70.564 ZM32.267,19.115 C26.584,14.999 19.628,14.607 14.828,14.607 L10.517,14.607 L10.517,61.156 L14.828,61.156 C19.726,61.156 26.486,60.764 32.169,56.550 C36.675,53.120 41.084,46.848 41.084,37.931 C41.084,29.307 36.969,22.545 32.267,19.115 Z"/> </svg>')), 'footer' => 'COA', 'footer.' => array('TEXT', '5.' => array('value' => '<div id="footerpont">'), 'TEXT', '10.' => array('value' => '<span class="bold">DE PONT</span> Wilhelminapark <span class="cijfer">1</span> Tilburg'), 'TEXT', '20.' => array('value' => '</div>'), 'HMENU', '30.' => array('special' => 'list', 'special.' => array('value' => '413,92,383,482,754,1645,483,6,441'), 'includeNotInMenu' => '1', 'TMENU', '1.' => array('noBlur' => '1', 'wrap' => '<ul id="footermenu"> | </ul>', 'NO.' => array('stdWrap.' => array('case' => 'lower'), 'wrapItemAndSub' => '<li>|</li><span class="pijpje">&#124;</span> |*||*| <li>|</li>&nbsp;')))), 'horScreenContent' => 'CONTENT', 'horScreenContent.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '722', 'orderBY' => 'sorting')), 'balieScreenContentLeft' => 'CONTENT', 'balieScreenContentLeft.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '873', 'orderBY' => 'sorting')), 'balieScreenContentRight' => 'CONTENT', 'balieScreenContentRight.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '874', 'orderBY' => 'sorting')), 'horScreenContentLeft' => 'CONTENT', 'horScreenContentLeft.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '1600', 'orderBY' => 'sorting')), 'horScreenContentRight' => 'CONTENT', 'horScreenContentRight.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '722', 'orderBY' => 'sorting')), 'frontpageMainContent' => 'CONTENT', 'frontpageMainContent.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '1604', 'orderBY' => 'sorting')), 'titel' => 'TEXT', 'titel.' => array('value' => '{page:title}', 'insertData' => '1'), 'footertext' => 'TEXT', 'footertext.' => array('value' => 'Abonnement opzeggen of aanpassen?<br /><br />U bent geabonneerd met het e-mailadres ###USER_email###.<br />Met dit adres kunt u via onderstaande link uw abonnement aanpassen.<br /><br />Klik <a href="http://www.depont.nl/index.php?id=92&amp;cmd=edit&amp;aC=###SYS_AUTHCODE###&amp;rU=###USER_uid###">hier</a> om uw abonnement te wijzigen of af te melden.'), 'beeldbank' => 'HMENU', 'beeldbank.' => array('special' => 'directory', 'special.' => array('value' => '70'), 'TMENU', '1.' => array('NO' => '1', 'NO.' => array('allWrap' => '<li>|</li>'), 'ACT' => '1', 'ACT.' => array('wrapItemAndSub' => '<li>|</li>'), 'wrap' => '<ul class="beeldbank">|</ul>'))), 'lib.dynamicContent', 'dynamicContent')
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 174
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('pageUid' => 46, 'colPos' => 0, 'slide' => null), 'typoscriptObjectPath' => 'lib.dynamicContent', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /data/sites/web/depontnl/subsites/production/var/cache/code/fluid_template/Standard_action_depontNavLeftNew_257e929ffbb61e3d74c62717f94c0c1128b34d8e.php line 154
'currentValueKey' => NULL,
'table' => '',
];
$renderChildrenClosure11 = ($arguments10['data'] !== null) ? function() use ($arguments10) { return $arguments10['data']; } : $renderChildrenClosure11;
$output4 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments10, $renderChildrenClosure11, $renderingContext);

$output4 .= '
                </main>
            </div>
at Standard_action_depontNavLeftNew_257e929ffbb61e3d74c62717f94c0c1128b34d8e->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /data/sites/web/depontnl/subsites/production/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 257
                    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 /data/sites/web/depontnl/subsites/production/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 166
            $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 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, 'arguments' => array(), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /data/sites/web/depontnl/subsites/production/var/cache/code/fluid_template/layout_NavLeftNew_html_e5190c34ccd5f1e1414ab4d6fd36512f149daf40.php line 240
'contentAs' => NULL,
'debug' => true,
];

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

$output3 .= '
        <!--TYPO3SEARCH_end-->
    </div>
at layout_NavLeftNew_html_e5190c34ccd5f1e1414ab4d6fd36512f149daf40->{closure}()
in /data/sites/web/depontnl/subsites/production/vendor/typo3fluid/fluid/src/ViewHelpers/SpacelessViewHelper.php line 61
     * @return string
     */
    public static function renderStatic(array $arguments, \Closure $childClosure, RenderingContextInterface $renderingContext)
    {
        return trim(preg_replace('/\\>\\s+\\</', '><', (string)$childClosure()));
    }
}
at TYPO3Fluid\Fluid\ViewHelpers\SpacelessViewHelper::renderStatic(array(), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /data/sites/web/depontnl/subsites/production/var/cache/code/fluid_template/layout_NavLeftNew_html_e5190c34ccd5f1e1414ab4d6fd36512f149daf40.php line 367

$arguments1 = [
];

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

$output0 .= '

';
at layout_NavLeftNew_html_e5190c34ccd5f1e1414ab4d6fd36512f149daf40->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /data/sites/web/depontnl/subsites/production/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 199
            } 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 /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 340
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 106

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => '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:depont/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:depont/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:depont/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' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => 'nav_icon', 'as' => 'icon'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', '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:depont/Resources/Public/Images/logo_depont.svg', 'inverted' => 'EXT:bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '76', 'width' => '740', 'linktitle' => '')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('value' => '12'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'Museum De Pont')), 'TEXT', '20.' => array('value' => 'Museum De Pont', 'if.' => array('isTrue' => 'Museum De Pont'))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array()), '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 /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 815
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\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:depont/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:depont/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:depont/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' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => 'nav_icon', 'as' => 'icon'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', '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:depont/Resources/Public/Images/logo_depont.svg', 'inverted' => 'EXT:bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '76', 'width' => '740', 'linktitle' => '')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('value' => '12'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'Museum De Pont')), 'TEXT', '20.' => array('value' => 'Museum De Pont', 'if.' => array('isTrue' => 'Museum De Pont'))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array()), '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 /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 751
            $timeTracker->decStackPointer();
        } else {
            $contentObject = $this->getContentObject($name);
            if ($contentObject) {
                $content .= $this->render($contentObject, $conf);
            }
        }
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => '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:depont/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:depont/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:depont/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' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => 'nav_icon', 'as' => 'icon'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', '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:depont/Resources/Public/Images/logo_depont.svg', 'inverted' => 'EXT:bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '76', 'width' => '740', 'linktitle' => '')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('value' => '12'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'Museum De Pont')), 'TEXT', '20.' => array('value' => 'Museum De Pont', 'if.' => array('isTrue' => 'Museum De Pont'))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array()), '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 /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 713
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && !str_contains($theKey, '.')) {
                $conf = $setup[$theKey . '.'] ?? [];
                $contentObjects[] = $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $contentObjects;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSeparated(array('includeCSS.' => array('theme' => 'EXT:depont/Resources/Public/Scss/Theme/theme.scss', 'slickcarousel' => 'EXT:slickcarousel/Resources/Public/Css/slick.min.css', 'theme.' => array('inline' => '1'), 'fancybox' => 'EXT:depont/Resources/Public/JavaScript/fancybox/source/jquery.fancybox.css', 'aos' => 'https://cdnjs.cloudflare.com/ajax/libs/aos/3.0.0-beta.6/aos.css', 'aos.' => array('external' => '1'), 'seizoencss' => 'EXT:depont/Resources/Public/Css/depont_lente.css', 'flexslider2' => ''), 'includeJSFooterlibs.' => array('popper' => 'EXT:bootstrap_package/Resources/Public/Contrib/popper-core/popper.min.js', 'bootstrap' => 'EXT:bootstrap_package/Resources/Public/Contrib/bootstrap5/js/bootstrap.min.js', 'jquery' => 'EXT:bootstrap_package/Resources/Public/Contrib/jquery/jquery.min.js', 'jquery.' => array('forceOnTop' => '1'), '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_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', 'slick' => 'EXT:slickcarousel/Resources/Public/JavaScript/slick.min.js', 'progressbar' => 'EXT:slickcarousel/Resources/Public/JavaScript/progressbar.min.js', 'flexslider' => 'EXT:depont/Resources/Public/JavaScript/flexslider/jquery.flexslider.js', 'mousewheel' => 'EXT:depont/Resources/Public/JavaScript/fancybox/lib/jquery.mousewheel-3.0.6.pack.js', 'fancybox' => 'EXT:depont/Resources/Public/JavaScript/fancybox/source/jquery.fancybox.pack.js', 'countdownTimer' => 'EXT:depont/Resources/Public/JavaScript/countdownTimer.js', 'aos' => 'https://cdnjs.cloudflare.com/ajax/libs/aos/3.0.0-beta.6/aos.js', 'aos.' => array('external' => '1'), 'flexslider2' => ''), 'typeNum' => '0', 'shortcutIcon' => 'EXT:bootstrap_package/Resources/Public/Icons/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'))))), 'TEXT', '22.' => array('data' => 'date : U', 'date' => 'c', 'wrap' => '<meta name="Last-Modified" content="|" />')), '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:depont/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:depont/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:depont/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' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => 'nav_icon', 'as' => 'icon'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', '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:depont/Resources/Public/Images/logo_depont.svg', 'inverted' => 'EXT:bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '76', 'width' => '740', 'linktitle' => '')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('value' => '12'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'Museum De Pont')), 'TEXT', '20.' => array('value' => 'Museum De Pont', 'if.' => array('isTrue' => 'Museum De Pont'))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array()), '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' => ''), 'includeCSSLibs.' => array('googlewebfont' => '', 'googlewebfont.' => array('external' => '1', 'disableCompression' => '1', 'excludeFromConcatenation' => '1', 'if.' => array('isTrue' => '1')), 'bootstrappackageicon' => 'EXT:bootstrap_package/Resources/Public/Fonts/bootstrappackageicon.min.css'), 'includeJSLibs.' => array('modernizr' => 'EXT:bootstrap_package/Resources/Public/Contrib/modernizr/modernizr.min.js', 'modernizr.' => array('forceOnTop' => '1', 'async' => '1')), 'jsInline.' => array('COA', '99.' => array('if.' => array('isTrue' => ''), 'TEXT', '10.' => array('value' => ' var gaProperty = \'\'; var disableStr = \'ga-disable-\' + gaProperty; if (document.cookie.indexOf(disableStr + \'=true\') > -1) { window[disableStr] = true; } function googleAnalyticsToggle(event) { if (document.cookie.indexOf(disableStr + \'=true\') > -1) { event.target.innerHTML = event.target.getAttribute(\'data-label-disable\'); googleAnalyticsOptIn(); } else { event.target.innerHTML = event.target.getAttribute(\'data-label-enable\'); googleAnalyticsOptOut(); } } function googleAnalyticsOptOut() { document.cookie = disableStr + \'=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/\'; window[disableStr] = true; } function googleAnalyticsOptIn() { document.cookie = disableStr + \'=; expires=Thu, 01 Jan 1970 00:00:01 UTC; path=/\'; window[disableStr] = false; } document.addEventListener(\'DOMContentLoaded\', function() { var matches = document.querySelectorAll(\'[data-action="googleAnalyticsToggle"]\'); for (i=0; i<matches.length; i++) { if (document.cookie.indexOf(disableStr + \'=true\') > -1) { matches[i].innerHTML = matches[i].getAttribute(\'data-label-enable\'); } else { matches[i].innerHTML = matches[i].getAttribute(\'data-label-disable\'); } matches[i].onclick = function(event) { event.preventDefault(); event.stopPropagation(); googleAnalyticsToggle(event); } } }); (function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'ga\'); ga(\'create\', \'\', \'auto\'); ga(\'set\', \'anonymizeIp\', true);'), 'TEXT', '90.' => array('value' => ' ga(\'send\', \'pageview\');'))), 'includeJSFooter.' => array('depont_const' => 'EXT:depont/Resources/Public/JavaScript/depont_jquery_const.js', 'depont_jquery' => 'EXT:depont/Resources/Public/JavaScript/depont_jquery.js', 'nieuwsbriefarchief' => 'EXT:depont/Resources/Public/JavaScript/depont_fancybox.js', 'countdownTimer' => 'EXT:depont/Resources/Public/JavaScript/countdownTimerCamera.js', 'aos' => 'EXT:depont/Resources/Public/JavaScript/depont_aos.js'), 'TEXT', '20.' => array('value' => '<script>// Define dataLayer and the gtag function.window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}// Set default consent to \'denied\' as a placeholder// Determine actual values based on your own requirementsgtag(\'consent\', \'default\', { \'ad_storage\': \'denied\', \'ad_user_data\': \'denied\', \'ad_personalization\': \'denied\', \'analytics_storage\': \'denied\'});</script><!-- Google Tag Manager --><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':new Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\'https://www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);})(window,document,\'script\',\'dataLayer\',\'GTM-K9D8LKB\');</script><!-- End Google Tag Manager -->')), '')
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 693
    {
        if (!is_array($setup)) {
            return '';
        }
        return implode('', $this->cObjGetSeparated($setup, $addKey));
    }

    /**
     * Rendering of a "numerical array" of cObjects from TypoScript
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('includeCSS.' => array('theme' => 'EXT:depont/Resources/Public/Scss/Theme/theme.scss', 'slickcarousel' => 'EXT:slickcarousel/Resources/Public/Css/slick.min.css', 'theme.' => array('inline' => '1'), 'fancybox' => 'EXT:depont/Resources/Public/JavaScript/fancybox/source/jquery.fancybox.css', 'aos' => 'https://cdnjs.cloudflare.com/ajax/libs/aos/3.0.0-beta.6/aos.css', 'aos.' => array('external' => '1'), 'seizoencss' => 'EXT:depont/Resources/Public/Css/depont_lente.css', 'flexslider2' => ''), 'includeJSFooterlibs.' => array('popper' => 'EXT:bootstrap_package/Resources/Public/Contrib/popper-core/popper.min.js', 'bootstrap' => 'EXT:bootstrap_package/Resources/Public/Contrib/bootstrap5/js/bootstrap.min.js', 'jquery' => 'EXT:bootstrap_package/Resources/Public/Contrib/jquery/jquery.min.js', 'jquery.' => array('forceOnTop' => '1'), '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_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', 'slick' => 'EXT:slickcarousel/Resources/Public/JavaScript/slick.min.js', 'progressbar' => 'EXT:slickcarousel/Resources/Public/JavaScript/progressbar.min.js', 'flexslider' => 'EXT:depont/Resources/Public/JavaScript/flexslider/jquery.flexslider.js', 'mousewheel' => 'EXT:depont/Resources/Public/JavaScript/fancybox/lib/jquery.mousewheel-3.0.6.pack.js', 'fancybox' => 'EXT:depont/Resources/Public/JavaScript/fancybox/source/jquery.fancybox.pack.js', 'countdownTimer' => 'EXT:depont/Resources/Public/JavaScript/countdownTimer.js', 'aos' => 'https://cdnjs.cloudflare.com/ajax/libs/aos/3.0.0-beta.6/aos.js', 'aos.' => array('external' => '1'), 'flexslider2' => ''), 'typeNum' => '0', 'shortcutIcon' => 'EXT:bootstrap_package/Resources/Public/Icons/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'))))), 'TEXT', '22.' => array('data' => 'date : U', 'date' => 'c', 'wrap' => '<meta name="Last-Modified" content="|" />')), '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:depont/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:depont/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:depont/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' => '2', 'includeSpacer' => '1', 'as' => 'mainnavigation', 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => '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('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1628754217.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => 'nav_icon', 'as' => 'icon'))), 'TYPO3\\CMS\\Frontend\\DataProcessing\\LanguageMenuProcessor', '40.' => array('languages' => 'auto', '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:depont/Resources/Public/Images/logo_depont.svg', 'inverted' => 'EXT:bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '76', 'width' => '740', 'linktitle' => '')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('value' => '12'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'Museum De Pont')), 'TEXT', '20.' => array('value' => 'Museum De Pont', 'if.' => array('isTrue' => 'Museum De Pont'))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array()), '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' => ''), 'includeCSSLibs.' => array('googlewebfont' => '', 'googlewebfont.' => array('external' => '1', 'disableCompression' => '1', 'excludeFromConcatenation' => '1', 'if.' => array('isTrue' => '1')), 'bootstrappackageicon' => 'EXT:bootstrap_package/Resources/Public/Fonts/bootstrappackageicon.min.css'), 'includeJSLibs.' => array('modernizr' => 'EXT:bootstrap_package/Resources/Public/Contrib/modernizr/modernizr.min.js', 'modernizr.' => array('forceOnTop' => '1', 'async' => '1')), 'jsInline.' => array('COA', '99.' => array('if.' => array('isTrue' => ''), 'TEXT', '10.' => array('value' => ' var gaProperty = \'\'; var disableStr = \'ga-disable-\' + gaProperty; if (document.cookie.indexOf(disableStr + \'=true\') > -1) { window[disableStr] = true; } function googleAnalyticsToggle(event) { if (document.cookie.indexOf(disableStr + \'=true\') > -1) { event.target.innerHTML = event.target.getAttribute(\'data-label-disable\'); googleAnalyticsOptIn(); } else { event.target.innerHTML = event.target.getAttribute(\'data-label-enable\'); googleAnalyticsOptOut(); } } function googleAnalyticsOptOut() { document.cookie = disableStr + \'=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/\'; window[disableStr] = true; } function googleAnalyticsOptIn() { document.cookie = disableStr + \'=; expires=Thu, 01 Jan 1970 00:00:01 UTC; path=/\'; window[disableStr] = false; } document.addEventListener(\'DOMContentLoaded\', function() { var matches = document.querySelectorAll(\'[data-action="googleAnalyticsToggle"]\'); for (i=0; i<matches.length; i++) { if (document.cookie.indexOf(disableStr + \'=true\') > -1) { matches[i].innerHTML = matches[i].getAttribute(\'data-label-enable\'); } else { matches[i].innerHTML = matches[i].getAttribute(\'data-label-disable\'); } matches[i].onclick = function(event) { event.preventDefault(); event.stopPropagation(); googleAnalyticsToggle(event); } } }); (function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,\'script\',\'//www.google-analytics.com/analytics.js\',\'ga\'); ga(\'create\', \'\', \'auto\'); ga(\'set\', \'anonymizeIp\', true);'), 'TEXT', '90.' => array('value' => ' ga(\'send\', \'pageview\');'))), 'includeJSFooter.' => array('depont_const' => 'EXT:depont/Resources/Public/JavaScript/depont_jquery_const.js', 'depont_jquery' => 'EXT:depont/Resources/Public/JavaScript/depont_jquery.js', 'nieuwsbriefarchief' => 'EXT:depont/Resources/Public/JavaScript/depont_fancybox.js', 'countdownTimer' => 'EXT:depont/Resources/Public/JavaScript/countdownTimerCamera.js', 'aos' => 'EXT:depont/Resources/Public/JavaScript/depont_aos.js'), 'TEXT', '20.' => array('value' => '<script>// Define dataLayer and the gtag function.window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}// Set default consent to \'denied\' as a placeholder// Determine actual values based on your own requirementsgtag(\'consent\', \'default\', { \'ad_storage\': \'denied\', \'ad_user_data\': \'denied\', \'ad_personalization\': \'denied\', \'analytics_storage\': \'denied\'});</script><!-- Google Tag Manager --><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':new Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\'https://www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);})(window,document,\'script\',\'dataLayer\',\'GTM-K9D8LKB\');</script><!-- End Google Tag Manager -->')))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 223
     * @return string
     */
    protected function generatePageBodyContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageBodyContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 189
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 141
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push($controller->sPre, 'PAGE');

            $controller->content = $this->generatePageContent($controller, $request);

            $this->timeTracker->pull($this->timeTracker->LR ? $controller->content : '');
            $this->timeTracker->decStackPointer();

at TYPO3\CMS\Frontend\Http\RequestHandler->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3conf/ext/rdct/Classes/Middleware/SendRedirect.php line 42
    {
        // No GET parameter set, do nothing
        $redirectHash = $request->getQueryParams()['RDCT'] ?? '';
        if (empty($redirectHash)) {
            return $handler->handle($request);
        }

        $row = $this->fetchRedirectRecord($redirectHash);
        if (is_array($row)) {
at FoT3\Rdct\Middleware\SendRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3conf/ext/vhs/Classes/Middleware/AssetInclusion.php line 20
class AssetInclusion implements MiddlewareInterface
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);

        $body = $response->getBody();
        $body->rewind();
        $contents = $body->getContents();
at FluidTYPO3\Vhs\Middleware\AssetInclusion->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Middleware/ResponsePropagation.php line 34
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        try {
            $response = $handler->handle($request);
        } catch (PropagateResponseException $e) {
            $response = $e->getResponse();
        }

at TYPO3\CMS\Core\Middleware\ResponsePropagation->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 48
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3conf/ext/solr/Classes/Middleware/PageIndexerFinisher.php line 42
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if ($request->hasHeader(PageIndexerRequest::SOLR_INDEX_HEADER)) {
            /* @var PageIndexerRequestHandler $pageIndexerRequestHandler */
            $pageIndexerRequestHandler = GeneralUtility::makeInstance(PageIndexerRequestHandler::class);
            $pageIndexerRequestHandler->shutdown();
at ApacheSolrForTypo3\Solr\Middleware\PageIndexerFinisher->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if ($GLOBALS['TSFE'] instanceof TypoScriptFrontendController) {
            if (
                (!isset($GLOBALS['TSFE']->config['config']['enableContentLengthHeader']) || $GLOBALS['TSFE']->config['config']['enableContentLengthHeader'])
                && !$GLOBALS['TSFE']->isBackendUserLoggedIn() && !($GLOBALS['TYPO3_CONF_VARS']['FE']['debug'] ?? false)
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 79
                );
            }
        }

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

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3conf/ext/frontend_editing/Classes/Middleware/FrontendEditing.php line 36
            $response->getBody()->write($controller->content);
            return $response;
        }

        return $handler->handle($request);
    }
}
at TYPO3\CMS\FrontendEditing\Middleware\FrontendEditing->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3conf/ext/jumpurl/Classes/Middleware/JumpUrlHandler.php line 74
            // Regular jump URL
            $this->validateIfJumpUrlRedirectIsAllowed($jumpUrl, $juHash);
            return $this->redirectToJumpUrl($jumpUrl);
        }
        return $handler->handle($request);
    }
    /**
     * Redirects the user to the given jump URL if all submitted values
     * are valid (checked before)
at FoT3\Jumpurl\Middleware\JumpUrlHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3conf/ext/direct_mail/Classes/Middleware/JumpurlController.php line 154
            $queryParamsToPass['juHash'] = $this->calculateJumpUrlHash($jumpurl);
            $queryParamsToPass['jumpurl'] = $jumpurl;
        }

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

    /**
     * Returns true of the conditions are met to process this middleware
at DirectMailTeam\DirectMail\Middleware\JumpurlController->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 78
                $this->convertCharsetRecursivelyToUtf8($parsedBody, $controller->metaCharset);
                $request = $request->withParsedBody($parsedBody);
            }
        }
        $response = $handler->handle($request);

        /**
         * Release TSFE locks. They have been acquired in the above call to controller->getFromCache().
         * TSFE locks are usually released by the RequestHandler 'final' middleware.
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3conf/ext/frontend_editing/Classes/Middleware/FrontendEditingAspect.php line 57
            // Change the sanitizer to allow the attributes used in Frontend Editing.
            $GLOBALS['TYPO3_CONF_VARS']['SYS']['htmlSanitizer']['default'] =
                FrontendEditingSanitizerBuilder::class;
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\FrontendEditing\Middleware\FrontendEditingAspect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3conf/ext/frontend_editing/Classes/Middleware/FrontendEditingInitiator.php line 45
            $GLOBALS['TSFE']->displayFieldEditIcons = 1;
            // Disable cHash check when browsing the frontend in frontend editing
            $GLOBALS['TYPO3_CONF_VARS']['FE']['pageNotFoundOnCHashError'] = false;
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\FrontendEditing\Middleware\FrontendEditingInitiator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 104
        // Make TSFE globally available
        // @todo deprecate $GLOBALS['TSFE'] once TSFE is retrieved from the
        //       PSR-7 request attribute frontend.controller throughout TYPO3 core
        $GLOBALS['TSFE'] = $controller;
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 132
            }
        }

        $request = $request->withAttribute('noCache', $this->disableCache);
        return $handler->handle($request);
    }

    /**
     * Filters out the arguments that are necessary for calculating cHash
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3conf/ext/solr/Classes/Middleware/PageIndexerInitialization.php line 66
            }
            $pageIndexerRequestHandler->run();
        }

        return $handler->handle($request);
    }
}
at ApacheSolrForTypo3\Solr\Middleware\PageIndexerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/PreviewSimulator.php line 66
            $previewAspect = GeneralUtility::makeInstance(PreviewAspect::class, $isPreview);
            $this->context->setAspect('frontend.preview', $previewAspect);
        }

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

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/PageResolver.php line 106
        // merge the PageArguments with the request query parameters
        $queryParams = array_replace_recursive($request->getQueryParams(), $pageArguments->getArguments());
        $request = $request->withQueryParams($queryParams);

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 80

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

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/SiteBaseRedirectResolver.php line 94
                $uri = $requestedUri->withPath(rtrim($requestedUri->getPath(), '/'));
                return new RedirectResponse($uri, 307);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 89
                return $response;
            }
        }

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

    protected function buildRedirectResponse(UriInterface $uri, array $redirectRecord): ResponseInterface
    {
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 97
        if ($this->context->getAspect('frontend.user')->isLoggedIn() && $rateLimiter) {
            $rateLimiter->reset();
        }

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

        // Store session data for fe_users if it still exists
        if ($frontendUser instanceof FrontendUserAuthentication) {
            $frontendUser->storeSessionData();
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 78
            Bootstrap::loadExtTables();
            $this->setBackendUserAspect($GLOBALS['BE_USER']);
        }

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

        // If, when building the response, the user is still available, then ensure that the headers are sent properly
        if ($this->context->getAspect('backend.user')->isLoggedIn()) {
            return $this->applyHeadersToResponse($response);
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/MaintenanceMode.php line 55
        ) {
            return GeneralUtility::makeInstance(ErrorController::class)->unavailableAction($request, 'This page is temporarily unavailable.');
        }
        // Continue the regular stack if no maintenance mode is active
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\MaintenanceMode->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/EidHandler.php line 64
    {
        $eID = $request->getParsedBody()['eID'] ?? $request->getQueryParams()['eID'] ?? null;

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

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/SiteResolver.php line 65
        $request = $request->withAttribute('routing', $routeResult);
        if ($routeResult->getLanguage() instanceof SiteLanguage) {
            Locales::setSystemLocaleFromSiteLanguage($routeResult->getLanguage());
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\SiteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3conf/ext/solr/Classes/Middleware/SolrRoutingMiddleware.php line 140
            $this->language->getLanguageId() === 0 ? (int)$page['uid'] : (int)$page['l10n_parent']
        );

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

        $this->configure($enhancerConfiguration);

at ApacheSolrForTypo3\Solr\Middleware\SolrRoutingMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Middleware/NormalizedParamsAttribute.php line 45
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $request = $request->withAttribute('normalizedParams', NormalizedParams::createFromRequest($request));
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Core\Middleware\NormalizedParamsAttribute->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Middleware/VerifyHostHeader.php line 55
                1396795884
            );
        }

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

    /**
     * Checks if the provided host header value matches the trusted hosts pattern.
at TYPO3\CMS\Core\Middleware\VerifyHostHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 58
        $this->timeTracker->setEnabled($timeTrackingEnabled);
        $this->timeTracker->start(microtime(true));
        $this->timeTracker->push('');

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

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at Psr\Http\Server\RequestHandlerInterface@anonymous/data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$7b7->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 78
     * @return ResponseInterface
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/AbstractApplication.php line 86
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        try {
            $response = $this->requestHandler->handle($request);
        } catch (ImmediateResponseException $exception) {
            $response = $exception->getResponse();
        }
        return $response;
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/frontend/Classes/Http/Application.php line 69
        // Create new request object having applicationType "I am a frontend request" attribute.
        $request = $request->withAttribute('applicationType', SystemEnvironmentBuilder::REQUESTTYPE_FE);

        $this->initializeContext();
        return parent::handle($request);
    }

    /**
     * Create a PSR-7 Response that redirects to the install tool
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /data/sites/web/depontnl/subsites/production/Web/typo3/sysext/core/Classes/Http/AbstractApplication.php line 100
     * @param callable $execute Deprecated, will be removed in TYPO3 v12.0
     */
    final public function run(callable $execute = null)
    {
        $response = $this->handle(ServerRequestFactory::fromGlobals());
        if ($execute !== null) {
            trigger_error('Custom execution of Application code will be removed in TYPO3 v12.0, use PSR-15 Middlewares instead.', E_USER_DEPRECATED);
            $execute();
        }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /data/sites/web/depontnl/subsites/production/Web/index.php line 20
// Set up the application for the frontend
call_user_func(static function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /data/sites/web/depontnl/subsites/production/Web/index.php line 21
call_user_func(static function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});