Whoops, looks like something went wrong.

Get help in the TYPO3 Documentation

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

Find a solution for this exception in the TYPO3 Documentation.

(1/1) #1297933823 TYPO3\CMS\Extbase\Property\Exception\TargetNotFoundException

Object of type ExtDev\Onlineshop\Domain\Model\Product with identity "176" not found.

in /var/www/html/releases/7/public/typo3/sysext/extbase/Classes/Property/TypeConverter/PersistentObjectConverter.php line 237
            throw new InvalidSourceException('The identity property "' . $identity . '" is no UID.', 1297931020);
        }

        if ($object === null) {
            throw new TargetNotFoundException(sprintf('Object of type %s with identity "%s" not found.', $targetType, print_r($identity, true)), 1297933823);
        }

        return $object;
    }
at TYPO3\CMS\Extbase\Property\TypeConverter\PersistentObjectConverter->fetchObjectFromPersistence('176', 'ExtDev\\Onlineshop\\Domain\\Model\\Product')
in /var/www/html/releases/7/public/typo3/sysext/extbase/Classes/Property/TypeConverter/PersistentObjectConverter.php line 168
        } elseif (is_string($source) || is_int($source)) {
            if (empty($source)) {
                return null;
            }
            $object = $this->fetchObjectFromPersistence($source, $targetType);
        } else {
            // todo: this case is impossible as this converter is never called with a source that is not an integer, a string or an array
            throw new \InvalidArgumentException('Only integers, strings and arrays are accepted.', 1305630314);
        }
at TYPO3\CMS\Extbase\Property\TypeConverter\PersistentObjectConverter->convertFrom('176', 'ExtDev\\Onlineshop\\Domain\\Model\\Product', array(), object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration))
in /var/www/html/releases/7/public/typo3/sysext/extbase/Classes/Property/PropertyMapper.php line 204
            if (!($targetPropertyValue instanceof Error)) {
                $convertedChildProperties[$targetPropertyName] = $targetPropertyValue;
            }
        }
        $result = $typeConverter->convertFrom($source, $targetType, $convertedChildProperties, $configuration);

        if ($result instanceof Error) {
            $this->messages->forProperty(implode('.', $currentPropertyPath))->addError($result);
        }
at TYPO3\CMS\Extbase\Property\PropertyMapper->doMapping('176', 'ExtDev\\Onlineshop\\Domain\\Model\\Product', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration), array())
in /var/www/html/releases/7/public/typo3/sysext/extbase/Classes/Property/PropertyMapper.php line 113
            $configuration = $this->configurationBuilder->build();
        }
        $currentPropertyPath = [];
        try {
            $result = $this->doMapping($source, $targetType, $configuration, $currentPropertyPath);
            if ($result instanceof Error) {
                return null;
            }

at TYPO3\CMS\Extbase\Property\PropertyMapper->convert('176', 'ExtDev\\Onlineshop\\Domain\\Model\\Product', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration))
in /var/www/html/releases/7/public/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 1070
            $argument->setValue(
                $this->propertyMapper->convert(
                    $rawValue,
                    $dataType,
                    $argument->getPropertyMappingConfiguration()
                )
            );
        } catch (TargetNotFoundException $e) {
            // for optional arguments no exception is thrown.
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->setArgumentValue(object(TYPO3\CMS\Extbase\Mvc\Controller\Argument), '176')
in /var/www/html/releases/7/public/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 1042
        /** @var Argument $argument */
        foreach ($this->arguments as $argument) {
            $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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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' => 'Onlineshop', 'pluginName' => 'Products'), object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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' => 'Onlineshop', 'pluginName' => 'Products'), '')
