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) #1580294227 Exception

You have forgotten to add TS-Template of events2

in /html/epochenapoleon/public/typo3conf/ext/events2/Classes/Controller/AbstractController.php line 65
            'events2_invalid' // invalid plugin name, to get fresh unmerged settings
        );

        if (empty($typoScriptSettings['settings'])) {
            throw new \Exception('You have forgotten to add TS-Template of events2', 1580294227);
        }
        $mergedFlexFormSettings = $this->configurationManager->getConfiguration(
            ConfigurationManagerInterface::CONFIGURATION_TYPE_SETTINGS,
            'events2'
at JWeiland\Events2\Controller\AbstractController->injectConfigurationManager(object(TYPO3\CMS\Extbase\Configuration\ConfigurationManager))
in /html/epochenapoleon/var/cache/code/di/DependencyInjectionContainer_286f5818b0be43e793c3ba3bf57d145372a6ef97.php line 8430
            $instance->setLogger(($this->services['_early.TYPO3\\CMS\\Core\\Log\\LogManager'] ?? $this->get('_early.TYPO3\\CMS\\Core\\Log\\LogManager', 1))->getLogger('JWeiland\\Events2\\Controller\\CalendarController'));
            $instance->injectCalendarHelper(($this->privates['JWeiland\\Events2\\Helper\\CalendarHelper'] ?? $this->getCalendarHelperService()));
            $instance->injectExtConf(($this->services['JWeiland\\Events2\\Configuration\\ExtConf'] ?? $this->getExtConfService()));
            $instance->injectTypoScriptService(($this->services['JWeiland\\Events2\\Service\\TypoScriptService'] ?? ($this->services['JWeiland\\Events2\\Service\\TypoScriptService'] = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstanceForDi(\JWeiland\Events2\Service\TypoScriptService::class))));
            $instance->injectConfigurationManager(($this->services['TYPO3\\CMS\\Extbase\\Configuration\\ConfigurationManager'] ?? $this->getConfigurationManagerService()));
            $instance->injectResponseFactory(($this->services['Psr\\Http\\Message\\ResponseFactoryInterface'] ?? ($this->services['Psr\\Http\\Message\\ResponseFactoryInterface'] = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstanceForDi(\TYPO3\CMS\Core\Http\ResponseFactory::class))));
            $instance->injectStreamFactory(($this->services['Psr\\Http\\Message\\StreamFactoryInterface'] ?? ($this->services['Psr\\Http\\Message\\StreamFactoryInterface'] = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstanceForDi(\TYPO3\CMS\Core\Http\StreamFactory::class))));
            $instance->injectObjectManager(($this->services['TYPO3\\CMS\\Extbase\\Object\\ObjectManager'] ?? $this->getObjectManagerService()));
            $instance->injectSignalSlotDispatcher(($this->services['TYPO3\\CMS\\Extbase\\SignalSlot\\Dispatcher'] ?? $this->getDispatcher2Service()));
at DependencyInjectionContainer_286f5818b0be43e793c3ba3bf57d145372a6ef97->{closure}()
in /html/epochenapoleon/var/cache/code/di/DependencyInjectionContainer_286f5818b0be43e793c3ba3bf57d145372a6ef97.php line 8448

            return $instance;
        };

        return $this->factories['JWeiland\\Events2\\Controller\\CalendarController']();
    }

    /**
     * Gets the public 'JWeiland\Events2\Controller\DayController' autowired service.
at DependencyInjectionContainer_286f5818b0be43e793c3ba3bf57d145372a6ef97->getCalendarControllerService()
in /html/epochenapoleon/vendor/symfony/dependency-injection/Container.php line 240
        try {
            if (isset($this->fileMap[$id])) {
                return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->load($this->fileMap[$id]);
            } elseif (isset($this->methodMap[$id])) {
                return /* self::IGNORE_ON_UNINITIALIZED_REFERENCE */ 4 === $invalidBehavior ? null : $this->{$this->methodMap[$id]}();
            }
        } catch (\Exception $e) {
            unset($this->services[$id]);

at Symfony\Component\DependencyInjection\Container->make('JWeiland\\Events2\\Controller\\CalendarController', 1)
in /html/epochenapoleon/vendor/symfony/dependency-injection/Container.php line 220
    public function get(string $id, int $invalidBehavior = /* self::EXCEPTION_ON_INVALID_REFERENCE */ 1)
    {
        return $this->services[$id]
            ?? $this->services[$id = $this->aliases[$id] ?? $id]
            ?? ('service_container' === $id ? $this : ($this->factories[$id] ?? [$this, 'make'])($id, $invalidBehavior));
    }

    /**
     * Creates a service.
at Symfony\Component\DependencyInjection\Container->get('JWeiland\\Events2\\Controller\\CalendarController')
in /html/epochenapoleon/public/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 133
    protected function resolveController(RequestInterface $request)
    {
        $controllerObjectName = $request->getControllerObjectName();
        if ($this->container->has($controllerObjectName)) {
            $controller = $this->container->get($controllerObjectName);
        } else {
            // @deprecated since v11, will be removed in v12.
            $controller = $this->objectManager->get($controllerObjectName);
        }
at TYPO3\CMS\Extbase\Mvc\Dispatcher->resolveController(object(TYPO3\CMS\Extbase\Mvc\Request))
in /html/epochenapoleon/public/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 94
        while (!$isDispatched || !$request->isDispatched()) {
            if ($dispatchLoopCount++ > 99) {
                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:
at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Request))
in /html/epochenapoleon/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 /html/epochenapoleon/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 /html/epochenapoleon/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' => 'Events2', 'pluginName' => 'Calendar'), object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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' => 'Events2', 'pluginName' => 'Calendar'), '')
in /html/epochenapoleon/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' => 'Events2', 'pluginName' => 'Calendar'))
in /html/epochenapoleon/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' => 'Events2', 'pluginName' => 'Calendar'))
in /html/epochenapoleon/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' => 'Events2', 'pluginName' => 'Calendar'), 'tt_content.list.20.events2_calendar')
in /html/epochenapoleon/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('rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'de, en', 'mail-body' => 'Hier können Sie ihre Nachricht schreiben.', 'mail-subject' => 'Teile die Seite EPOCHE NAPOLEON', 'mail-url' => 'mailto:redaktion@epoche-napoleon.net', 'media-url' => '', 'orientation' => 'horizontal', 'referrer-track' => '', 'services' => 'facebook,googleplus,xing,linkedin,pinterest,qzone,flipboard,tumblr,flattr,diaspora,reddit,stumbleupon,weibo,tencent-weibo,vk,whatsapp,threema,telegram,print,info', 'theme' => 'standard', 'twitter-via' => 'EPOCHENAPOLEON', 'button-style' => 'icon-count'))), 'events2_list' => 'USER', 'events2_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'List'), 'events2_show' => 'USER', 'events2_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), 'events2_management' => 'USER', 'events2_management.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Management'), 'events2_calendar' => 'USER', 'events2_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Calendar'), 'events2_searchform' => 'USER', 'events2_searchform.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchForm'), 'events2_searchresults' => 'USER', 'events2_searchresults.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchResults'), 'jfmulticontent_pi1' => '< plugin.tx_jfmulticontent_pi1', 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'glossary2_glossary' => 'USER', 'glossary2_glossary.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Glossary2', 'pluginName' => 'Glossary'), 'maps2_maps2' => 'USER_INT', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Overlay'), 'maps2_overlay' => 'USER', 'maps2_overlay.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Overlay'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'media2click_list' => 'USER', 'media2click_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Media2click', 'pluginName' => 'List'), 'publications_pi1' => 'USER', 'publications_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Publications', 'pluginName' => 'Pi1'), 'tgmcopyright_main' => 'USER', 'tgmcopyright_main.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TgmCopyright', 'pluginName' => 'Main'), 'tgmcopyright_sitemap' => 'USER', 'tgmcopyright_sitemap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TgmCopyright', 'pluginName' => 'Sitemap')), 'tt_content.list.20.events2_calendar', 'events2_calendar')
in /html/epochenapoleon/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' => 27652, 'pid' => 8061, 't3ver_oid' => 0, 't3ver_wsid' => 0, 't3ver_state' => 0, 't3ver_stage' => 0, 't3_origuid' => 0, 'tstamp' => 1674206085, 'crdate' => 1488539076, 'cruser_id' => 1, 'hidden' => 0, 'sorting' => 128, 'CType' => 'list', 'header' => 'Kalender', 'header_position' => '', 'bodytext' => ' ', 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => '6549', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '4', 'list_type' => 'events2_calendar', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?><T3FlexForms> <data> <sheet index="sDEF"> <language index="lDEF"> <field index="settings.orderBy"> <value index="vDEF"></value> </field> <field index="settings.orderDirection"> <value index="vDEF"></value> </field> <field index="settings.dateField"> <value index="vDEF"></value> </field> <field index="settings.categories"> <value index="vDEF"></value> </field> <field index="settings.categoryConjunction"> <value index="vDEF"></value> </field> <field index="settings.includeSubCategories"> <value index="vDEF">0</value> </field> <field index="settings.archiveRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestriction"> <value index="vDEF"></value> </field> <field index="settings.timeRestrictionHigh"> <value index="vDEF"></value> </field> <field index="settings.topNewsRestriction"> <value index="vDEF"></value> </field> <field index="settings.singleNews"> <value index="vDEF"></value> </field> <field index="settings.previewHiddenRecords"> <value index="vDEF">2</value> </field> <field index="settings.startingpoint"> <value index="vDEF">19</value> </field> <field index="settings.recursive"> <value index="vDEF">3</value> </field> <field index="settings.selectedList"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF">28</value> </field> <field index="settings.listPid"> <value index="vDEF">25</value> </field> <field index="settings.backPid"> <value index="vDEF">25</value> </field> <field index="settings.limit"> <value index="vDEF">1000</value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.tags"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</value> </field> <field index="settings.list.paginate.itemsPerPage"> <value index="vDEF"></value> </field> <field index="settings.topNewsFirst"> <value index="vDEF">0</value> </field> <field index="settings.excludeAlreadyDisplayedNews"> <value index="vDEF">0</value> </field> <field index="settings.disableOverrideDemand"> <value index="vDEF">0</value> </field> <field index="settings.applicationPid"> <value index="vDEF"></value> </field> <field index="settings.confirmationPid"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="template"> <language index="lDEF"> <field index="settings.media.maxWidth"> <value index="vDEF"></value> </field> <field index="settings.media.maxHeight"> <value index="vDEF"></value> </field> <field index="settings.cropMaxCharacters"> <value index="vDEF"></value> </field> <field index="settings.templateLayout"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="calendar"> <language index="lDEF"> <field index="settings.switchableViews"> <value index="vDEF"></value> </field> <field index="settings.defaultView"> <value index="vDEF">listMonth</value> </field> <field index="settings.allDaySlot"> <value index="vDEF">1</value> </field> <field index="settings.qtips"> <value index="vDEF">1</value> </field> <field index="settings.showTagFilter"> <value index="vDEF">0</value> </field> <field index="settings.showCategoryFilter"> <value index="vDEF">1</value> </field> <field index="settings.sortingFilterlist"> <value index="vDEF">alphabet</value> </field> <field index="settings.minTime"> <value index="vDEF">32400</value> </field> <field index="settings.maxTime"> <value index="vDEF">79200</value> </field> <field index="settings.aspectRatio"> <value index="vDEF"></value> </field> <field index="settings.additionalConfig"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="application"> <language index="lDEF"> <field index="settings.senderMail"> <value index="vDEF"></value> </field> <field index="settings.senderName"> <value index="vDEF"></value> </field> <field index="settings.notificationMail"> <value index="vDEF"></value> </field> <field index="settings.notificateAuthor"> <value index="vDEF">0</value> </field> <field index="settings.ics"> <value index="vDEF">0</value> </field> <field index="settings.icsDescriptionField"> <value index="vDEF">Custom</value> </field> <field index="settings.earlyBirdDays"> <value index="vDEF"></value> </field> <field index="settings.files"> <value index="vDEF">0</value> </field> <field index="settings.icsDescriptionCustomField"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="extraEntry"> <language index="lDEF"> <field index="settings.eventRestriction"> <value index="vDEF">1</value> </field> </language> </sheet> <sheet index="extraEntryEventNews"> <language index="lDEF"> <field index="settings.eventRestriction"> <value index="vDEF"></value> </field> </language> </sheet> <sheet index="sDEFAULT"> <language index="lDEF"> <field index="settings.categories"> <value index="vDEF"></value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => '{"CType":"","colPos":"","tx_container_parent":"","header":"","header_layout":"","header_position":"","date":"","header_link":"","subheader":"","list_type":"","pi_flexform":"","pages":"","recursive":"","layout":"","frame_class":"","space_before_class":"","space_after_class":"","sectionIndex":"","linkToTop":"","sys_language_uid":"","hidden":"","starttime":"","endtime":"","fe_group":"","editlock":"","categories":"","rowDescription":""}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_news_related_news' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'l10n_source' => 0, 'table_class' => '', 'l10n_state' => null, 'tx_epochenapoleoncenormdata_gnd' => null, 'tx_epochenapoleoncenormdata_lccn' => null, 'tx_epochenapoleoncenormdata_viaf' => null, 'filelink_sorting_direction' => '', 'tx_jfmulticontent_view' => '', 'tx_jfmulticontent_pages' => null, 'tx_jfmulticontent_contents' => null, 'tx_jfmulticontent_irre' => null, 'tx_jfmulticontent_irre_parentid' => 0, 'tx_media2click_iframe_src' => '', 'tx_media2click_iframe_ratio' => '', 'tx_container_parent' => 0, 'tx_containeritems_a_firstopen' => 0, 'tx_containeritems_classes' => null, 'tx_containeritems_s_aligncontent' => null, 'tx_containeritems_s_framepadding' => '0', 'tx_containeritems_s_fullheight' => 0, 'tx_containeritems_s_valign' => null, 'tx_containeritems_s_textcolorselect' => null, 'tx_containeritems_s_bgcolorselect' => null, 'tx_containeritems_s_bgimagewidth' => null, 'tx_containeritems_s_bgvideosound' => 0, 'tx_containeritems_s_bgvideoclearframe' => 0, 'tx_containeritems_s_bgvideoonoloop' => 0, 'tx_containeritems_s_bgplacement' => null, 'tx_containeritems_s_bgfixed' => 0, 'tx_containeritems_s_bgoverlay' => null, 'tx_containeritems_s_bgoverlaydark' => null, 'tx_containeritems_s_bgoverlayfilters' => null, 'tx_containeritems_s_bgoverlayblur' => null, 'tx_containeritems_s_bgoverlaysaturate' => null, 'tx_containeritems_s_bgoverlayhue' => null, 'tx_containeritems_s_bgoverlaybrightness' => null, 'tx_containeritems_s_bgoverlaysepia' => null, 'tx_media2click_content' => 0, 'tx_media2click_parentid' => 0, 'tx_media2click_host' => 0, 'tx_containeritems_b_style' => null, 'tx_containeritems_siema_style' => null, 'tx_containeritems_siema_startindex' => null, 'tx_containeritems_siema_loop' => null, 'tx_containeritems_siema_pagination' => null, 'tx_containeritems_siema_nav' => null, 'tx_containeritems_customid' => null, 'tx_containeritems_s_contentwidth' => null, 'tx_containeritems_s_bgmediaeffect' => null, 'header_class' => '', 'subheader_class' => '', 'teaser' => null, 'aspect_ratio' => '1.3333333333333', 'items_per_page' => 10, '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' => '', 'icon_background' => '', 'external_media_title' => '', '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, 'frame_layout' => 'default', 'frame_options' => '', 'background_color_class' => '', 'background_image' => 0, 'background_image_options' => null, 'subitems_header_layout' => 4, 'tx_containeritems_a_autocollapse' => null), 'typoscriptObjectPath' => 'tt_content.list.20.events2_calendar', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/epochenapoleon/var/cache/code/fluid_template/Standard_action_list_ddd506aab1342ed8a31ea8a48cf2b8a8ec326434.php line 76
$array5 = array (
);$arguments1['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array5);
$arguments1['table'] = 'tt_content';
$renderChildrenClosure2 = ($arguments1['data'] !== null) ? function() use ($arguments1) { return $arguments1['data']; } : $renderChildrenClosure2;
$output0 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments1, $renderChildrenClosure2, $renderingContext);

$output0 .= '

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

$output65 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments87, $renderChildrenClosure88, $renderingContext);

$output65 .= '
    ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_99f0075d6d372f7cdf559c2c82a4c3eea40ab5e2->{closure}()
in /html/epochenapoleon/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' => 'c27652', 'frameClass' => 'default', 'frameAttributes' => array(), 'type' => 'list', 'size' => 'default', 'height' => 'default', 'layout' => 'default', 'backgroundColor' => '', 'spaceBefore' => '', 'spaceAfter' => '', 'options' => '', 'variants' => array('default' => array('breakpoint' => 1400, 'width' => 1280, 'sizes' => array('1x' => array('multiplier' => 1))), 'xlarge' => array('breakpoint' => 1200, 'width' => 1100, 'sizes' => array('1x' => array('multiplier' => 1))), 'large' => array('breakpoint' => 992, 'width' => 920, 'sizes' => array('1x' => array('multiplier' => 1))), 'medium' => array('breakpoint' => 768, 'width' => 680, 'sizes' => array('1x' => array('multiplier' => 1))), 'small' => array('breakpoint' => 576, 'width' => 500, 'sizes' => array('1x' => array('multiplier' => 1))), 'extrasmall' => array('width' => 374, 'sizes' => array('1x' => array('multiplier' => 1)))), 'backgroundImage' => null, 'backgroundImageOptions' => null), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/epochenapoleon/var/cache/code/fluid_template/layout_Default_html_99f0075d6d372f7cdf559c2c82a4c3eea40ab5e2.php line 622
);$arguments50['backgroundImage'] = $renderingContext->getVariableProvider()->getByPath('backgroundImage.0', $array63);
$array64 = array (
);$arguments50['backgroundImageOptions'] = $renderingContext->getVariableProvider()->getByPath('data.background_image_options', $array64);

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

$output0 .= '

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

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /html/epochenapoleon/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 /html/epochenapoleon/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:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:media2click/Resources/Private/Extensions/FluidStyledContent/Templates/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:media2click/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:media2click/Resources/Private/Extensions/FluidStyledContent/Layouts/', 'EXT:sitepackage/Resources/Private/Layouts/fluid_styled_content/'), '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'), 'BK2K\\BootstrapPackage\\DataProcessing\\ContainerContextProcessor'), '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', 'placeholderContent.' => array('showTitle' => '1', 'showPreviewImage' => '1', 'previewMaxWidth' => '0', 'previewMaxHeight' => '0', 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('layoutRootPaths.' => array('EXT:media2click/Resources/Private/Layouts/', ''), 'partialRootPaths.' => array('EXT:media2click/Resources/Private/Partials/', ''), 'templateRootPaths.' => array('EXT:media2click/Resources/Private/Templates/', ''), 'templateName' => 'Placeholder', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_media2click_domain_model_host', 'pidInList' => '0', 'as' => 'm2cHostsData', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'logo'), 'as' => 'm2cLogoImage')))), 'settings.' => array('m2cEnablePermanently' => '0', 'm2cCookieLifetime' => '7', 'm2cPrivacyPid' => '0'))), 'enable2click' => '0')), 'gallery.' => array('columns.' => array('1.' => array('class' => 'gallery-item-size-1'), '2.' => array('class' => 'gallery-item-size-2', 'multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'xlarge' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'xlarge' => '0.16666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1400', 'width' => '1280'), 'xlarge.' => array('breakpoint' => '1200', 'width' => '1100'), 'large.' => array('breakpoint' => '992', 'width' => '920'), 'medium.' => array('breakpoint' => '768', 'width' => '680'), 'small.' => array('breakpoint' => '576', 'width' => '500'), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '374')), 'backendlayout.' => array('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')))), 'container.' => array('container_2_columns.' => array('201.' => 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')), '202.' => 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'))), 'container_2_columns_right.' => array('201.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75', 'medium' => '0.66'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'container_2_columns_left.' => array('201.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75', 'medium' => '0.66'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'container_3_columns.' => array('201.' => array('multiplier.' => array('default' => '0.33', 'xlarge' => '0.33', 'large' => '0.33', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.33', 'xlarge' => '0.33', 'large' => '0.33', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '203.' => array('multiplier.' => array('default' => '0.33', 'xlarge' => '0.33', 'large' => '0.33', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'container_4_columns.' => array('201.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '203.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '204.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))))), '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('rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'de, en', 'mail-body' => 'Hier können Sie ihre Nachricht schreiben.', 'mail-subject' => 'Teile die Seite EPOCHE NAPOLEON', 'mail-url' => 'mailto:redaktion@epoche-napoleon.net', 'media-url' => '', 'orientation' => 'horizontal', 'referrer-track' => '', 'services' => 'facebook,googleplus,xing,linkedin,pinterest,qzone,flipboard,tumblr,flattr,diaspora,reddit,stumbleupon,weibo,tencent-weibo,vk,whatsapp,threema,telegram,print,info', 'theme' => 'standard', 'twitter-via' => 'EPOCHENAPOLEON', 'button-style' => 'icon-count'))), 'events2_list' => 'USER', 'events2_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'List'), 'events2_show' => 'USER', 'events2_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), 'events2_management' => 'USER', 'events2_management.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Management'), 'events2_calendar' => 'USER', 'events2_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Calendar'), 'events2_searchform' => 'USER', 'events2_searchform.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchForm'), 'events2_searchresults' => 'USER', 'events2_searchresults.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchResults'), 'jfmulticontent_pi1' => '< plugin.tx_jfmulticontent_pi1', 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'glossary2_glossary' => 'USER', 'glossary2_glossary.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Glossary2', 'pluginName' => 'Glossary'), 'maps2_maps2' => 'USER_INT', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Overlay'), 'maps2_overlay' => 'USER', 'maps2_overlay.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Overlay'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'media2click_list' => 'USER', 'media2click_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Media2click', 'pluginName' => 'List'), 'publications_pi1' => 'USER', 'publications_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Publications', 'pluginName' => 'Pi1'), 'tgmcopyright_main' => 'USER', 'tgmcopyright_main.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TgmCopyright', 'pluginName' => 'Main'), 'tgmcopyright_sitemap' => 'USER', 'tgmcopyright_sitemap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TgmCopyright', 'pluginName' => 'Sitemap'))))
in /html/epochenapoleon/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:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:media2click/Resources/Private/Extensions/FluidStyledContent/Templates/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:media2click/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:media2click/Resources/Private/Extensions/FluidStyledContent/Layouts/', 'EXT:sitepackage/Resources/Private/Layouts/fluid_styled_content/'), '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'), 'BK2K\\BootstrapPackage\\DataProcessing\\ContainerContextProcessor'), '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', 'placeholderContent.' => array('showTitle' => '1', 'showPreviewImage' => '1', 'previewMaxWidth' => '0', 'previewMaxHeight' => '0', 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('layoutRootPaths.' => array('EXT:media2click/Resources/Private/Layouts/', ''), 'partialRootPaths.' => array('EXT:media2click/Resources/Private/Partials/', ''), 'templateRootPaths.' => array('EXT:media2click/Resources/Private/Templates/', ''), 'templateName' => 'Placeholder', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_media2click_domain_model_host', 'pidInList' => '0', 'as' => 'm2cHostsData', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'logo'), 'as' => 'm2cLogoImage')))), 'settings.' => array('m2cEnablePermanently' => '0', 'm2cCookieLifetime' => '7', 'm2cPrivacyPid' => '0'))), 'enable2click' => '0')), 'gallery.' => array('columns.' => array('1.' => array('class' => 'gallery-item-size-1'), '2.' => array('class' => 'gallery-item-size-2', 'multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'xlarge' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'xlarge' => '0.16666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1400', 'width' => '1280'), 'xlarge.' => array('breakpoint' => '1200', 'width' => '1100'), 'large.' => array('breakpoint' => '992', 'width' => '920'), 'medium.' => array('breakpoint' => '768', 'width' => '680'), 'small.' => array('breakpoint' => '576', 'width' => '500'), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '374')), 'backendlayout.' => array('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')))), 'container.' => array('container_2_columns.' => array('201.' => 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')), '202.' => 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'))), 'container_2_columns_right.' => array('201.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75', 'medium' => '0.66'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'container_2_columns_left.' => array('201.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75', 'medium' => '0.66'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'container_3_columns.' => array('201.' => array('multiplier.' => array('default' => '0.33', 'xlarge' => '0.33', 'large' => '0.33', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.33', 'xlarge' => '0.33', 'large' => '0.33', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '203.' => array('multiplier.' => array('default' => '0.33', 'xlarge' => '0.33', 'large' => '0.33', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'container_4_columns.' => array('201.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '203.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '204.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))))), '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('rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'de, en', 'mail-body' => 'Hier können Sie ihre Nachricht schreiben.', 'mail-subject' => 'Teile die Seite EPOCHE NAPOLEON', 'mail-url' => 'mailto:redaktion@epoche-napoleon.net', 'media-url' => '', 'orientation' => 'horizontal', 'referrer-track' => '', 'services' => 'facebook,googleplus,xing,linkedin,pinterest,qzone,flipboard,tumblr,flattr,diaspora,reddit,stumbleupon,weibo,tencent-weibo,vk,whatsapp,threema,telegram,print,info', 'theme' => 'standard', 'twitter-via' => 'EPOCHENAPOLEON', 'button-style' => 'icon-count'))), 'events2_list' => 'USER', 'events2_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'List'), 'events2_show' => 'USER', 'events2_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), 'events2_management' => 'USER', 'events2_management.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Management'), 'events2_calendar' => 'USER', 'events2_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Calendar'), 'events2_searchform' => 'USER', 'events2_searchform.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchForm'), 'events2_searchresults' => 'USER', 'events2_searchresults.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchResults'), 'jfmulticontent_pi1' => '< plugin.tx_jfmulticontent_pi1', 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'glossary2_glossary' => 'USER', 'glossary2_glossary.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Glossary2', 'pluginName' => 'Glossary'), 'maps2_maps2' => 'USER_INT', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Overlay'), 'maps2_overlay' => 'USER', 'maps2_overlay.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Overlay'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'media2click_list' => 'USER', 'media2click_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Media2click', 'pluginName' => 'List'), 'publications_pi1' => 'USER', 'publications_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Publications', 'pluginName' => 'Pi1'), 'tgmcopyright_main' => 'USER', 'tgmcopyright_main.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TgmCopyright', 'pluginName' => 'Main'), 'tgmcopyright_sitemap' => 'USER', 'tgmcopyright_sitemap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TgmCopyright', 'pluginName' => 'Sitemap'))))
in /html/epochenapoleon/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:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:media2click/Resources/Private/Extensions/FluidStyledContent/Templates/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:media2click/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:media2click/Resources/Private/Extensions/FluidStyledContent/Layouts/', 'EXT:sitepackage/Resources/Private/Layouts/fluid_styled_content/'), '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'), 'BK2K\\BootstrapPackage\\DataProcessing\\ContainerContextProcessor'), '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', 'placeholderContent.' => array('showTitle' => '1', 'showPreviewImage' => '1', 'previewMaxWidth' => '0', 'previewMaxHeight' => '0', 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('layoutRootPaths.' => array('EXT:media2click/Resources/Private/Layouts/', ''), 'partialRootPaths.' => array('EXT:media2click/Resources/Private/Partials/', ''), 'templateRootPaths.' => array('EXT:media2click/Resources/Private/Templates/', ''), 'templateName' => 'Placeholder', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_media2click_domain_model_host', 'pidInList' => '0', 'as' => 'm2cHostsData', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'logo'), 'as' => 'm2cLogoImage')))), 'settings.' => array('m2cEnablePermanently' => '0', 'm2cCookieLifetime' => '7', 'm2cPrivacyPid' => '0'))), 'enable2click' => '0')), 'gallery.' => array('columns.' => array('1.' => array('class' => 'gallery-item-size-1'), '2.' => array('class' => 'gallery-item-size-2', 'multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'xlarge' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'xlarge' => '0.16666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1400', 'width' => '1280'), 'xlarge.' => array('breakpoint' => '1200', 'width' => '1100'), 'large.' => array('breakpoint' => '992', 'width' => '920'), 'medium.' => array('breakpoint' => '768', 'width' => '680'), 'small.' => array('breakpoint' => '576', 'width' => '500'), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '374')), 'backendlayout.' => array('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')))), 'container.' => array('container_2_columns.' => array('201.' => 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')), '202.' => 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'))), 'container_2_columns_right.' => array('201.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75', 'medium' => '0.66'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'container_2_columns_left.' => array('201.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75', 'medium' => '0.66'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'container_3_columns.' => array('201.' => array('multiplier.' => array('default' => '0.33', 'xlarge' => '0.33', 'large' => '0.33', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.33', 'xlarge' => '0.33', 'large' => '0.33', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '203.' => array('multiplier.' => array('default' => '0.33', 'xlarge' => '0.33', 'large' => '0.33', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'container_4_columns.' => array('201.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '203.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '204.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))))), '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('rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'de, en', 'mail-body' => 'Hier können Sie ihre Nachricht schreiben.', 'mail-subject' => 'Teile die Seite EPOCHE NAPOLEON', 'mail-url' => 'mailto:redaktion@epoche-napoleon.net', 'media-url' => '', 'orientation' => 'horizontal', 'referrer-track' => '', 'services' => 'facebook,googleplus,xing,linkedin,pinterest,qzone,flipboard,tumblr,flattr,diaspora,reddit,stumbleupon,weibo,tencent-weibo,vk,whatsapp,threema,telegram,print,info', 'theme' => 'standard', 'twitter-via' => 'EPOCHENAPOLEON', 'button-style' => 'icon-count'))), 'events2_list' => 'USER', 'events2_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'List'), 'events2_show' => 'USER', 'events2_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), 'events2_management' => 'USER', 'events2_management.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Management'), 'events2_calendar' => 'USER', 'events2_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Calendar'), 'events2_searchform' => 'USER', 'events2_searchform.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchForm'), 'events2_searchresults' => 'USER', 'events2_searchresults.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchResults'), 'jfmulticontent_pi1' => '< plugin.tx_jfmulticontent_pi1', 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'glossary2_glossary' => 'USER', 'glossary2_glossary.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Glossary2', 'pluginName' => 'Glossary'), 'maps2_maps2' => 'USER_INT', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Overlay'), 'maps2_overlay' => 'USER', 'maps2_overlay.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Overlay'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'media2click_list' => 'USER', 'media2click_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Media2click', 'pluginName' => 'List'), 'publications_pi1' => 'USER', 'publications_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Publications', 'pluginName' => 'Pi1'), 'tgmcopyright_main' => 'USER', 'tgmcopyright_main.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TgmCopyright', 'pluginName' => 'Main'), 'tgmcopyright_sitemap' => 'USER', 'tgmcopyright_sitemap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TgmCopyright', 'pluginName' => 'Sitemap'))), 'lib.contentElement')
in /html/epochenapoleon/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:bootstrap_package/Resources/Private/Templates/ContentElements/', 'EXT:media2click/Resources/Private/Extensions/FluidStyledContent/Templates/'), 'partialRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Partials/ContentElements/', 'EXT:media2click/Resources/Private/Extensions/FluidStyledContent/Partials/'), 'layoutRootPaths.' => array('EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:bootstrap_package/Resources/Private/Layouts/ContentElements/', 'EXT:media2click/Resources/Private/Extensions/FluidStyledContent/Layouts/', 'EXT:sitepackage/Resources/Private/Layouts/fluid_styled_content/'), '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'), 'BK2K\\BootstrapPackage\\DataProcessing\\ContainerContextProcessor'), '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', 'placeholderContent.' => array('showTitle' => '1', 'showPreviewImage' => '1', 'previewMaxWidth' => '0', 'previewMaxHeight' => '0', 'cObject' => 'FLUIDTEMPLATE', 'cObject.' => array('layoutRootPaths.' => array('EXT:media2click/Resources/Private/Layouts/', ''), 'partialRootPaths.' => array('EXT:media2click/Resources/Private/Partials/', ''), 'templateRootPaths.' => array('EXT:media2click/Resources/Private/Templates/', ''), 'templateName' => 'Placeholder', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tx_media2click_domain_model_host', 'pidInList' => '0', 'as' => 'm2cHostsData', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'logo'), 'as' => 'm2cLogoImage')))), 'settings.' => array('m2cEnablePermanently' => '0', 'm2cCookieLifetime' => '7', 'm2cPrivacyPid' => '0'))), 'enable2click' => '0')), 'gallery.' => array('columns.' => array('1.' => array('class' => 'gallery-item-size-1'), '2.' => array('class' => 'gallery-item-size-2', 'multiplier.' => array('default' => '0.5', 'xlarge' => '0.5', 'large' => '0.5', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '8', 'xlarge' => '8', 'large' => '8', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '3.' => array('class' => 'gallery-item-size-3', 'multiplier.' => array('default' => '0.3333', 'xlarge' => '0.3333', 'large' => '0.3333', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.3333'), 'gutters.' => array('default' => '16', 'xlarge' => '16', 'large' => '16', 'medium' => '16', 'small' => '16', 'extrasmall' => '16')), '4.' => array('class' => 'gallery-item-size-4', 'multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5', 'small' => '0.5', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '24', 'xlarge' => '24', 'large' => '24', 'medium' => '8', 'small' => '8', 'extrasmall' => '8')), '5.' => array('class' => 'gallery-item-size-5', 'multiplier.' => array('default' => '0.2', 'xlarge' => '0.2', 'large' => '0.2', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '32', 'xlarge' => '32', 'large' => '32', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')), '6.' => array('class' => 'gallery-item-size-6', 'multiplier.' => array('default' => '0.1666', 'xlarge' => '0.16666', 'large' => '0.16666', 'medium' => '0.3333', 'small' => '0.3333', 'extrasmall' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '16', 'small' => '16', 'extrasmall' => '8')))), 'responsiveimages.' => array('variants.' => array('default.' => array('breakpoint' => '1400', 'width' => '1280'), 'xlarge.' => array('breakpoint' => '1200', 'width' => '1100'), 'large.' => array('breakpoint' => '992', 'width' => '920'), 'medium.' => array('breakpoint' => '768', 'width' => '680'), 'small.' => array('breakpoint' => '576', 'width' => '500'), 'extrasmall.' => array('breakpoint' => 'unset', 'width' => '374')), 'backendlayout.' => array('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')))), 'container.' => array('container_2_columns.' => array('201.' => 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')), '202.' => 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'))), 'container_2_columns_right.' => array('201.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75', 'medium' => '0.66'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'container_2_columns_left.' => array('201.' => array('multiplier.' => array('default' => '0.75', 'xlarge' => '0.75', 'large' => '0.75', 'medium' => '0.66'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'container_3_columns.' => array('201.' => array('multiplier.' => array('default' => '0.33', 'xlarge' => '0.33', 'large' => '0.33', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.33', 'xlarge' => '0.33', 'large' => '0.33', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '203.' => array('multiplier.' => array('default' => '0.33', 'xlarge' => '0.33', 'large' => '0.33', 'medium' => '0.33'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))), 'container_4_columns.' => array('201.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '202.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '203.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40')), '204.' => array('multiplier.' => array('default' => '0.25', 'xlarge' => '0.25', 'large' => '0.25', 'medium' => '0.5'), 'gutters.' => array('default' => '40', 'xlarge' => '40', 'large' => '40', 'medium' => '40'))))), '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('rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'de, en', 'mail-body' => 'Hier können Sie ihre Nachricht schreiben.', 'mail-subject' => 'Teile die Seite EPOCHE NAPOLEON', 'mail-url' => 'mailto:redaktion@epoche-napoleon.net', 'media-url' => '', 'orientation' => 'horizontal', 'referrer-track' => '', 'services' => 'facebook,googleplus,xing,linkedin,pinterest,qzone,flipboard,tumblr,flattr,diaspora,reddit,stumbleupon,weibo,tencent-weibo,vk,whatsapp,threema,telegram,print,info', 'theme' => 'standard', 'twitter-via' => 'EPOCHENAPOLEON', 'button-style' => 'icon-count'))), 'events2_list' => 'USER', 'events2_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'List'), 'events2_show' => 'USER', 'events2_show.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Show'), 'events2_management' => 'USER', 'events2_management.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Management'), 'events2_calendar' => 'USER', 'events2_calendar.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'Calendar'), 'events2_searchform' => 'USER', 'events2_searchform.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchForm'), 'events2_searchresults' => 'USER', 'events2_searchresults.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Events2', 'pluginName' => 'SearchResults'), 'jfmulticontent_pi1' => '< plugin.tx_jfmulticontent_pi1', 'solr_pi_results' => 'USER', 'solr_pi_results.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_results'), 'solr_pi_search' => 'USER', 'solr_pi_search.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_search'), 'solr_pi_frequentlysearched' => 'USER', 'solr_pi_frequentlysearched.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_frequentlySearched'), 'solr_pi_suggest' => 'USER', 'solr_pi_suggest.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Solr', 'pluginName' => 'pi_suggest'), 'glossary2_glossary' => 'USER', 'glossary2_glossary.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Glossary2', 'pluginName' => 'Glossary'), 'maps2_maps2' => 'USER_INT', 'maps2_maps2.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Overlay'), 'maps2_overlay' => 'USER', 'maps2_overlay.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'Overlay'), 'maps2_searchwithinradius' => 'USER', 'maps2_searchwithinradius.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'SearchWithinRadius'), 'maps2_citymap' => 'USER', 'maps2_citymap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Maps2', 'pluginName' => 'CityMap'), 'media2click_list' => 'USER', 'media2click_list.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Media2click', 'pluginName' => 'List'), 'publications_pi1' => 'USER', 'publications_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Publications', 'pluginName' => 'Pi1'), 'tgmcopyright_main' => 'USER', 'tgmcopyright_main.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TgmCopyright', 'pluginName' => 'Main'), 'tgmcopyright_sitemap' => 'USER', 'tgmcopyright_sitemap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TgmCopyright', 'pluginName' => 'Sitemap'))), 'list')
in /html/epochenapoleon/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('r', 'S'))
in /html/epochenapoleon/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('r', 'S'))
in /html/epochenapoleon/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('r', 'S')
in /html/epochenapoleon/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('r', 'S')
in /html/epochenapoleon/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('orderBy' => 'sorting', 'where' => 'colPos = 0'), 'stdWrap.' => array('dataWrap' => '<!--TYPO3SEARCH_begin--> | <!--TYPO3SEARCH_end-->')))
in /html/epochenapoleon/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('orderBy' => 'sorting', 'where' => 'colPos = 0'), 'stdWrap.' => array('dataWrap' => '<!--TYPO3SEARCH_begin--> | <!--TYPO3SEARCH_end-->')))
in /html/epochenapoleon/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('orderBy' => 'sorting', 'where' => 'colPos = 0'), 'stdWrap.' => array('dataWrap' => '<!--TYPO3SEARCH_begin--> | <!--TYPO3SEARCH_end-->')), 'styles.content.get')
in /html/epochenapoleon/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('CONTENT', array('table' => 'tt_content', 'select.' => array('orderBy' => 'sorting', 'where' => 'colPos = 0'), 'stdWrap.' => array('dataWrap' => '<!--TYPO3SEARCH_begin--> | <!--TYPO3SEARCH_end-->')), 'variables.content')
in /html/epochenapoleon/public/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 305
                continue;
            }
            if (!in_array($variableName, $reservedVariables)) {
                $cObjConf = $variablesToProcess[$variableName . '.'] ?? [];
                $variables[$variableName] = $this->cObj->cObjGetSingle($cObjType, $cObjConf, 'variables.' . $variableName);
            } else {
                throw new \InvalidArgumentException(
                    'Cannot use reserved name "' . $variableName . '" as variable name in FLUIDTEMPLATE.',
                    1288095720
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->getContentObjectVariables(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:sitepackage/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:sitepackage/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:sitepackage/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '3', 'includeSpacer' => '1', 'as' => 'stm', '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')))))))), 'special' => 'directory', 'special.' => array('value' => '29'), 'expandAll' => '1', 'titleField' => 'nav_title // title'), '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:bootstrap_package/Resources/Public/Images/BootstrapPackage.svg', 'inverted' => 'EXT:bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '52', 'width' => '180', 'linktitle' => '')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('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' => '')), 'TEXT', '20.' => array('value' => '', 'if.' => array('isTrue' => ''))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array(), 'layout' => 'TEXT', 'layout.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets_', 'cObjNum' => '1', '1.' => array('current' => '1')))), 'headerlogo' => 'IMAGE', 'headerlogo.' => array('file' => 'EXT:sitepackage/Resources/Public/Images/logo.jpg', 'altText' => 'Logo von EPOCHE NAPOLEON - Hier klicken um jederzeit auf die Startseite zurück zukommen.', 'titleText' => 'Logo von EPOCHE NAPOLEON', 'stdWrap.' => array('typolink.' => array('parameter' => '1'))), 'menu' => 'HMENU', 'menu.' => array('entryLevel' => '0', 'noBlur' => '1', 'wrap' => '<nav id="menu"><ul class="mainnav"> | </ul></nav>', 'TMENU', '1.' => array('NO' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'wrapItemAndSub' => '<li>|</li>'))), 'pfad' => 'HMENU', 'pfad.' => array('special' => 'rootline', 'special.' => array('range' => '0 | -1'), 'TMENU', '1.' => array('noBlur' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1', 'crop' => '25', 'wrap' => '<span itemprop="title">|</span>'), 'doNotLinkIt' => '|*| 0 |*| 1', 'allWrap' => '|*| |&nbsp;&#62;&nbsp;|*| |', 'linkWrap' => '<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">|</span>', 'ATagParams' => 'itemprop="url"'))), 'abcmenu' => 'HMENU', 'abcmenu.' => array('wrap' => '<div class="cM">|</div>', 'entryLevel' => '1', 'TMENU', '1.' => array('expAll' => '1', 'wrap' => '<ul>|</ul>', 'NO' => '1', 'NO.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_NO">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))))))), 'ACT' => '1', 'ACT.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_ACT">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))))))), 'CUR' => '1', 'CUR.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_CUR">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))))))))), 'teasermenu' => 'COA', 'teasermenu.' => array('wrap' => '<section class="teasermenu">|</section>', 'HMENU', '10.' => array('special' => 'directory', 'special.' => array('data' => 'leveluid:-1,slide'), 'TMENU', '1.' => array('maxItems' => '', 'wrap' => '', 'NO.' => array('wrapItemAndSub' => '<article>|</article>', 'before.' => array('wrap' => '<header>|</header>', 'stdWrap.' => array('override.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array('table' => 'pages', 'fieldName' => 'media', 'treatIdAsReference' => '1', 'data' => 'levelmeida:-1, slide'), 'sorting' => 'sorting_foreign', 'renderObj' => 'IMAGE', 'renderObj.' => array('file.' => array(*DEEP NESTED ARRAY*), 'titleText.' => array(*DEEP NESTED ARRAY*), 'altText.' => array(*DEEP NESTED ARRAY*), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array(*DEEP NESTED ARRAY*)), 'wrap' => '<header>|<header>', 'append' => 'TEXT', 'append.' => array('value' => ''))))), 'linkWrap' => '<p class="teaser-link">|</p>', 'after.' => array('field' => 'abstract', 'crop' => '250 | ... | 1', 'wrap' => '<p class="teaser-description">|</p>', 'append' => 'TEXT', 'append.' => array('value' => '')))))), 'lastUpdate' => 'TEXT', 'lastUpdate.' => array('data' => 'register : SYS_LASTCHANGED', 'if.' => array('isTrue.' => array('data' => 'register : SYS_LASTCHANGED')), 'strftime' => '%d. %m. %Y - %H:%m', 'wrap' => '<div class="lastChange">Letzte Änderung der Seite:&nbsp;|</div>'), 'footer' => 'TEXT', 'footer.' => array('data' => 'date:U', 'strftime' => '&copy;&nbsp;Copyright 2003 - %Y by EPOCHE NAPOLEON'), 'content' => '< styles.content.get', 'content.' => array('select.' => array('where' => 'colPos = 0'), 'stdWrap.' => array('dataWrap' => '<!--TYPO3SEARCH_begin--> | <!--TYPO3SEARCH_end-->')), 'contentleft' => '< styles.content.get', 'contentleft.' => array('select.' => array('where' => 'colPos = 1')), 'asidecontent' => '< styles.content.get', 'asidecontent.' => array('select.' => array('where' => 'colPos = 2')), 'rand' => '< styles.content.get', 'rand.' => array('select.' => array('where' => 'colPos = 3')), 'playstore' => 'RECORDS', 'playstore.' => array('tables' => 'tt_content', 'source' => ''), 'abcmenushow' => 'TEXT', 'abcmenushow.' => array('value' => '0')), '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')))), 'format' => 'html'))
in /html/epochenapoleon/public/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 100
        $this->setLayoutRootPath($conf);
        $this->setPartialRootPath($conf);
        $this->setExtbaseVariables($conf);
        $this->assignSettings($conf);
        $variables = $this->getContentObjectVariables($conf);
        $variables = $this->contentDataProcessor->process($this->cObj, $conf, $variables);

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

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:sitepackage/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:sitepackage/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:sitepackage/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '3', 'includeSpacer' => '1', 'as' => 'stm', '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')))))))), 'special' => 'directory', 'special.' => array('value' => '29'), 'expandAll' => '1', 'titleField' => 'nav_title // title'), '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:bootstrap_package/Resources/Public/Images/BootstrapPackage.svg', 'inverted' => 'EXT:bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '52', 'width' => '180', 'linktitle' => '')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('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' => '')), 'TEXT', '20.' => array('value' => '', 'if.' => array('isTrue' => ''))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array(), 'layout' => 'TEXT', 'layout.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets_', 'cObjNum' => '1', '1.' => array('current' => '1')))), 'headerlogo' => 'IMAGE', 'headerlogo.' => array('file' => 'EXT:sitepackage/Resources/Public/Images/logo.jpg', 'altText' => 'Logo von EPOCHE NAPOLEON - Hier klicken um jederzeit auf die Startseite zurück zukommen.', 'titleText' => 'Logo von EPOCHE NAPOLEON', 'stdWrap.' => array('typolink.' => array('parameter' => '1'))), 'menu' => 'HMENU', 'menu.' => array('entryLevel' => '0', 'noBlur' => '1', 'wrap' => '<nav id="menu"><ul class="mainnav"> | </ul></nav>', 'TMENU', '1.' => array('NO' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'wrapItemAndSub' => '<li>|</li>'))), 'pfad' => 'HMENU', 'pfad.' => array('special' => 'rootline', 'special.' => array('range' => '0 | -1'), 'TMENU', '1.' => array('noBlur' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1', 'crop' => '25', 'wrap' => '<span itemprop="title">|</span>'), 'doNotLinkIt' => '|*| 0 |*| 1', 'allWrap' => '|*| |&nbsp;&#62;&nbsp;|*| |', 'linkWrap' => '<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">|</span>', 'ATagParams' => 'itemprop="url"'))), 'abcmenu' => 'HMENU', 'abcmenu.' => array('wrap' => '<div class="cM">|</div>', 'entryLevel' => '1', 'TMENU', '1.' => array('expAll' => '1', 'wrap' => '<ul>|</ul>', 'NO' => '1', 'NO.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_NO">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))))))), 'ACT' => '1', 'ACT.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_ACT">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))))))), 'CUR' => '1', 'CUR.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_CUR">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))))))))), 'teasermenu' => 'COA', 'teasermenu.' => array('wrap' => '<section class="teasermenu">|</section>', 'HMENU', '10.' => array('special' => 'directory', 'special.' => array('data' => 'leveluid:-1,slide'), 'TMENU', '1.' => array('maxItems' => '', 'wrap' => '', 'NO.' => array('wrapItemAndSub' => '<article>|</article>', 'before.' => array('wrap' => '<header>|</header>', 'stdWrap.' => array('override.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array('table' => 'pages', 'fieldName' => 'media', 'treatIdAsReference' => '1', 'data' => 'levelmeida:-1, slide'), 'sorting' => 'sorting_foreign', 'renderObj' => 'IMAGE', 'renderObj.' => array('file.' => array(*DEEP NESTED ARRAY*), 'titleText.' => array(*DEEP NESTED ARRAY*), 'altText.' => array(*DEEP NESTED ARRAY*), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array(*DEEP NESTED ARRAY*)), 'wrap' => '<header>|<header>', 'append' => 'TEXT', 'append.' => array('value' => ''))))), 'linkWrap' => '<p class="teaser-link">|</p>', 'after.' => array('field' => 'abstract', 'crop' => '250 | ... | 1', 'wrap' => '<p class="teaser-description">|</p>', 'append' => 'TEXT', 'append.' => array('value' => '')))))), 'lastUpdate' => 'TEXT', 'lastUpdate.' => array('data' => 'register : SYS_LASTCHANGED', 'if.' => array('isTrue.' => array('data' => 'register : SYS_LASTCHANGED')), 'strftime' => '%d. %m. %Y - %H:%m', 'wrap' => '<div class="lastChange">Letzte Änderung der Seite:&nbsp;|</div>'), 'footer' => 'TEXT', 'footer.' => array('data' => 'date:U', 'strftime' => '&copy;&nbsp;Copyright 2003 - %Y by EPOCHE NAPOLEON'), 'content' => '< styles.content.get', 'content.' => array('select.' => array('where' => 'colPos = 0'), 'stdWrap.' => array('dataWrap' => '<!--TYPO3SEARCH_begin--> | <!--TYPO3SEARCH_end-->')), 'contentleft' => '< styles.content.get', 'contentleft.' => array('select.' => array('where' => 'colPos = 1')), 'asidecontent' => '< styles.content.get', 'asidecontent.' => array('select.' => array('where' => 'colPos = 2')), 'rand' => '< styles.content.get', 'rand.' => array('select.' => array('where' => 'colPos = 3')), 'playstore' => 'RECORDS', 'playstore.' => array('tables' => 'tt_content', 'source' => ''), 'abcmenushow' => 'TEXT', 'abcmenushow.' => array('value' => '0')), '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')))), 'format' => 'html'))
in /html/epochenapoleon/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:sitepackage/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:sitepackage/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:sitepackage/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '3', 'includeSpacer' => '1', 'as' => 'stm', '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')))))))), 'special' => 'directory', 'special.' => array('value' => '29'), 'expandAll' => '1', 'titleField' => 'nav_title // title'), '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:bootstrap_package/Resources/Public/Images/BootstrapPackage.svg', 'inverted' => 'EXT:bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '52', 'width' => '180', 'linktitle' => '')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('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' => '')), 'TEXT', '20.' => array('value' => '', 'if.' => array('isTrue' => ''))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array(), 'layout' => 'TEXT', 'layout.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets_', 'cObjNum' => '1', '1.' => array('current' => '1')))), 'headerlogo' => 'IMAGE', 'headerlogo.' => array('file' => 'EXT:sitepackage/Resources/Public/Images/logo.jpg', 'altText' => 'Logo von EPOCHE NAPOLEON - Hier klicken um jederzeit auf die Startseite zurück zukommen.', 'titleText' => 'Logo von EPOCHE NAPOLEON', 'stdWrap.' => array('typolink.' => array('parameter' => '1'))), 'menu' => 'HMENU', 'menu.' => array('entryLevel' => '0', 'noBlur' => '1', 'wrap' => '<nav id="menu"><ul class="mainnav"> | </ul></nav>', 'TMENU', '1.' => array('NO' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'wrapItemAndSub' => '<li>|</li>'))), 'pfad' => 'HMENU', 'pfad.' => array('special' => 'rootline', 'special.' => array('range' => '0 | -1'), 'TMENU', '1.' => array('noBlur' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1', 'crop' => '25', 'wrap' => '<span itemprop="title">|</span>'), 'doNotLinkIt' => '|*| 0 |*| 1', 'allWrap' => '|*| |&nbsp;&#62;&nbsp;|*| |', 'linkWrap' => '<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">|</span>', 'ATagParams' => 'itemprop="url"'))), 'abcmenu' => 'HMENU', 'abcmenu.' => array('wrap' => '<div class="cM">|</div>', 'entryLevel' => '1', 'TMENU', '1.' => array('expAll' => '1', 'wrap' => '<ul>|</ul>', 'NO' => '1', 'NO.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_NO">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))))))), 'ACT' => '1', 'ACT.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_ACT">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))))))), 'CUR' => '1', 'CUR.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_CUR">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))))))))), 'teasermenu' => 'COA', 'teasermenu.' => array('wrap' => '<section class="teasermenu">|</section>', 'HMENU', '10.' => array('special' => 'directory', 'special.' => array('data' => 'leveluid:-1,slide'), 'TMENU', '1.' => array('maxItems' => '', 'wrap' => '', 'NO.' => array('wrapItemAndSub' => '<article>|</article>', 'before.' => array('wrap' => '<header>|</header>', 'stdWrap.' => array('override.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array('table' => 'pages', 'fieldName' => 'media', 'treatIdAsReference' => '1', 'data' => 'levelmeida:-1, slide'), 'sorting' => 'sorting_foreign', 'renderObj' => 'IMAGE', 'renderObj.' => array('file.' => array(*DEEP NESTED ARRAY*), 'titleText.' => array(*DEEP NESTED ARRAY*), 'altText.' => array(*DEEP NESTED ARRAY*), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array(*DEEP NESTED ARRAY*)), 'wrap' => '<header>|<header>', 'append' => 'TEXT', 'append.' => array('value' => ''))))), 'linkWrap' => '<p class="teaser-link">|</p>', 'after.' => array('field' => 'abstract', 'crop' => '250 | ... | 1', 'wrap' => '<p class="teaser-description">|</p>', 'append' => 'TEXT', 'append.' => array('value' => '')))))), 'lastUpdate' => 'TEXT', 'lastUpdate.' => array('data' => 'register : SYS_LASTCHANGED', 'if.' => array('isTrue.' => array('data' => 'register : SYS_LASTCHANGED')), 'strftime' => '%d. %m. %Y - %H:%m', 'wrap' => '<div class="lastChange">Letzte Änderung der Seite:&nbsp;|</div>'), 'footer' => 'TEXT', 'footer.' => array('data' => 'date:U', 'strftime' => '&copy;&nbsp;Copyright 2003 - %Y by EPOCHE NAPOLEON'), 'content' => '< styles.content.get', 'content.' => array('select.' => array('where' => 'colPos = 0'), 'stdWrap.' => array('dataWrap' => '<!--TYPO3SEARCH_begin--> | <!--TYPO3SEARCH_end-->')), 'contentleft' => '< styles.content.get', 'contentleft.' => array('select.' => array('where' => 'colPos = 1')), 'asidecontent' => '< styles.content.get', 'asidecontent.' => array('select.' => array('where' => 'colPos = 2')), 'rand' => '< styles.content.get', 'rand.' => array('select.' => array('where' => 'colPos = 3')), 'playstore' => 'RECORDS', 'playstore.' => array('tables' => 'tt_content', 'source' => ''), 'abcmenushow' => 'TEXT', 'abcmenushow.' => array('value' => '0')), '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')))), 'format' => 'html'))
in /html/epochenapoleon/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:sitepackage/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:sitepackage/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:sitepackage/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '3', 'includeSpacer' => '1', 'as' => 'stm', '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')))))))), 'special' => 'directory', 'special.' => array('value' => '29'), 'expandAll' => '1', 'titleField' => 'nav_title // title'), '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:bootstrap_package/Resources/Public/Images/BootstrapPackage.svg', 'inverted' => 'EXT:bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '52', 'width' => '180', 'linktitle' => '')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('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' => '')), 'TEXT', '20.' => array('value' => '', 'if.' => array('isTrue' => ''))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array(), 'layout' => 'TEXT', 'layout.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets_', 'cObjNum' => '1', '1.' => array('current' => '1')))), 'headerlogo' => 'IMAGE', 'headerlogo.' => array('file' => 'EXT:sitepackage/Resources/Public/Images/logo.jpg', 'altText' => 'Logo von EPOCHE NAPOLEON - Hier klicken um jederzeit auf die Startseite zurück zukommen.', 'titleText' => 'Logo von EPOCHE NAPOLEON', 'stdWrap.' => array('typolink.' => array('parameter' => '1'))), 'menu' => 'HMENU', 'menu.' => array('entryLevel' => '0', 'noBlur' => '1', 'wrap' => '<nav id="menu"><ul class="mainnav"> | </ul></nav>', 'TMENU', '1.' => array('NO' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'wrapItemAndSub' => '<li>|</li>'))), 'pfad' => 'HMENU', 'pfad.' => array('special' => 'rootline', 'special.' => array('range' => '0 | -1'), 'TMENU', '1.' => array('noBlur' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1', 'crop' => '25', 'wrap' => '<span itemprop="title">|</span>'), 'doNotLinkIt' => '|*| 0 |*| 1', 'allWrap' => '|*| |&nbsp;&#62;&nbsp;|*| |', 'linkWrap' => '<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">|</span>', 'ATagParams' => 'itemprop="url"'))), 'abcmenu' => 'HMENU', 'abcmenu.' => array('wrap' => '<div class="cM">|</div>', 'entryLevel' => '1', 'TMENU', '1.' => array('expAll' => '1', 'wrap' => '<ul>|</ul>', 'NO' => '1', 'NO.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_NO">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))))))), 'ACT' => '1', 'ACT.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_ACT">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))))))), 'CUR' => '1', 'CUR.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_CUR">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array('isTrue.' => array(*DEEP NESTED ARRAY*)))))))))), 'teasermenu' => 'COA', 'teasermenu.' => array('wrap' => '<section class="teasermenu">|</section>', 'HMENU', '10.' => array('special' => 'directory', 'special.' => array('data' => 'leveluid:-1,slide'), 'TMENU', '1.' => array('maxItems' => '', 'wrap' => '', 'NO.' => array('wrapItemAndSub' => '<article>|</article>', 'before.' => array('wrap' => '<header>|</header>', 'stdWrap.' => array('override.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array('table' => 'pages', 'fieldName' => 'media', 'treatIdAsReference' => '1', 'data' => 'levelmeida:-1, slide'), 'sorting' => 'sorting_foreign', 'renderObj' => 'IMAGE', 'renderObj.' => array('file.' => array(*DEEP NESTED ARRAY*), 'titleText.' => array(*DEEP NESTED ARRAY*), 'altText.' => array(*DEEP NESTED ARRAY*), 'imageLinkWrap' => '1', 'imageLinkWrap.' => array(*DEEP NESTED ARRAY*)), 'wrap' => '<header>|<header>', 'append' => 'TEXT', 'append.' => array('value' => ''))))), 'linkWrap' => '<p class="teaser-link">|</p>', 'after.' => array('field' => 'abstract', 'crop' => '250 | ... | 1', 'wrap' => '<p class="teaser-description">|</p>', 'append' => 'TEXT', 'append.' => array('value' => '')))))), 'lastUpdate' => 'TEXT', 'lastUpdate.' => array('data' => 'register : SYS_LASTCHANGED', 'if.' => array('isTrue.' => array('data' => 'register : SYS_LASTCHANGED')), 'strftime' => '%d. %m. %Y - %H:%m', 'wrap' => '<div class="lastChange">Letzte Änderung der Seite:&nbsp;|</div>'), 'footer' => 'TEXT', 'footer.' => array('data' => 'date:U', 'strftime' => '&copy;&nbsp;Copyright 2003 - %Y by EPOCHE NAPOLEON'), 'content' => '< styles.content.get', 'content.' => array('select.' => array('where' => 'colPos = 0'), 'stdWrap.' => array('dataWrap' => '<!--TYPO3SEARCH_begin--> | <!--TYPO3SEARCH_end-->')), 'contentleft' => '< styles.content.get', 'contentleft.' => array('select.' => array('where' => 'colPos = 1')), 'asidecontent' => '< styles.content.get', 'asidecontent.' => array('select.' => array('where' => 'colPos = 2')), 'rand' => '< styles.content.get', 'rand.' => array('select.' => array('where' => 'colPos = 3')), 'playstore' => 'RECORDS', 'playstore.' => array('tables' => 'tt_content', 'source' => ''), 'abcmenushow' => 'TEXT', 'abcmenushow.' => array('value' => '0')), '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')))), 'format' => 'html'), '10')
in /html/epochenapoleon/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:bootstrap_package/Resources/Public/Scss/bootstrap5/theme.scss', 'ckefontawesome' => 'https://use.fontawesome.com/releases/v5.8.1/css/all.css', 'ckefontawesome.' => array('external' => '1', 'if.' => array('isTrue' => '1')), 'tx_rxshariff_shariff' => 'EXT:rx_shariff/Resources/Public/Css/shariff.complete.css', 'bootstrap' => 'EXT:solr/Resources/Public/StyleSheets/Frontend/Bootstrap/bootstrap.min.css', 'search' => 'EXT:solr/Resources/Public/StyleSheets/Frontend/results.css', 'solr-loader' => 'EXT:solr/Resources/Public/StyleSheets/Frontend/loader.css', 'solr-suggest' => 'EXT:solr/Resources/Public/StyleSheets/Frontend/suggest.css', 'solr-ui' => 'EXT:solr/Resources/Css/JQueryUi/jquery-ui.custom.css', 'media2click' => 'EXT:media2click/Resources/Public/Css/media2click.css', 'media2click.' => array('forceOnTop' => '1'), 'file01' => 'EXT:sitepackage/Resources/Public/Css/epochenapoleon.css', 'file01.' => array('media' => 'screen', 'forceOnTop' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'fontawesome' => 'https://use.fontawesome.com/releases/v5.8.1/css/all.css', 'fontawesome.' => array('external' => '1', 'excludeFromConcatenation' => '1')), '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.umd.min.js', 'photoswipe_ui' => 'EXT:bootstrap_package/Resources/Public/Contrib/photoswipe/photoswipe-lightbox.umd.min.js', 'photoswipe_caption' => 'EXT:bootstrap_package/Resources/Public/Contrib/photoswipe/photoswipe-dynamic-caption-plugin.umd.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', 'bootstrap-js' => 'EXT:solr/Resources/Public/JavaScript/Bootstrap/bootstrap.js', 'solr-jquery' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery.min.js', 'solr-options' => 'EXT:solr/Resources/Public/JavaScript/facet_options_controller.js', 'solr-autocomplete' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery.autocomplete.min.js', 'solr-suggest' => 'EXT:solr/Resources/Public/JavaScript/suggest_controller.js', 'solr-ui' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery-ui.min.js', 'solr-daterange' => 'EXT:solr/Resources/Public/JavaScript/facet_daterange_controller.js', 'solr-numericrange' => 'EXT:solr/Resources/Public/JavaScript/facet_numericrange_controller.js', 'solr-uri-jquery' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery.URI.min.js', 'solr-ajaxify' => 'EXT:solr/Resources/Public/JavaScript/search_controller.js', 'jquery_content_rating' => '', 'file01' => 'https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js', 'file01.' => array('async' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '1', 'forceOnTop' => '1')), 'typeNum' => '0', 'shortcutIcon' => 'EXT:bootstrap_package/Resources/Public/Icons/favicon.ico', 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('TEXT', '10.' => array('data' => 'TSFE:id', 'noTrimWrap' => '| id="p|"|'), '< lib.page.class', '20.' => array('stdWrap.' => array('noTrimWrap' => '| class="|"|')), 'wrap' => '<body|>'), 'headerData.' => array('HMENU', '10.' => array('special' => 'browse', 'special.' => array('items' => 'prev|next'), 'TMENU', '1.' => array('NO.' => array('allWrap' => '<link rel="prev" href="|"> |*| <link rel="next" href="|">', 'doNotLinkIt' => '1', 'stdWrap.' => array('typolink.' => array('parameter.' => array('data' => 'field:uid'), 'returnLast' => 'url'))))), 'TEXT', '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 -->'), 'COA', '657.' => array('COA', '10.' => array('TEXT', '10.' => array('value' => 'UA-50240478-1', 'wrap' => '<!-- Global site tag (gtag.js) - Google Analytics --><script async src="https://www.googletagmanager.com/gtag/js?id=#"></script>', 'wrap.' => array('splitChar' => '#'), 'required' => '1'), 'TEXT', '20.' => array('value' => 'UA-50240478-1', 'wrap' => '<!-- Global site tag (gtag.js) - Google Analytics --><script> /* Google Analytics Optout */ var gaProperty = \'#\'; var disableStr = \'ga-disable-\' + gaProperty; if (document.cookie.indexOf(disableStr + \'=true\') > -1) { window[disableStr] = true; } function gaOptout() { document.cookie = disableStr + \'=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/\'; window[disableStr] = true; } /* Google Analytics */ window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag(\'js\', new Date()); gtag(\'config\', gaProperty, { \'anonymize_ip\': true }); /* End Google Analytics */</script>', 'wrap.' => array('splitChar' => '#'), 'required' => '1'))), 'TEXT', '7567.' => array('typolink.' => array('parameter.' => array('data' => 'leveluid:0', 'wrap' => '|,7567'), 'forceAbsoluteUrl' => '1', 'returnLast' => 'url'), 'wrap' => ' <link rel="profile" href="http://a9.com/-/spec/opensearch/1.1/" /> <link rel="search" type="application/opensearchdescription+xml" href="|" title="Website Search" />')), '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:sitepackage/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:sitepackage/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:sitepackage/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '3', 'includeSpacer' => '1', 'as' => 'stm', '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*)))))))), 'special' => 'directory', 'special.' => array('value' => '29'), 'expandAll' => '1', 'titleField' => 'nav_title // title'), '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:bootstrap_package/Resources/Public/Images/BootstrapPackage.svg', 'inverted' => 'EXT:bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '52', 'width' => '180', 'linktitle' => '')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('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' => '')), 'TEXT', '20.' => array('value' => '', 'if.' => array('isTrue' => ''))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array(), 'layout' => 'TEXT', 'layout.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets_', 'cObjNum' => '1', '1.' => array('current' => '1')))), 'headerlogo' => 'IMAGE', 'headerlogo.' => array('file' => 'EXT:sitepackage/Resources/Public/Images/logo.jpg', 'altText' => 'Logo von EPOCHE NAPOLEON - Hier klicken um jederzeit auf die Startseite zurück zukommen.', 'titleText' => 'Logo von EPOCHE NAPOLEON', 'stdWrap.' => array('typolink.' => array('parameter' => '1'))), 'menu' => 'HMENU', 'menu.' => array('entryLevel' => '0', 'noBlur' => '1', 'wrap' => '<nav id="menu"><ul class="mainnav"> | </ul></nav>', 'TMENU', '1.' => array('NO' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'wrapItemAndSub' => '<li>|</li>'))), 'pfad' => 'HMENU', 'pfad.' => array('special' => 'rootline', 'special.' => array('range' => '0 | -1'), 'TMENU', '1.' => array('noBlur' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1', 'crop' => '25', 'wrap' => '<span itemprop="title">|</span>'), 'doNotLinkIt' => '|*| 0 |*| 1', 'allWrap' => '|*| |&nbsp;&#62;&nbsp;|*| |', 'linkWrap' => '<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">|</span>', 'ATagParams' => 'itemprop="url"'))), 'abcmenu' => 'HMENU', 'abcmenu.' => array('wrap' => '<div class="cM">|</div>', 'entryLevel' => '1', 'TMENU', '1.' => array('expAll' => '1', 'wrap' => '<ul>|</ul>', 'NO' => '1', 'NO.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_NO">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array(*DEEP NESTED ARRAY*))))))), 'ACT' => '1', 'ACT.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_ACT">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array(*DEEP NESTED ARRAY*))))))), 'CUR' => '1', 'CUR.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_CUR">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array(*DEEP NESTED ARRAY*))))))))), 'teasermenu' => 'COA', 'teasermenu.' => array('wrap' => '<section class="teasermenu">|</section>', 'HMENU', '10.' => array('special' => 'directory', 'special.' => array('data' => 'leveluid:-1,slide'), 'TMENU', '1.' => array('maxItems' => '', 'wrap' => '', 'NO.' => array('wrapItemAndSub' => '<article>|</article>', 'before.' => array('wrap' => '<header>|</header>', 'stdWrap.' => array('override.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array(*DEEP NESTED ARRAY*), 'sorting' => 'sorting_foreign', 'renderObj' => 'IMAGE', 'renderObj.' => array(*DEEP NESTED ARRAY*), 'wrap' => '<header>|<header>', 'append' => 'TEXT', 'append.' => array(*DEEP NESTED ARRAY*))))), 'linkWrap' => '<p class="teaser-link">|</p>', 'after.' => array('field' => 'abstract', 'crop' => '250 | ... | 1', 'wrap' => '<p class="teaser-description">|</p>', 'append' => 'TEXT', 'append.' => array('value' => '')))))), 'lastUpdate' => 'TEXT', 'lastUpdate.' => array('data' => 'register : SYS_LASTCHANGED', 'if.' => array('isTrue.' => array('data' => 'register : SYS_LASTCHANGED')), 'strftime' => '%d. %m. %Y - %H:%m', 'wrap' => '<div class="lastChange">Letzte Änderung der Seite:&nbsp;|</div>'), 'footer' => 'TEXT', 'footer.' => array('data' => 'date:U', 'strftime' => '&copy;&nbsp;Copyright 2003 - %Y by EPOCHE NAPOLEON'), 'content' => '< styles.content.get', 'content.' => array('select.' => array('where' => 'colPos = 0'), 'stdWrap.' => array('dataWrap' => '<!--TYPO3SEARCH_begin--> | <!--TYPO3SEARCH_end-->')), 'contentleft' => '< styles.content.get', 'contentleft.' => array('select.' => array('where' => 'colPos = 1')), 'asidecontent' => '< styles.content.get', 'asidecontent.' => array('select.' => array('where' => 'colPos = 2')), 'rand' => '< styles.content.get', 'rand.' => array('select.' => array('where' => 'colPos = 3')), 'playstore' => 'RECORDS', 'playstore.' => array('tables' => 'tt_content', 'source' => ''), 'abcmenushow' => 'TEXT', 'abcmenushow.' => array('value' => '0')), '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')))), 'format' => 'html'), 'meta.' => array('viewport' => 'width=device-width, initial-scale=1.0', 'robots' => 'noindex, nofollow', 'apple-mobile-web-app-capable' => 'no', 'X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'google' => 'notranslate', 'google-site-verification' => '', 'og:type' => 'website', 'og:site_name.' => array('data' => 'site:websiteTitle'), 'og:image.' => array('stdWrap.' => array('if.' => array('directReturn' => 'EXT:sitepackage/Resources/Public/Images/logo.png'), 'typolink.' => array('parameter.' => array('stdWrap.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'path:EXT:sitepackage/Resources/Public/Images/logo.png', 'if.' => array('isFalse.' => array(*DEEP NESTED ARRAY*))), 'height' => '628c', 'width' => '1200')))), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1'))), 'twitter:card' => 'summary', 'twitter:card.' => array('override' => 'summary_large_image', 'override.' => array('if.' => array('isTrue.' => array('data' => 'field:twitter_image // field:og_image')))), 'twitter:creator.' => array('data' => 'page:tx_csseo_tw_creator', 'htmlSpecialChars' => '1', 'wrap' => '@|', 'ifEmpty' => '', 'required' => '1'), 'twitter:site.' => array('data' => 'page:tx_csseo_tw_site', 'htmlSpecialChars' => '1', 'wrap' => '@|', 'ifEmpty' => '', 'required' => '1'), 'twitter:image.' => array('stdWrap.' => array('if.' => array('directReturn' => 'EXT:sitepackage/Resources/Public/Images/logo.png'), 'typolink.' => array('parameter.' => array('stdWrap.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'path:EXT:sitepackage/Resources/Public/Images/logo.png', 'if.' => array('isFalse.' => array(*DEEP NESTED ARRAY*))), 'height' => '512c', 'width' => '1024')))), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1'))), 'robots.' => array('replace' => '1')), 'includeCSSLibs.' => array('googlewebfont' => 'https://fonts.googleapis.com/css?display=swap&family=Source Sans Pro: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) -->'), 'includeJSFooter.' => array('tx_rxshariff_shariff' => 'EXT:rx_shariff/Resources/Public/JavaScript/shariff.min.js', 'EXT:cs_seo/Resources/Public/JavaScript/cs_seo.ga.js', '654.' => array('if.' => array('isTrue' => 'UA-50240478-1')), 'media2click' => 'EXT:media2click/Resources/Public/JavaScript/media2click.js'), 'jsInline.' => array('COA', '654.' => array('TEXT', '15.' => array('value' => '', 'wrap' => ' /* Google Tag Manager */ (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\',\'#\'); /* End Google Tag Manager */', 'wrap.' => array('splitChar' => '#'), 'required' => '1'), 'TEXT', '20.' => array('value' => '', 'wrap' => ' /* PIWIK */ var _paq = _paq || []; _paq.push([\'trackPageView\']); _paq.push([\'enableLinkTracking\']); (function() { var u="//#"; _paq.push([\'setTrackerUrl\', u+\'js/\']); _paq.push([\'setSiteId\', 1]); var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0]; g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'js/\'; s.parentNode.insertBefore(g,s); })(); /* End PIWIK */', 'wrap.' => array('splitChar' => '#'), 'required' => '1'))), 'footerData.' => array('USER', '655.' => array('userFunc' => 'Clickstorm\\CsSeo\\UserFunc\\StructuredData->getSiteSearch', 'userFunc.' => array('pid' => '0', 'searchterm' => 'searchterm'), 'stdWrap.' => array('if.' => array('isTrue' => ''))), 'USER', '656.' => array('userFunc' => 'Clickstorm\\CsSeo\\UserFunc\\StructuredData->getBreadcrumb', 'stdWrap.' => array('if.' => array('isTrue' => ''))), 'USER', '657.' => array('userFunc' => 'Clickstorm\\CsSeo\\UserFunc\\StructuredData->getJsonLdOfPageOrRecord')), 'inlineSettings.' => array('m2cCookieLifetime' => '7'), 'config.' => array('headerData.' => array('COA', '5.' => array('TEXT', '10.' => array('value' => '{$page.seo_title}', 'insertData' => '1', 'ifEmpty.' => array('value' => 'EPOCHE NAPOLEON')), 'TEXT', '20.' => array('value' => '{$page.title}', 'insertData' => '1', 'wrap' => '&nbsp;&#124;&nbsp; |'), 'wrap' => '<title>|</title>')), 'headerComment' => ' Das Projekt EPOCHE NAPOLEON ist ein nicht kommerzielles Geschichtsportral.', 'additionalHeaders.' => array(), 'shortcutIcon' => '{$page.favicon}', 'doctype' => 'html5', 'xmlprologue' => 'none', 'htmlTag_langKey' => 'DE', 'noPageTitle' => '0', 'disableAllHeaderCode' => '0', 'disablePrefixComment' => '0', 'inlineStyle2TempFile' => '1', 'metaCharset' => 'utf-8', 'moveJsFromHeaderToFooter' => '1', 'compressCss' => '1', 'compressJs' => '1', 'concatenateCss' => '1', 'concatenateJs' => '1', 'cache' => '0')), '')
in /html/epochenapoleon/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:bootstrap_package/Resources/Public/Scss/bootstrap5/theme.scss', 'ckefontawesome' => 'https://use.fontawesome.com/releases/v5.8.1/css/all.css', 'ckefontawesome.' => array('external' => '1', 'if.' => array('isTrue' => '1')), 'tx_rxshariff_shariff' => 'EXT:rx_shariff/Resources/Public/Css/shariff.complete.css', 'bootstrap' => 'EXT:solr/Resources/Public/StyleSheets/Frontend/Bootstrap/bootstrap.min.css', 'search' => 'EXT:solr/Resources/Public/StyleSheets/Frontend/results.css', 'solr-loader' => 'EXT:solr/Resources/Public/StyleSheets/Frontend/loader.css', 'solr-suggest' => 'EXT:solr/Resources/Public/StyleSheets/Frontend/suggest.css', 'solr-ui' => 'EXT:solr/Resources/Css/JQueryUi/jquery-ui.custom.css', 'media2click' => 'EXT:media2click/Resources/Public/Css/media2click.css', 'media2click.' => array('forceOnTop' => '1'), 'file01' => 'EXT:sitepackage/Resources/Public/Css/epochenapoleon.css', 'file01.' => array('media' => 'screen', 'forceOnTop' => '0', 'disableCompression' => '0', 'excludeFromConcatenation' => '0'), 'fontawesome' => 'https://use.fontawesome.com/releases/v5.8.1/css/all.css', 'fontawesome.' => array('external' => '1', 'excludeFromConcatenation' => '1')), '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.umd.min.js', 'photoswipe_ui' => 'EXT:bootstrap_package/Resources/Public/Contrib/photoswipe/photoswipe-lightbox.umd.min.js', 'photoswipe_caption' => 'EXT:bootstrap_package/Resources/Public/Contrib/photoswipe/photoswipe-dynamic-caption-plugin.umd.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', 'bootstrap-js' => 'EXT:solr/Resources/Public/JavaScript/Bootstrap/bootstrap.js', 'solr-jquery' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery.min.js', 'solr-options' => 'EXT:solr/Resources/Public/JavaScript/facet_options_controller.js', 'solr-autocomplete' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery.autocomplete.min.js', 'solr-suggest' => 'EXT:solr/Resources/Public/JavaScript/suggest_controller.js', 'solr-ui' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery-ui.min.js', 'solr-daterange' => 'EXT:solr/Resources/Public/JavaScript/facet_daterange_controller.js', 'solr-numericrange' => 'EXT:solr/Resources/Public/JavaScript/facet_numericrange_controller.js', 'solr-uri-jquery' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery.URI.min.js', 'solr-ajaxify' => 'EXT:solr/Resources/Public/JavaScript/search_controller.js', 'jquery_content_rating' => '', 'file01' => 'https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js', 'file01.' => array('async' => '0', 'disableCompression' => '1', 'excludeFromConcatenation' => '1', 'forceOnTop' => '1')), 'typeNum' => '0', 'shortcutIcon' => 'EXT:bootstrap_package/Resources/Public/Icons/favicon.ico', 'bodyTagCObject' => 'COA', 'bodyTagCObject.' => array('TEXT', '10.' => array('data' => 'TSFE:id', 'noTrimWrap' => '| id="p|"|'), '< lib.page.class', '20.' => array('stdWrap.' => array('noTrimWrap' => '| class="|"|')), 'wrap' => '<body|>'), 'headerData.' => array('HMENU', '10.' => array('special' => 'browse', 'special.' => array('items' => 'prev|next'), 'TMENU', '1.' => array('NO.' => array('allWrap' => '<link rel="prev" href="|"> |*| <link rel="next" href="|">', 'doNotLinkIt' => '1', 'stdWrap.' => array('typolink.' => array('parameter.' => array('data' => 'field:uid'), 'returnLast' => 'url'))))), 'TEXT', '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 -->'), 'COA', '657.' => array('COA', '10.' => array('TEXT', '10.' => array('value' => 'UA-50240478-1', 'wrap' => '<!-- Global site tag (gtag.js) - Google Analytics --><script async src="https://www.googletagmanager.com/gtag/js?id=#"></script>', 'wrap.' => array('splitChar' => '#'), 'required' => '1'), 'TEXT', '20.' => array('value' => 'UA-50240478-1', 'wrap' => '<!-- Global site tag (gtag.js) - Google Analytics --><script> /* Google Analytics Optout */ var gaProperty = \'#\'; var disableStr = \'ga-disable-\' + gaProperty; if (document.cookie.indexOf(disableStr + \'=true\') > -1) { window[disableStr] = true; } function gaOptout() { document.cookie = disableStr + \'=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/\'; window[disableStr] = true; } /* Google Analytics */ window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag(\'js\', new Date()); gtag(\'config\', gaProperty, { \'anonymize_ip\': true }); /* End Google Analytics */</script>', 'wrap.' => array('splitChar' => '#'), 'required' => '1'))), 'TEXT', '7567.' => array('typolink.' => array('parameter.' => array('data' => 'leveluid:0', 'wrap' => '|,7567'), 'forceAbsoluteUrl' => '1', 'returnLast' => 'url'), 'wrap' => ' <link rel="profile" href="http://a9.com/-/spec/opensearch/1.1/" /> <link rel="search" type="application/opensearchdescription+xml" href="|" title="Website Search" />')), '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:sitepackage/Resources/Private/Templates/Page/', 'EXT:bootstrap_package/Resources/Private/Templates/Page/'), 'partialRootPaths.' => array('EXT:sitepackage/Resources/Private/Partials/Page/', 'EXT:bootstrap_package/Resources/Private/Partials/Page/'), 'layoutRootPaths.' => array('EXT:sitepackage/Resources/Private/Layouts/Page/', 'EXT:bootstrap_package/Resources/Private/Layouts/Page/'), 'dataProcessing.' => array('BK2K\\BootstrapPackage\\DataProcessing\\ConstantsProcessor', '1.' => array('as' => 'theme', 'key' => 'page.theme'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '3', 'includeSpacer' => '1', 'as' => 'stm', '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*)))))))), 'special' => 'directory', 'special.' => array('value' => '29'), 'expandAll' => '1', 'titleField' => 'nav_title // title'), '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:bootstrap_package/Resources/Public/Images/BootstrapPackage.svg', 'inverted' => 'EXT:bootstrap_package/Resources/Public/Images/BootstrapPackageInverted.svg'), 'as' => 'logo')), 'settings.' => array('logo.' => array('height' => '52', 'width' => '180', 'linktitle' => '')), 'variables.' => array('pageTitle' => 'TEXT', 'pageTitle.' => array('data' => 'page:title'), 'siteTitle' => 'TEXT', 'siteTitle.' => array('data' => 'siteLanguage:websiteTitle//site:websiteTitle//site:identifier'), 'rootPage' => 'TEXT', 'rootPage.' => array('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' => '')), 'TEXT', '20.' => array('value' => '', 'if.' => array('isTrue' => ''))), 'breadcrumbExtendedValue' => 'COA', 'breadcrumbExtendedValue.' => array(), 'layout' => 'TEXT', 'layout.' => array('cObject' => 'TEXT', 'cObject.' => array('data' => 'pagelayout', 'required' => '1', 'case' => 'uppercamelcase', 'split.' => array('token' => 'pagets_', 'cObjNum' => '1', '1.' => array('current' => '1')))), 'headerlogo' => 'IMAGE', 'headerlogo.' => array('file' => 'EXT:sitepackage/Resources/Public/Images/logo.jpg', 'altText' => 'Logo von EPOCHE NAPOLEON - Hier klicken um jederzeit auf die Startseite zurück zukommen.', 'titleText' => 'Logo von EPOCHE NAPOLEON', 'stdWrap.' => array('typolink.' => array('parameter' => '1'))), 'menu' => 'HMENU', 'menu.' => array('entryLevel' => '0', 'noBlur' => '1', 'wrap' => '<nav id="menu"><ul class="mainnav"> | </ul></nav>', 'TMENU', '1.' => array('NO' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1'), 'wrapItemAndSub' => '<li>|</li>'))), 'pfad' => 'HMENU', 'pfad.' => array('special' => 'rootline', 'special.' => array('range' => '0 | -1'), 'TMENU', '1.' => array('noBlur' => '1', 'NO.' => array('stdWrap.' => array('htmlSpecialChars' => '1', 'crop' => '25', 'wrap' => '<span itemprop="title">|</span>'), 'doNotLinkIt' => '|*| 0 |*| 1', 'allWrap' => '|*| |&nbsp;&#62;&nbsp;|*| |', 'linkWrap' => '<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb">|</span>', 'ATagParams' => 'itemprop="url"'))), 'abcmenu' => 'HMENU', 'abcmenu.' => array('wrap' => '<div class="cM">|</div>', 'entryLevel' => '1', 'TMENU', '1.' => array('expAll' => '1', 'wrap' => '<ul>|</ul>', 'NO' => '1', 'NO.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_NO">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array(*DEEP NESTED ARRAY*))))))), 'ACT' => '1', 'ACT.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_ACT">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array(*DEEP NESTED ARRAY*))))))), 'CUR' => '1', 'CUR.' => array('doNotLinkIt' => '1', 'wrapItemAndSub' => '<li class="cM_CUR">|</li>', 'stdWrap.' => array('cObject' => 'COA', 'cObject.' => array('LOAD_REGISTER', '10.' => array('Ziel' => '_self', 'Ziel.' => array('override.' => array('dataWrap' => '{field:target // TSFE:intTarget}'))), 'TEXT', '20.' => array('field' => 'nav_title // title', 'typolink.' => array('parameter.' => array('dataWrap' => '{field:alias // field:uid} {register:Ziel} typ{field:doktype}', 'if.' => array(*DEEP NESTED ARRAY*))))))))), 'teasermenu' => 'COA', 'teasermenu.' => array('wrap' => '<section class="teasermenu">|</section>', 'HMENU', '10.' => array('special' => 'directory', 'special.' => array('data' => 'leveluid:-1,slide'), 'TMENU', '1.' => array('maxItems' => '', 'wrap' => '', 'NO.' => array('wrapItemAndSub' => '<article>|</article>', 'before.' => array('wrap' => '<header>|</header>', 'stdWrap.' => array('override.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array(*DEEP NESTED ARRAY*), 'sorting' => 'sorting_foreign', 'renderObj' => 'IMAGE', 'renderObj.' => array(*DEEP NESTED ARRAY*), 'wrap' => '<header>|<header>', 'append' => 'TEXT', 'append.' => array(*DEEP NESTED ARRAY*))))), 'linkWrap' => '<p class="teaser-link">|</p>', 'after.' => array('field' => 'abstract', 'crop' => '250 | ... | 1', 'wrap' => '<p class="teaser-description">|</p>', 'append' => 'TEXT', 'append.' => array('value' => '')))))), 'lastUpdate' => 'TEXT', 'lastUpdate.' => array('data' => 'register : SYS_LASTCHANGED', 'if.' => array('isTrue.' => array('data' => 'register : SYS_LASTCHANGED')), 'strftime' => '%d. %m. %Y - %H:%m', 'wrap' => '<div class="lastChange">Letzte Änderung der Seite:&nbsp;|</div>'), 'footer' => 'TEXT', 'footer.' => array('data' => 'date:U', 'strftime' => '&copy;&nbsp;Copyright 2003 - %Y by EPOCHE NAPOLEON'), 'content' => '< styles.content.get', 'content.' => array('select.' => array('where' => 'colPos = 0'), 'stdWrap.' => array('dataWrap' => '<!--TYPO3SEARCH_begin--> | <!--TYPO3SEARCH_end-->')), 'contentleft' => '< styles.content.get', 'contentleft.' => array('select.' => array('where' => 'colPos = 1')), 'asidecontent' => '< styles.content.get', 'asidecontent.' => array('select.' => array('where' => 'colPos = 2')), 'rand' => '< styles.content.get', 'rand.' => array('select.' => array('where' => 'colPos = 3')), 'playstore' => 'RECORDS', 'playstore.' => array('tables' => 'tt_content', 'source' => ''), 'abcmenushow' => 'TEXT', 'abcmenushow.' => array('value' => '0')), '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')))), 'format' => 'html'), 'meta.' => array('viewport' => 'width=device-width, initial-scale=1.0', 'robots' => 'noindex, nofollow', 'apple-mobile-web-app-capable' => 'no', 'X-UA-Compatible' => 'IE=edge', 'X-UA-Compatible.' => array('attribute' => 'http-equiv'), 'google' => 'notranslate', 'google-site-verification' => '', 'og:type' => 'website', 'og:site_name.' => array('data' => 'site:websiteTitle'), 'og:image.' => array('stdWrap.' => array('if.' => array('directReturn' => 'EXT:sitepackage/Resources/Public/Images/logo.png'), 'typolink.' => array('parameter.' => array('stdWrap.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'path:EXT:sitepackage/Resources/Public/Images/logo.png', 'if.' => array('isFalse.' => array(*DEEP NESTED ARRAY*))), 'height' => '628c', 'width' => '1200')))), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1'))), 'twitter:card' => 'summary', 'twitter:card.' => array('override' => 'summary_large_image', 'override.' => array('if.' => array('isTrue.' => array('data' => 'field:twitter_image // field:og_image')))), 'twitter:creator.' => array('data' => 'page:tx_csseo_tw_creator', 'htmlSpecialChars' => '1', 'wrap' => '@|', 'ifEmpty' => '', 'required' => '1'), 'twitter:site.' => array('data' => 'page:tx_csseo_tw_site', 'htmlSpecialChars' => '1', 'wrap' => '@|', 'ifEmpty' => '', 'required' => '1'), 'twitter:image.' => array('stdWrap.' => array('if.' => array('directReturn' => 'EXT:sitepackage/Resources/Public/Images/logo.png'), 'typolink.' => array('parameter.' => array('stdWrap.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'path:EXT:sitepackage/Resources/Public/Images/logo.png', 'if.' => array('isFalse.' => array(*DEEP NESTED ARRAY*))), 'height' => '512c', 'width' => '1024')))), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1'))), 'robots.' => array('replace' => '1')), 'includeCSSLibs.' => array('googlewebfont' => 'https://fonts.googleapis.com/css?display=swap&family=Source Sans Pro: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) -->'), 'includeJSFooter.' => array('tx_rxshariff_shariff' => 'EXT:rx_shariff/Resources/Public/JavaScript/shariff.min.js', 'EXT:cs_seo/Resources/Public/JavaScript/cs_seo.ga.js', '654.' => array('if.' => array('isTrue' => 'UA-50240478-1')), 'media2click' => 'EXT:media2click/Resources/Public/JavaScript/media2click.js'), 'jsInline.' => array('COA', '654.' => array('TEXT', '15.' => array('value' => '', 'wrap' => ' /* Google Tag Manager */ (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\',\'#\'); /* End Google Tag Manager */', 'wrap.' => array('splitChar' => '#'), 'required' => '1'), 'TEXT', '20.' => array('value' => '', 'wrap' => ' /* PIWIK */ var _paq = _paq || []; _paq.push([\'trackPageView\']); _paq.push([\'enableLinkTracking\']); (function() { var u="//#"; _paq.push([\'setTrackerUrl\', u+\'js/\']); _paq.push([\'setSiteId\', 1]); var d=document, g=d.createElement(\'script\'), s=d.getElementsByTagName(\'script\')[0]; g.type=\'text/javascript\'; g.async=true; g.defer=true; g.src=u+\'js/\'; s.parentNode.insertBefore(g,s); })(); /* End PIWIK */', 'wrap.' => array('splitChar' => '#'), 'required' => '1'))), 'footerData.' => array('USER', '655.' => array('userFunc' => 'Clickstorm\\CsSeo\\UserFunc\\StructuredData->getSiteSearch', 'userFunc.' => array('pid' => '0', 'searchterm' => 'searchterm'), 'stdWrap.' => array('if.' => array('isTrue' => ''))), 'USER', '656.' => array('userFunc' => 'Clickstorm\\CsSeo\\UserFunc\\StructuredData->getBreadcrumb', 'stdWrap.' => array('if.' => array('isTrue' => ''))), 'USER', '657.' => array('userFunc' => 'Clickstorm\\CsSeo\\UserFunc\\StructuredData->getJsonLdOfPageOrRecord')), 'inlineSettings.' => array('m2cCookieLifetime' => '7'), 'config.' => array('headerData.' => array('COA', '5.' => array('TEXT', '10.' => array('value' => '{$page.seo_title}', 'insertData' => '1', 'ifEmpty.' => array('value' => 'EPOCHE NAPOLEON')), 'TEXT', '20.' => array('value' => '{$page.title}', 'insertData' => '1', 'wrap' => '&nbsp;&#124;&nbsp; |'), 'wrap' => '<title>|</title>')), 'headerComment' => ' Das Projekt EPOCHE NAPOLEON ist ein nicht kommerzielles Geschichtsportral.', 'additionalHeaders.' => array(), 'shortcutIcon' => '{$page.favicon}', 'doctype' => 'html5', 'xmlprologue' => 'none', 'htmlTag_langKey' => 'DE', 'noPageTitle' => '0', 'disableAllHeaderCode' => '0', 'disablePrefixComment' => '0', 'inlineStyle2TempFile' => '1', 'metaCharset' => 'utf-8', 'moveJsFromHeaderToFooter' => '1', 'compressCss' => '1', 'compressJs' => '1', 'concatenateCss' => '1', 'concatenateJs' => '1', 'cache' => '0')))
in /html/epochenapoleon/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 /html/epochenapoleon/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 /html/epochenapoleon/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 /html/epochenapoleon/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 /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/public/typo3conf/ext/events2/Classes/Middleware/GetUriForDayMiddleware.php line 47

    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        if ($request->getHeader('ext-events2') !== ['getUriForDay']) {
            return $handler->handle($request);
        }

        $startDate = $this->getStartDateFromRequest($request);
        if ($startDate === null) {
at JWeiland\Events2\Middleware\GetUriForDayMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/public/typo3conf/ext/events2/Classes/Middleware/GetSubCategoriesMiddleware.php line 42

    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        if ($request->getHeader('ext-events2') !== ['getSubCategories']) {
            return $handler->handle($request);
        }

        $categoryUid = (int)($request->getQueryParams()['events2Category'] ?? 0);
        if ($categoryUid === 0) {
at JWeiland\Events2\Middleware\GetSubCategoriesMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/public/typo3conf/ext/events2/Classes/Middleware/GetLocationsMiddleware.php line 41

    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        if ($request->getHeader('ext-events2') !== ['getLocations']) {
            return $handler->handle($request);
        }

        // Hint: search may fail with "&" in $search
        $search = trim(htmlspecialchars(strip_tags(
at JWeiland\Events2\Middleware\GetLocationsMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/public/typo3conf/ext/events2/Classes/Middleware/GetDaysForMonthMiddleware.php line 65

    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        if ($request->getHeader('ext-events2') !== ['getDaysForMonth']) {
            return $handler->handle($request);
        }

        $getParameters = $request->getQueryParams();

at JWeiland\Events2\Middleware\GetDaysForMonthMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/public/typo3conf/ext/solr/Classes/Middleware/PageIndexerFinisher.php line 42
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if ($request->hasHeader(PageIndexerRequest::SOLR_INDEX_HEADER)) {
            /* @var PageIndexerRequestHandler $pageIndexerRequestHandler */
            $pageIndexerRequestHandler = GeneralUtility::makeInstance(PageIndexerRequestHandler::class);
            $pageIndexerRequestHandler->shutdown();
at ApacheSolrForTypo3\Solr\Middleware\PageIndexerFinisher->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/public/typo3conf/ext/maps2/Classes/Middleware/InitFeSessionMiddleware.php line 42
    }

    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            $this->extConf->getExplicitAllowMapProviderRequests()
            && $this->mapHelper->isRequestToMapProviderAllowed()
        ) {
at JWeiland\Maps2\Middleware\InitFeSessionMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/public/typo3conf/ext/http2/Classes/Http/ResourcePusher.php line 33
class ResourcePusher implements MiddlewareInterface
{
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (($GLOBALS['TSFE'] ?? null) instanceof TypoScriptFrontendController) {
            $resources = $GLOBALS['TSFE']->config['b13/http2'] ?? null;
            /** @var NormalizedParams $normalizedParams */
            $normalizedParams = $request->getAttribute('normalizedParams');
at B13\Http2\Http\ResourcePusher->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/public/typo3conf/ext/solr/Classes/Middleware/PageIndexerInitialization.php line 66
            }
            $pageIndexerRequestHandler->run();
        }

        return $handler->handle($request);
    }
}
at ApacheSolrForTypo3\Solr\Middleware\PageIndexerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/public/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 89
                return $response;
            }
        }

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

    protected function buildRedirectResponse(UriInterface $uri, array $redirectRecord): ResponseInterface
    {
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/public/typo3conf/ext/div2007/Classes/Middleware/StoreRequest.php line 73
        $extendedRequest = $extendedRequest->withAttribute('routing', $routeResult);

        $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['div2007']['TYPO3_REQUEST'] = $extendedRequest;

        return $handler->handle($request);
    }
}
at JambageCom\Div2007\Middleware\StoreRequest->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/public/typo3conf/ext/solr/Classes/Middleware/SolrRoutingMiddleware.php line 140
            $this->language->getLanguageId() === 0 ? (int)$page['uid'] : (int)$page['l10n_parent']
        );

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

        $this->configure($enhancerConfiguration);

at ApacheSolrForTypo3\Solr\Middleware\SolrRoutingMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(Psr\Http\Server\RequestHandlerInterface@anonymous/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af))
in /html/epochenapoleon/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/html/epochenapoleon/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$5af->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/epochenapoleon/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 /html/epochenapoleon/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 /html/epochenapoleon/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 /html/epochenapoleon/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 /html/epochenapoleon/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 /html/epochenapoleon/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();
});