in /var/www/html/releases/7/public/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' => 'Onlineshop', 'pluginName' => 'Products'))
in /var/www/html/releases/7/public/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' => 'Onlineshop', 'pluginName' => 'Products'))
in /var/www/html/releases/7/public/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' => 'Onlineshop', 'pluginName' => 'Products'), 'tt_content.list.20.onlineshop_products')
in /var/www/html/releases/7/public/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\Frontend\ContentObject\ContentObjectRenderer), array('onlineshop_products' => 'USER', 'onlineshop_products.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Products'), 'onlineshop_checkout' => 'USER', 'onlineshop_checkout.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Checkout')), 'tt_content.list.20.onlineshop_products', 'onlineshop_products')
in /var/www/html/releases/7/public/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' => 14, 'rowDescription' => '', 'pid' => 17, 'tstamp' => 1540983627, 'crdate' => 1540710207, 'cruser_id' => 1, 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'fe_group' => '', 'sorting' => 256, 'editlock' => 0, 'sys_language_uid' => 0, 'l18n_parent' => 0, 'l10n_source' => 0, 'l10n_state' => null, 't3_origuid' => 0, 'l18n_diffsource' => 'a:28:{s:5:"CType";N;s:6:"colPos";N;s:6:"header";N;s:13:"header_layout";N;s:15:"header_position";N;s:4:"date";N;s:11:"header_link";N;s:9:"subheader";N;s:9:"list_type";N;s:5:"pages";N;s:9:"recursive";N;s:6:"layout";N;s:11:"frame_class";N;s:18:"space_before_class";N;s:17:"space_after_class";N;s:22:"background_color_class";N;s:16:"background_image";N;s:24:"background_image_options";N;s:12:"sectionIndex";N;s:9:"linkToTop";N;s:16:"sys_language_uid";N;s:6:"hidden";N;s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;}', 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_label' => '', 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 'CType' => 'list', 'header' => '', 'header_position' => '', 'bodytext' => null, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'frame_class' => 'default', 'cols' => 0, 'spaceBefore' => 0, 'spaceAfter' => 0, 'space_before_class' => '', 'space_after_class' => '', 'records' => null, 'pages' => '', 'colPos' => 0, 'subheader' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '0', 'list_type' => 'onlineshop_products', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'filelink_sorting_direction' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'selected_categories' => null, 'category_field' => '', 'table_class' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_impexp_origuid' => 0, 'categories' => 0, 'teaser' => null, 'readmore_label' => '', 'quote_source' => '', 'quote_link' => '', 'panel_class' => 'default', 'file_folder' => null, 'icon' => '', 'icon_set' => '', 'icon_file' => 0, 'icon_position' => '', 'icon_size' => 'default', 'icon_type' => 'default', 'icon_color' => '#FFFFFF', 'icon_background' => '#333333', 'external_media_source' => '', 'external_media_ratio' => '', 'tx_bootstrappackage_card_group_item' => 0, 'tx_bootstrappackage_carousel_item' => 0, 'tx_bootstrappackage_accordion_item' => 0, 'tx_bootstrappackage_icon_group_item' => 0, 'tx_bootstrappackage_tab_item' => 0, 'tx_bootstrappackage_timeline_item' => 0, 'background_color_class' => 'none', 'background_image' => 0, 'background_image_options' => array('parallax' => '0', 'fade' => '0', 'filter' => ''), 'address' => null, 'telephone' => '', 'email' => '', 'www' => '', 'aspect_ratio' => '1.3333333333333', 'items_per_page' => 10, 'frame_layout' => 'default', 'frame_options' => ''), 'typoscriptObjectPath' => 'tt_content.list.20.onlineshop_products', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/html/shared/var/cache/code/fluid_template/Standard_action_list_65db96c486ecaca638deb15b733b4d9cb3882118.php line 56
'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_65db96c486ecaca638deb15b733b4d9cb3882118->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/html/releases/7/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 /var/www/html/releases/7/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 /var/www/html/shared/var/cache/code/fluid_template/layout_Default_html_18623c1548b9bf836356186238109385866af9fe.php line 409
'contentAs' => NULL,
'debug' => true,
];

$output33 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments50, $renderChildrenClosure51, $renderingContext);

$output33 .= '
    ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_18623c1548b9bf836356186238109385866af9fe->{closure}()
in /var/www/html/releases/7/public/typo3conf/ext/bootstrap_package/Classes/ViewHelpers/FrameViewHelper.php line 177
                    'options' => $backgroundImageOptions,
                    'classes' => $backgroundImageClasses,
                ],
                'variants' => $configuration['variants'],
                'content' => $renderChildrenClosure(),
                'frameAttributes' => GeneralUtility::implodeAttributes($configuration['frameAttributes'], true)
            ]
        );

at BK2K\BootstrapPackage\ViewHelpers\FrameViewHelper::renderStatic(array('id' => 'c14', 'frameClass' => 'default', 'frameAttributes' => array(), 'type' => 'list', 'size' => 'default', 'height' => 'default', 'layout' => 'default', 'backgroundColor' => 'none', 'spaceBefore' => '', 'spaceAfter' => '', 'options' => '', 'variants' => array('default' => array('breakpoint' => 1400, 'width' => 2200, 'sizes' => array('1x' => array('multiplier' => 1))), 'xlarge' => array('breakpoint' => 1200, 'width' => 1100, 'sizes' => array('1x' => array('multiplier' => 1))), 'large' => array('breakpoint' => 992, 'width' => 1840, 'sizes' => array('1x' => array('multiplier' => 1))), 'medium' => array('breakpoint' => 768, 'width' => 1360, 'sizes' => array('1x' => array('multiplier' => 1))), 'small' => array('breakpoint' => 576, 'width' => 1000, 'sizes' => array('1x' => array('multiplier' => 1))), 'extrasmall' => array('width' => 748, 'sizes' => array('1x' => array('multiplier' => 1)))), 'backgroundImage' => null, 'backgroundImageOptions' => array('parallax' => '0', 'fade' => '0', 'filter' => '')), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/html/shared/var/cache/code/fluid_template/layout_Default_html_18623c1548b9bf836356186238109385866af9fe.php line 526
'backgroundImage' => $renderingContext->getVariableProvider()->getByPath('backgroundImage.0'),
'backgroundImageOptions' => $renderingContext->getVariableProvider()->getByPath('data.background_image_options'),
];

$output0 .= BK2K\BootstrapPackage\ViewHelpers\FrameViewHelper::renderStatic($arguments30, $renderChildrenClosure31, $renderingContext);

$output0 .= '

';
at layout_Default_html_18623c1548b9bf836356186238109385866af9fe->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/html/releases/7/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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:editionpanorama/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:editionpanorama/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:editionpanorama/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'), 'BK2K\\BootstrapPackage\\DataProcessing\\ArrayProcessor', '1682424577.' => array('data.' => array(), 'as' => 'frameAttributes')), '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', 'no-cookie' => '1')), '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' => '2200'), 'xlarge.' => array('breakpoint' => '1200', 'width' => '1100'), 'large.' => array('breakpoint' => '992', 'width' => '1840'), 'medium.' => array('breakpoint' => '768', 'width' => '1360'), 'small.' => array('breakpoint' => '576', 'width' => '1000'), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '748')), 'backendlayout.' => array('default.' => array('10.' => 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')), '11.' => 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')), '12.' => 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'))), 'simple.' => array('10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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' => '80', 'xlarge' => '80', 'large' => '80')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80')), '10.' => 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')), '11.' => 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')), '12.' => 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_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '10.' => 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')), '11.' => 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')), '12.' => 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_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '10.' => 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')), '11.' => 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')), '12.' => 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')))), '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' => '100c', 'width' => '100c'))), '20.' => array('onlineshop_products' => 'USER', 'onlineshop_products.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Products'), 'onlineshop_checkout' => 'USER', 'onlineshop_checkout.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Checkout'))))
in /var/www/html/releases/7/public/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:editionpanorama/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:editionpanorama/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:editionpanorama/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'), 'BK2K\\BootstrapPackage\\DataProcessing\\ArrayProcessor', '1682424577.' => array('data.' => array(), 'as' => 'frameAttributes')), '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', 'no-cookie' => '1')), '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' => '2200'), 'xlarge.' => array('breakpoint' => '1200', 'width' => '1100'), 'large.' => array('breakpoint' => '992', 'width' => '1840'), 'medium.' => array('breakpoint' => '768', 'width' => '1360'), 'small.' => array('breakpoint' => '576', 'width' => '1000'), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '748')), 'backendlayout.' => array('default.' => array('10.' => 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')), '11.' => 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')), '12.' => 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'))), 'simple.' => array('10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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' => '80', 'xlarge' => '80', 'large' => '80')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80')), '10.' => 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')), '11.' => 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')), '12.' => 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_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '10.' => 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')), '11.' => 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')), '12.' => 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_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '10.' => 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')), '11.' => 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')), '12.' => 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')))), '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' => '100c', 'width' => '100c'))), '20.' => array('onlineshop_products' => 'USER', 'onlineshop_products.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Products'), 'onlineshop_checkout' => 'USER', 'onlineshop_checkout.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Checkout'))))
in /var/www/html/releases/7/public/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:editionpanorama/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:editionpanorama/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:editionpanorama/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'), 'BK2K\\BootstrapPackage\\DataProcessing\\ArrayProcessor', '1682424577.' => array('data.' => array(), 'as' => 'frameAttributes')), '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', 'no-cookie' => '1')), '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' => '2200'), 'xlarge.' => array('breakpoint' => '1200', 'width' => '1100'), 'large.' => array('breakpoint' => '992', 'width' => '1840'), 'medium.' => array('breakpoint' => '768', 'width' => '1360'), 'small.' => array('breakpoint' => '576', 'width' => '1000'), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '748')), 'backendlayout.' => array('default.' => array('10.' => 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')), '11.' => 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')), '12.' => 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'))), 'simple.' => array('10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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' => '80', 'xlarge' => '80', 'large' => '80')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80')), '10.' => 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')), '11.' => 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')), '12.' => 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_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '10.' => 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')), '11.' => 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')), '12.' => 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_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '10.' => 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')), '11.' => 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')), '12.' => 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')))), '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' => '100c', 'width' => '100c'))), '20.' => array('onlineshop_products' => 'USER', 'onlineshop_products.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Products'), 'onlineshop_checkout' => 'USER', 'onlineshop_checkout.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Checkout'))), 'lib.contentElement')
in /var/www/html/releases/7/public/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:editionpanorama/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:editionpanorama/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:editionpanorama/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'), 'BK2K\\BootstrapPackage\\DataProcessing\\ArrayProcessor', '1682424577.' => array('data.' => array(), 'as' => 'frameAttributes')), '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', 'no-cookie' => '1')), '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' => '2200'), 'xlarge.' => array('breakpoint' => '1200', 'width' => '1100'), 'large.' => array('breakpoint' => '992', 'width' => '1840'), 'medium.' => array('breakpoint' => '768', 'width' => '1360'), 'small.' => array('breakpoint' => '576', 'width' => '1000'), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '748')), 'backendlayout.' => array('default.' => array('10.' => 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')), '11.' => 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')), '12.' => 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'))), 'simple.' => array('10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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' => '80', 'xlarge' => '80', 'large' => '80')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80')), '10.' => 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')), '11.' => 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')), '12.' => 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_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '10.' => 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')), '11.' => 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')), '12.' => 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_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '10.' => 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')), '11.' => 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')), '12.' => 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')))), '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' => '100c', 'width' => '100c'))), '20.' => array('onlineshop_products' => 'USER', 'onlineshop_products.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Products'), 'onlineshop_checkout' => 'USER', 'onlineshop_checkout.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Checkout'))), 'list')
in /var/www/html/releases/7/public/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('onlineshop_products' => 'USER', 'onlineshop_products.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Products'), 'onlineshop_checkout' => 'USER', 'onlineshop_checkout.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Checkout'))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), '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('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'))), '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'))), 'footeraddresstext' => '< lib.contentElement', 'footeraddresstext.' => array('templateName' => 'Footeraddresstext'), 'stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')))
in /var/www/html/releases/7/public/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('onlineshop_products' => 'USER', 'onlineshop_products.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Products'), 'onlineshop_checkout' => 'USER', 'onlineshop_checkout.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Checkout'))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), '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('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'))), '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'))), 'footeraddresstext' => '< lib.contentElement', 'footeraddresstext.' => array('templateName' => 'Footeraddresstext'), 'stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')))
in /var/www/html/releases/7/public/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('onlineshop_products' => 'USER', 'onlineshop_products.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Products'), 'onlineshop_checkout' => 'USER', 'onlineshop_checkout.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Checkout'))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), '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('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'))), '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'))), 'footeraddresstext' => '< lib.contentElement', 'footeraddresstext.' => array('templateName' => 'Footeraddresstext'), 'stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'tt_content')
in /var/www/html/releases/7/public/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('onlineshop_products' => 'USER', 'onlineshop_products.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Products'), 'onlineshop_checkout' => 'USER', 'onlineshop_checkout.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onlineshop', 'pluginName' => 'Checkout'))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), '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('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'))), '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'))), 'footeraddresstext' => '< lib.contentElement', 'footeraddresstext.' => array('templateName' => 'Footeraddresstext'), 'stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), '')
in /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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\Frontend\ContentObject\ContentObjectRenderer), array('contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:editionpanorama/Resources/Private/Templates/ContentElements/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:editionpanorama/Resources/Private/Partials/ContentElements/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:editionpanorama/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'), 'BK2K\\BootstrapPackage\\DataProcessing\\ArrayProcessor', '1682424577.' => array('data.' => array(), 'as' => 'frameAttributes')), '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', 'no-cookie' => '1')), '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' => '2200'), 'xlarge.' => array('breakpoint' => '1200', 'width' => '1100'), 'large.' => array('breakpoint' => '992', 'width' => '1840'), 'medium.' => array('breakpoint' => '768', 'width' => '1360'), 'small.' => array('breakpoint' => '576', 'width' => '1000'), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '748')), 'backendlayout.' => array('default.' => array('10.' => 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')), '11.' => 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')), '12.' => 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'))), 'simple.' => array('10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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'))), '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')), '10.' => 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')), '11.' => 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')), '12.' => 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' => '80', 'xlarge' => '80', 'large' => '80')), '1.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80')), '10.' => 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')), '11.' => 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')), '12.' => 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_right.' => array('0.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '10.' => 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')), '11.' => 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')), '12.' => 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_right_2_columns.' => array('0.' => array('multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5'), 'gutters.' => array('default' => '80', 'xlarge' => '80', 'large' => '80')), '2.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40')), '10.' => 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')), '11.' => 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')), '12.' => 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')))), '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' => '100c', 'width' => '100c')))), 'dynamicContent' => 'COA', 'dynamicContent.' => array('LOAD_REGISTER', '5.' => array('colPos.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'colPos', 'ifEmpty.' => array('cObject' => 'TEXT', 'cObject.' => array('value.' => array('current' => '1'), 'ifEmpty' => '0')))), 'slide.' => array('cObject' => 'TEXT', 'cObject.' => array('override.' => array('field' => 'slide', 'if.' => array('isInList.' => array('field' => 'slide'), 'value' => '-1, 0, 1, 2')), 'ifEmpty' => '0')), 'pageUid.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'pageUid', 'ifEmpty.' => array('data' => 'TSFE:id'))), 'contentFromPid.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'DB:pages:{register:pageUid}:content_from_pid', 'data.' => array('insertData' => '1'))), 'wrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'wrap')), 'elementWrap.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'elementWrap'))), 'CONTENT', '20.' => array('table' => 'tt_content', 'select.' => array('includeRecordsWithoutDefaultTranslation' => '1', 'orderBy' => 'sorting', 'where' => '{#colPos}={register:colPos}', 'where.' => array('insertData' => '1'), 'pidInList.' => array('data' => 'register:pageUid', 'override.' => array('data' => 'register:contentFromPid'))), 'slide' => '{register:slide}', 'slide.' => array('insertData' => '1'), 'renderObj.' => array('stdWrap.' => array('dataWrap' => '{register:elementWrap}', 'required' => '1')), 'stdWrap.' => array('dataWrap' => '{register:wrap}', 'required' => '1')), 'RESTORE_REGISTER'), 'dynamicContentSlide' => '< lib.dynamicContent', 'dynamicContentSlide.' => array('20.' => array('slide' => '-1')), 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('data' => 'parameters:target'), 'extTarget' => '_blank', 'extTarget.' => array('override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo,big, blockquote, br, caption, center, cite, code, col,colgroup, dd, del, dfn, dl, div, dt, em, font,footer, header, h1, h2, h3, h4, h5, h6, hr, i, img,ins, kbd, label, li, link, meta, nav, ol, p, pre, q,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var,a, abbr, acronym, address, article, aside, b, bdo,big, blockquote, br, caption, center, cite, code, col,colgroup, dd, del, dfn, dl, div, dt, em, font,footer, header, h1, h2, h3, h4, h5, h6, hr, i, img,ins, kbd, label, li, link, meta, nav, ol, p, pre, q,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="text-highlight">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'))), 'parseFunc_RTE.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('data' => 'parameters:target'), 'extTarget' => '_blank', 'extTarget.' => array('override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo,big, blockquote, br, caption, center, cite, code, col,colgroup, dd, del, dfn, dl, div, dt, em, font,footer, header, h1, h2, h3, h4, h5, h6, hr, i, img,ins, kbd, label, li, link, meta, nav, ol, p, pre, q,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var,a, abbr, acronym, address, article, aside, b, bdo,big, blockquote, br, caption, center, cite, code, col,colgroup, dd, del, dfn, dl, div, dt, em, font,footer, header, h1, h2, h3, h4, h5, h6, hr, i, img,ins, kbd, label, li, link, meta, nav, ol, p, pre, q,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="text-highlight">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p, pre, h1, h2, h3, h4, h5, h6, hr, dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'externalBlocks' => 'article, address, aside, blockquote, div, dd, dl, footer,header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc', 'HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('ul.' => array('fixAttrib.' => array('class.' => array('default' => 'list-normal')))), 'keepNonMatchedTags' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('wrap' => '<div class="table-responsive">|</div>'), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => ''))))))), 'pre.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('link' => 'TEXT', 'link.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters : allParams'), 'extTarget' => '_blank'), 'parseFunc.' => array('constants' => '1')), 'a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('data' => 'parameters:target'), 'extTarget' => '_blank', 'extTarget.' => array('override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo,big, blockquote, br, caption, center, cite, code, col,colgroup, dd, del, dfn, dl, div, dt, em, font,footer, header, h1, h2, h3, h4, h5, h6, hr, i, img,ins, kbd, label, li, link, meta, nav, ol, p, pre, q,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var,a, abbr, acronym, address, article, aside, b, bdo,big, blockquote, br, caption, center, cite, code, col,colgroup, dd, del, dfn, dl, div, dt, em, font,footer, header, h1, h2, h3, h4, h5, h6, hr, i, img,ins, kbd, label, li, link, meta, nav, ol, p, pre, q,samp, sdfield, section, small, span, strike, strong,style, sub, sup, table, thead, tbody, tfoot, td, th,tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="text-highlight">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'))))), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'tx_form.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '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')))), 'lib.dynamicContent', 'dynamicContent')
in /var/www/html/releases/7/public/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' => 17, 'colPos' => 0, 'slide' => null), 'typoscriptObjectPath' => 'lib.dynamicContent', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/html/shared/var/cache/code/fluid_template/Standard_action_default_630e69eb5d9fd69d997bb5447a04ebfa7c053055.php line 116
'currentValueKey' => NULL,
'table' => '',
];
$renderChildrenClosure9 = ($arguments8['data'] !== null) ? function() use ($arguments8) { return $arguments8['data']; } : $renderChildrenClosure9;
$output4 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments8, $renderChildrenClosure9, $renderingContext);

$output4 .= '
    </div>

at Standard_action_default_630e69eb5d9fd69d997bb5447a04ebfa7c053055->section_62bce9422ff2d14f69ab80a154510232fc8a9afd(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/html/releases/7/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 /var/www/html/releases/7/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 /var/www/html/shared/var/cache/code/fluid_template/layout_Default_html_38f4624936d0d2359cef9a68dc84b5eae6465876.php line 216
'contentAs' => NULL,
'debug' => true,
];

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

$output0 .= '
        <!--TYPO3SEARCH_end-->
    </div>
at layout_Default_html_38f4624936d0d2359cef9a68dc84b5eae6465876->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /var/www/html/releases/7/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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:editionpanorama/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:editionpanorama/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:editionpanorama/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' => '')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '1629126321.' => array('special' => 'list', 'special.' => array('value' => ''), 'includeNotInMenu' => '1', 'levels' => '2', 'as' => 'footernavigation', 'if.' => array('isTrue' => ''), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1629202464.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => 'nav_icon', 'as' => 'icon'))), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '1553883874.' => array('files.' => array('normal' => 'EXT:editionpanorama/Resources/Public/Images/edition-panorama-logo-neg.svg', 'inverted' => 'EXT:editionpanorama/Resources/Public/Images/logo-inverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '39', 'width' => '259', 'linktitle' => 'editionpanorama')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'leveluid:0'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'editionpanorama')), 'TEXT', '20.' => array('value' => 'editionpanorama', 'if.' => array('isTrue' => 'editionpanorama'))), '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'))))))
in /var/www/html/releases/7/public/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:editionpanorama/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:editionpanorama/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:editionpanorama/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' => '')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '1629126321.' => array('special' => 'list', 'special.' => array('value' => ''), 'includeNotInMenu' => '1', 'levels' => '2', 'as' => 'footernavigation', 'if.' => array('isTrue' => ''), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1629202464.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => 'nav_icon', 'as' => 'icon'))), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '1553883874.' => array('files.' => array('normal' => 'EXT:editionpanorama/Resources/Public/Images/edition-panorama-logo-neg.svg', 'inverted' => 'EXT:editionpanorama/Resources/Public/Images/logo-inverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '39', 'width' => '259', 'linktitle' => 'editionpanorama')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'leveluid:0'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'editionpanorama')), 'TEXT', '20.' => array('value' => 'editionpanorama', 'if.' => array('isTrue' => 'editionpanorama'))), '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'))))))
in /var/www/html/releases/7/public/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:editionpanorama/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:editionpanorama/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:editionpanorama/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' => '')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '1629126321.' => array('special' => 'list', 'special.' => array('value' => ''), 'includeNotInMenu' => '1', 'levels' => '2', 'as' => 'footernavigation', 'if.' => array('isTrue' => ''), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1629202464.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => 'nav_icon', 'as' => 'icon'))), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '1553883874.' => array('files.' => array('normal' => 'EXT:editionpanorama/Resources/Public/Images/edition-panorama-logo-neg.svg', 'inverted' => 'EXT:editionpanorama/Resources/Public/Images/logo-inverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '39', 'width' => '259', 'linktitle' => 'editionpanorama')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'leveluid:0'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'editionpanorama')), 'TEXT', '20.' => array('value' => 'editionpanorama', 'if.' => array('isTrue' => 'editionpanorama'))), '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'))))), '10')
in /var/www/html/releases/7/public/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:editionpanorama/Resources/Public/Scss/Theme/theme.scss', 'googleFonts' => 'https://fonts.googleapis.com/css?family=Cinzel:400', 'googleFonts.' => array('external' => '1'), 'fancyboxJs' => 'EXT:editionpanorama/Resources/Public/Css/jquery.fancybox.min.css', 'custom' => 'EXT:editionpanorama/Resources/Public/Css/custom.css'), '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', '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', 'contrib_cookieconsent' => 'EXT:bootstrap_package/Resources/Public/Contrib/cookieconsent/cookieconsent.min.js', 'bootstrap_cookieconsent' => 'EXT:bootstrap_package/Resources/Public/JavaScript/Dist/bootstrap.cookieconsent.min.js'), 'typeNum' => '0', 'shortcutIcon' => 'EXT:editionpanorama/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', '99.' => array('if.' => array('isTrue' => ''), 'value' => '<!-- Google Tag Manager --><script>let googletagmanagerContainerId = \'\';(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\',googletagmanagerContainerId);</script><!-- End Google Tag Manager -->')), '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:editionpanorama/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:editionpanorama/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:editionpanorama/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' => '')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '1629126321.' => array('special' => 'list', 'special.' => array('value' => ''), 'includeNotInMenu' => '1', 'levels' => '2', 'as' => 'footernavigation', 'if.' => array('isTrue' => ''), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1629202464.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => 'nav_icon', 'as' => 'icon'))), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '1553883874.' => array('files.' => array('normal' => 'EXT:editionpanorama/Resources/Public/Images/edition-panorama-logo-neg.svg', 'inverted' => 'EXT:editionpanorama/Resources/Public/Images/logo-inverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '39', 'width' => '259', 'linktitle' => 'editionpanorama')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'leveluid:0'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'editionpanorama')), 'TEXT', '20.' => array('value' => 'editionpanorama', 'if.' => array('isTrue' => 'editionpanorama'))), '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'))))), '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' => 'https://fonts.googleapis.com/css?display=swap&family=Roboto:300,400,700', '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')), 'TEXT', '5.' => array('if.' => array('isTrue' => ''), 'value' => '<!-- Google Tag Manager (noscript) --><noscript><iframe src="https://www.googletagmanager.com/ns.html?id="height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><!-- End Google Tag Manager (noscript) -->'), 'includeJS.' => array('editionpanorama_jquery' => 'EXT:editionpanorama/Resources/Public/bootstrap_package/Contrib/jquery/jquery.min.js'), 'includeJSFooter.' => array('editionpanorama_fancybox' => 'EXT:editionpanorama/Resources/Public/JavaScript/Dist/jquery.fancybox.min.js', 'editionpanorama_number' => 'EXT:editionpanorama/Resources/Public/JavaScript/Dist/jquery.number.js', 'editionpanorama_validator' => 'EXT:editionpanorama/Resources/Public/JavaScript/Dist/validator.js', 'editionpanorama_scripts' => 'EXT:editionpanorama/Resources/Public/JavaScript/Dist/scripts.js')), '')
in /var/www/html/releases/7/public/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:editionpanorama/Resources/Public/Scss/Theme/theme.scss', 'googleFonts' => 'https://fonts.googleapis.com/css?family=Cinzel:400', 'googleFonts.' => array('external' => '1'), 'fancyboxJs' => 'EXT:editionpanorama/Resources/Public/Css/jquery.fancybox.min.css', 'custom' => 'EXT:editionpanorama/Resources/Public/Css/custom.css'), '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', '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', 'contrib_cookieconsent' => 'EXT:bootstrap_package/Resources/Public/Contrib/cookieconsent/cookieconsent.min.js', 'bootstrap_cookieconsent' => 'EXT:bootstrap_package/Resources/Public/JavaScript/Dist/bootstrap.cookieconsent.min.js'), 'typeNum' => '0', 'shortcutIcon' => 'EXT:editionpanorama/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', '99.' => array('if.' => array('isTrue' => ''), 'value' => '<!-- Google Tag Manager --><script>let googletagmanagerContainerId = \'\';(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\',googletagmanagerContainerId);</script><!-- End Google Tag Manager -->')), '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:editionpanorama/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/Page/', 'EXT:editionpanorama/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/Page/', 'EXT:editionpanorama/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' => '')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '1629126321.' => array('special' => 'list', 'special.' => array('value' => ''), 'includeNotInMenu' => '1', 'levels' => '2', 'as' => 'footernavigation', 'if.' => array('isTrue' => ''), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\IconsDataProcessor', '1629202464.' => array('iconSet.' => array('field' => 'nav_icon_set'), 'iconIdentifier.' => array('field' => 'nav_icon_identifier'), 'iconFileFieldName' => 'nav_icon', 'as' => 'icon'))), 'BK2K\\BootstrapPackage\\DataProcessing\\StaticFilesProcessor', '1553883874.' => array('files.' => array('normal' => 'EXT:editionpanorama/Resources/Public/Images/edition-panorama-logo-neg.svg', 'inverted' => 'EXT:editionpanorama/Resources/Public/Images/logo-inverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '39', 'width' => '259', 'linktitle' => 'editionpanorama')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('data' => 'leveluid:0'), 'pagelayout' => 'TEXT', 'pagelayout.' => array('data' => 'pagelayout', 'replacement.' => array('10.' => array('search' => 'pagets__', 'replace' => '')), 'ifEmpty' => 'default'), 'logoAlt' => 'COA', 'logoAlt.' => array('TEXT', '10.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier', 'noTrimWrap' => '|| logo|', 'if.' => array('isFalse' => 'editionpanorama')), 'TEXT', '20.' => array('value' => 'editionpanorama', 'if.' => array('isTrue' => 'editionpanorama'))), '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'))))), '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' => 'https://fonts.googleapis.com/css?display=swap&family=Roboto:300,400,700', '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')), 'TEXT', '5.' => array('if.' => array('isTrue' => ''), 'value' => '<!-- Google Tag Manager (noscript) --><noscript><iframe src="https://www.googletagmanager.com/ns.html?id="height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript><!-- End Google Tag Manager (noscript) -->'), 'includeJS.' => array('editionpanorama_jquery' => 'EXT:editionpanorama/Resources/Public/bootstrap_package/Contrib/jquery/jquery.min.js'), 'includeJSFooter.' => array('editionpanorama_fancybox' => 'EXT:editionpanorama/Resources/Public/JavaScript/Dist/jquery.fancybox.min.js', 'editionpanorama_number' => 'EXT:editionpanorama/Resources/Public/JavaScript/Dist/jquery.number.js', 'editionpanorama_validator' => 'EXT:editionpanorama/Resources/Public/JavaScript/Dist/validator.js', 'editionpanorama_scripts' => 'EXT:editionpanorama/Resources/Public/JavaScript/Dist/scripts.js')))
in /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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(TYPO3\CMS\Frontend\Http\RequestHandler))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5))
in /var/www/html/releases/7/public/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/var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$1a5->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 78
     * @return ResponseInterface
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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 /var/www/html/releases/7/public/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();
});