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/2) #1297759968 TYPO3\CMS\Extbase\Property\Exception

Exception while property mapping at property path "": Property GeorgRinger\News\Domain\Model\NewsDefault::$newsRepository does not exist

in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Property/PropertyMapper.php line 131
            return $result;
        } catch (TargetNotFoundException $e) {
            throw $e;
        } catch (\Exception $e) {
            throw new Exception('Exception while property mapping at property path "' . implode('.', $currentPropertyPath) . '": ' . $e->getMessage(), 1297759968, $e);
        }
    }

    /**
at TYPO3\CMS\Extbase\Property\PropertyMapper->convert('1232', 'GeorgRinger\\News\\Domain\\Model\\News', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Controller/Argument.php line 268
            $this->value = $rawValue;
            return $this;
        }
        try {
            $this->value = $this->propertyMapper->convert($rawValue, $this->dataType, $this->propertyMappingConfiguration);
        } catch (TargetNotFoundException $e) {
            // for optional arguments no exception is thrown.
            if ($this->isRequired()) {
                throw $e;
at TYPO3\CMS\Extbase\Mvc\Controller\Argument->setValue('1232')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 962
        /** @var \TYPO3\CMS\Extbase\Mvc\Controller\Argument $argument */
        foreach ($this->arguments as $argument) {
            $argumentName = $argument->getName();
            if ($this->request->hasArgument($argumentName)) {
                $argument->setValue($this->request->getArgument($argumentName));
            } elseif ($argument->isRequired()) {
                throw new RequiredArgumentMissingException('Required argument "' . $argumentName . '" is not set for ' . $this->request->getControllerObjectName() . '->' . $this->request->getControllerActionName() . '.', 1298012500);
            }
        }
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->mapRequestArgumentsToControllerArguments()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 420
            // todo: replace method_exists with is_callable or even both
            //       method_exists alone does not guarantee that $callable is actually callable
            call_user_func($callable);
        }
        $this->mapRequestArgumentsToControllerArguments();
        $this->controllerContext = $this->buildControllerContext();
        $this->view = $this->resolveView();
        if ($this->view !== null) {
            $this->initializeView($this->view);
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/_smart-production/live/typo3conf/ext/news/Classes/Controller/NewsBaseController.php line 54
     */
    public function processRequest(RequestInterface $request, ResponseInterface $response)
    {
        try {
            parent::processRequest($request, $response);
        } catch (\Exception $exception) {
            $this->handleKnownExceptionsElseThrowAgain($exception);
        }
    }
at GeorgRinger\News\Controller\NewsBaseController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 89
                throw new InfiniteLoopException('Could not ultimately dispatch the request after ' . $dispatchLoopCount . ' iterations. Most probably, a @' . IgnoreValidation::class . ' annotation is missing on re-displaying a form with validation errors.', 1217839467);
            }
            $controller = $this->resolveController($request);
            try {
                $controller->processRequest($request, $response);
            } catch (StopActionException $ignoredException) {
            }
        }

at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 66
        }

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

    /**
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 183
    protected function handleRequest(): string
    {
        $requestHandler = $this->requestHandlerResolver->resolveRequestHandler();

        $response = $requestHandler->handleRequest();
        // If response is NULL after handling the request we need to stop
        // This happens for instance, when a USER object was converted to a USER_INT
        // @see TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler::handleRequest()
        if ($response === null) {
at TYPO3\CMS\Extbase\Core\Bootstrap->handleRequest()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 173
     */
    public function run(string $content, array $configuration): string
    {
        $this->initialize($configuration);
        return $this->handleRequest();
    }

    /**
     * @return string
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'))
at call_user_func_array(array(object(TYPO3\CMS\Extbase\Core\Bootstrap), 'run'), array('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1')))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5720
                if (is_object($classObj) && method_exists($classObj, $parts[1]) && is_callable($callable)) {
                    $classObj->cObj = $this;
                    $content = call_user_func_array($callable, [
                        $content,
                        $conf
                    ]);
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', 3);
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), '')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 43
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->processNonCacheableContentPartsAndSubstituteContentMarkers()!
            $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
        }
        $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
        if ($this->cObj->doConvertToUserIntObject) {
            $this->cObj->doConvertToUserIntObject = false;
            $content = $this->cObj->cObjGetSingle('USER_INT', $conf);
        } else {
at TYPO3\CMS\Frontend\ContentObject\UserContentObject->render(array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'tt_content.list.20.news_pi1')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 193
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(Q3i\Q3iBase\Core\Frontend\ContentObjectRenderer), array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView')), 'tt_content.list.20.news_pi1', 'news_pi1')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 170
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('uid' => 654, 'pid' => 84, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 642, 'tstamp' => 1547763523, 'crdate' => 1543488994, 'cruser_id' => 5, 'hidden' => 0, 'sorting' => 128, 'CType' => 'list', 'header' => 'header', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 3, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => 'news_pi1', 'sectionIndex' => 0, 'linkToTop' => 0, 'filelink_size' => 0, '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"></value> </field> <field index="settings.recursive"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;detail</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF"></value> </field> <field index="settings.listPid"> <value index="vDEF"></value> </field> <field index="settings.backPid"> <value index="vDEF">12</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</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.tags"> <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">100</value> </field> </language> </sheet> </data></T3FlexForms>', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:33:{s:5:"CType";N;s:6:"colPos";N;s:6:"header";N;s:13:"header_layout";N;s:15:"header_position";N;s:4:"date";N;s:11:"header_link";N;s:9:"subheader";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:11:"frame_class";N;s:6:"layout";N;s:5:"panel";N;s:18:"space_before_class";N;s:17:"space_after_class";N;s:20:"padding_before_class";N;s:19:"padding_after_class";N;s:12:"sectionIndex";N;s:9:"linkToTop";N;s:16:"sys_language_uid";N;s:6:"hidden";N;s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:8:"rwd_show";N;s:8:"rwd_hide";N;s:15:"rwd_orientation";N;s:10:"rwd_motion";N;s:9:"rwd_delay";N;s:10:"rwd_repeat";N;}', 'file_collections' => '', 'filelink_sorting' => '', 'target' => '', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'categories' => 0, 'selected_categories' => '', 'category_field' => '', 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_srlanguagemenu_type' => 0, 'tx_srlanguagemenu_languages' => '', 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'none', 'space_before_class' => '', 'space_after_class' => '', 'table_class' => '', 'l10n_state' => null, 'l10n_source' => 0, 'padding_before_class' => '', 'padding_after_class' => '', 'imagecols_small' => 1, 'imagecols_medium' => 1, 'tx_news_related_news' => 0, 'rwd_show' => '', 'rwd_hide' => '', 'rwd_orientation' => '', 'rwd_motion' => '', 'image_rwd' => 0, 'tx_flux_migrated_version' => null, 'panel' => '', 'rwd_delay' => '', 'rwd_repeat' => 0, 'tx_yoastseo_linking_suggestions' => 0, 'filelink_sorting_direction' => ''), 'typoscriptObjectPath' => 'tt_content.list.20.news_pi1', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/Standard_action_list_3b3429c51591614f6c3b272182dacddb67509f3f.php line 161
$array8 = array (
);$arguments4['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array8);
$arguments4['table'] = 'tt_content';
$renderChildrenClosure5 = ($arguments4['data'] !== null) ? function() use ($arguments4) { return $arguments4['data']; } : $renderChildrenClosure5;
$output3 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments4, $renderChildrenClosure5, $renderingContext);

$output3 .= '
  ';
return $output3;
at Standard_action_list_3b3429c51591614f6c3b272182dacddb67509f3f->{closure}()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/Standard_action_list_3b3429c51591614f6c3b272182dacddb67509f3f.php line 181
  ';
return $output9;
};

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

$output0 .= '

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

$output410 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments438, $renderChildrenClosure439, $renderingContext);

$output410 .= '
       ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_f427a3d4bd682eca4a81ab2e3b72b7cfa324309e->{closure}()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/layout_Default_html_f427a3d4bd682eca4a81ab2e3b72b7cfa324309e.php line 3185
  ';
return $output410;
};

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

$output0 .= '


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

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 358
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 108

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:fluidfoundationtheme/Resources/Private/Templates/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:fluidfoundationtheme/Resources/Private/Partials/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:fluidfoundationtheme/Resources/Private/Layouts/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:fluidfoundationtheme/Resources/Private/Templates/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:fluidfoundationtheme/Resources/Private/Partials/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:fluidfoundationtheme/Resources/Private/Layouts/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:fluidfoundationtheme/Resources/Private/Templates/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:fluidfoundationtheme/Resources/Private/Partials/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:fluidfoundationtheme/Resources/Private/Layouts/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'lib.contentElement')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:fluidfoundationtheme/Resources/Private/Templates/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:fluidfoundationtheme/Resources/Private/Partials/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:fluidfoundationtheme/Resources/Private/Layouts/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'list')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 47
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'q3ianalytics_renderer' => '< lib.contentElement', 'q3ianalytics_renderer.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer')), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu')), 'fluidfoundationtheme_accordion' => '< lib.contentElement', 'fluidfoundationtheme_accordion.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Accordion')), 'fluidfoundationtheme_advertisement' => '< lib.contentElement', 'fluidfoundationtheme_advertisement.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Advertisement')), 'fluidfoundationtheme_carousel' => '< lib.contentElement', 'fluidfoundationtheme_carousel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Carousel')), 'fluidfoundationtheme_counter' => '< lib.contentElement', 'fluidfoundationtheme_counter.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Counter')), 'fluidfoundationtheme_fourcolumn' => '< lib.contentElement', 'fluidfoundationtheme_fourcolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Fourcolumn')), 'fluidfoundationtheme_group' => '< lib.contentElement', 'fluidfoundationtheme_group.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Group')), 'fluidfoundationtheme_isotope' => '< lib.contentElement', 'fluidfoundationtheme_isotope.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Isotope')), 'fluidfoundationtheme_pagedcontent' => '< lib.contentElement', 'fluidfoundationtheme_pagedcontent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pagedcontent')), 'fluidfoundationtheme_pageheader' => '< lib.contentElement', 'fluidfoundationtheme_pageheader.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pageheader')), 'fluidfoundationtheme_panel' => '< lib.contentElement', 'fluidfoundationtheme_panel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Panel')), 'fluidfoundationtheme_pattern' => '< lib.contentElement', 'fluidfoundationtheme_pattern.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pattern')), 'fluidfoundationtheme_progressbar' => '< lib.contentElement', 'fluidfoundationtheme_progressbar.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Progressbar')), 'fluidfoundationtheme_row' => '< lib.contentElement', 'fluidfoundationtheme_row.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Row')), 'fluidfoundationtheme_section' => '< lib.contentElement', 'fluidfoundationtheme_section.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Section')), 'fluidfoundationtheme_social' => '< lib.contentElement', 'fluidfoundationtheme_social.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Social')), 'fluidfoundationtheme_tabs' => '< lib.contentElement', 'fluidfoundationtheme_tabs.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Tabs')), 'fluidfoundationtheme_themen' => '< lib.contentElement', 'fluidfoundationtheme_themen.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Themen')), 'fluidfoundationtheme_threecolumn' => '< lib.contentElement', 'fluidfoundationtheme_threecolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Threecolumn')), 'fluidfoundationtheme_timeline' => '< lib.contentElement', 'fluidfoundationtheme_timeline.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Timeline')), 'fluidfoundationtheme_twocolumn' => '< lib.contentElement', 'fluidfoundationtheme_twocolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Twocolumn')), 'menu_sitemap2' => '< tt_content.menu_sitemap', 'menu_sitemap2.' => array('templateName' => 'MenuSitemap2')))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'q3ianalytics_renderer' => '< lib.contentElement', 'q3ianalytics_renderer.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer')), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu')), 'fluidfoundationtheme_accordion' => '< lib.contentElement', 'fluidfoundationtheme_accordion.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Accordion')), 'fluidfoundationtheme_advertisement' => '< lib.contentElement', 'fluidfoundationtheme_advertisement.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Advertisement')), 'fluidfoundationtheme_carousel' => '< lib.contentElement', 'fluidfoundationtheme_carousel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Carousel')), 'fluidfoundationtheme_counter' => '< lib.contentElement', 'fluidfoundationtheme_counter.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Counter')), 'fluidfoundationtheme_fourcolumn' => '< lib.contentElement', 'fluidfoundationtheme_fourcolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Fourcolumn')), 'fluidfoundationtheme_group' => '< lib.contentElement', 'fluidfoundationtheme_group.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Group')), 'fluidfoundationtheme_isotope' => '< lib.contentElement', 'fluidfoundationtheme_isotope.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Isotope')), 'fluidfoundationtheme_pagedcontent' => '< lib.contentElement', 'fluidfoundationtheme_pagedcontent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pagedcontent')), 'fluidfoundationtheme_pageheader' => '< lib.contentElement', 'fluidfoundationtheme_pageheader.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pageheader')), 'fluidfoundationtheme_panel' => '< lib.contentElement', 'fluidfoundationtheme_panel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Panel')), 'fluidfoundationtheme_pattern' => '< lib.contentElement', 'fluidfoundationtheme_pattern.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pattern')), 'fluidfoundationtheme_progressbar' => '< lib.contentElement', 'fluidfoundationtheme_progressbar.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Progressbar')), 'fluidfoundationtheme_row' => '< lib.contentElement', 'fluidfoundationtheme_row.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Row')), 'fluidfoundationtheme_section' => '< lib.contentElement', 'fluidfoundationtheme_section.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Section')), 'fluidfoundationtheme_social' => '< lib.contentElement', 'fluidfoundationtheme_social.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Social')), 'fluidfoundationtheme_tabs' => '< lib.contentElement', 'fluidfoundationtheme_tabs.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Tabs')), 'fluidfoundationtheme_themen' => '< lib.contentElement', 'fluidfoundationtheme_themen.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Themen')), 'fluidfoundationtheme_threecolumn' => '< lib.contentElement', 'fluidfoundationtheme_threecolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Threecolumn')), 'fluidfoundationtheme_timeline' => '< lib.contentElement', 'fluidfoundationtheme_timeline.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Timeline')), 'fluidfoundationtheme_twocolumn' => '< lib.contentElement', 'fluidfoundationtheme_twocolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Twocolumn')), 'menu_sitemap2' => '< tt_content.menu_sitemap', 'menu_sitemap2.' => array('templateName' => 'MenuSitemap2')))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'q3ianalytics_renderer' => '< lib.contentElement', 'q3ianalytics_renderer.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer')), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu')), 'fluidfoundationtheme_accordion' => '< lib.contentElement', 'fluidfoundationtheme_accordion.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Accordion')), 'fluidfoundationtheme_advertisement' => '< lib.contentElement', 'fluidfoundationtheme_advertisement.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Advertisement')), 'fluidfoundationtheme_carousel' => '< lib.contentElement', 'fluidfoundationtheme_carousel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Carousel')), 'fluidfoundationtheme_counter' => '< lib.contentElement', 'fluidfoundationtheme_counter.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Counter')), 'fluidfoundationtheme_fourcolumn' => '< lib.contentElement', 'fluidfoundationtheme_fourcolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Fourcolumn')), 'fluidfoundationtheme_group' => '< lib.contentElement', 'fluidfoundationtheme_group.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Group')), 'fluidfoundationtheme_isotope' => '< lib.contentElement', 'fluidfoundationtheme_isotope.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Isotope')), 'fluidfoundationtheme_pagedcontent' => '< lib.contentElement', 'fluidfoundationtheme_pagedcontent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pagedcontent')), 'fluidfoundationtheme_pageheader' => '< lib.contentElement', 'fluidfoundationtheme_pageheader.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pageheader')), 'fluidfoundationtheme_panel' => '< lib.contentElement', 'fluidfoundationtheme_panel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Panel')), 'fluidfoundationtheme_pattern' => '< lib.contentElement', 'fluidfoundationtheme_pattern.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pattern')), 'fluidfoundationtheme_progressbar' => '< lib.contentElement', 'fluidfoundationtheme_progressbar.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Progressbar')), 'fluidfoundationtheme_row' => '< lib.contentElement', 'fluidfoundationtheme_row.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Row')), 'fluidfoundationtheme_section' => '< lib.contentElement', 'fluidfoundationtheme_section.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Section')), 'fluidfoundationtheme_social' => '< lib.contentElement', 'fluidfoundationtheme_social.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Social')), 'fluidfoundationtheme_tabs' => '< lib.contentElement', 'fluidfoundationtheme_tabs.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Tabs')), 'fluidfoundationtheme_themen' => '< lib.contentElement', 'fluidfoundationtheme_themen.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Themen')), 'fluidfoundationtheme_threecolumn' => '< lib.contentElement', 'fluidfoundationtheme_threecolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Threecolumn')), 'fluidfoundationtheme_timeline' => '< lib.contentElement', 'fluidfoundationtheme_timeline.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Timeline')), 'fluidfoundationtheme_twocolumn' => '< lib.contentElement', 'fluidfoundationtheme_twocolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Twocolumn')), 'menu_sitemap2' => '< tt_content.menu_sitemap', 'menu_sitemap2.' => array('templateName' => 'MenuSitemap2')), 'tt_content')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'q3ianalytics_renderer' => '< lib.contentElement', 'q3ianalytics_renderer.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer')), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu')), 'fluidfoundationtheme_accordion' => '< lib.contentElement', 'fluidfoundationtheme_accordion.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Accordion')), 'fluidfoundationtheme_advertisement' => '< lib.contentElement', 'fluidfoundationtheme_advertisement.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Advertisement')), 'fluidfoundationtheme_carousel' => '< lib.contentElement', 'fluidfoundationtheme_carousel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Carousel')), 'fluidfoundationtheme_counter' => '< lib.contentElement', 'fluidfoundationtheme_counter.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Counter')), 'fluidfoundationtheme_fourcolumn' => '< lib.contentElement', 'fluidfoundationtheme_fourcolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Fourcolumn')), 'fluidfoundationtheme_group' => '< lib.contentElement', 'fluidfoundationtheme_group.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Group')), 'fluidfoundationtheme_isotope' => '< lib.contentElement', 'fluidfoundationtheme_isotope.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Isotope')), 'fluidfoundationtheme_pagedcontent' => '< lib.contentElement', 'fluidfoundationtheme_pagedcontent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pagedcontent')), 'fluidfoundationtheme_pageheader' => '< lib.contentElement', 'fluidfoundationtheme_pageheader.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pageheader')), 'fluidfoundationtheme_panel' => '< lib.contentElement', 'fluidfoundationtheme_panel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Panel')), 'fluidfoundationtheme_pattern' => '< lib.contentElement', 'fluidfoundationtheme_pattern.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pattern')), 'fluidfoundationtheme_progressbar' => '< lib.contentElement', 'fluidfoundationtheme_progressbar.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Progressbar')), 'fluidfoundationtheme_row' => '< lib.contentElement', 'fluidfoundationtheme_row.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Row')), 'fluidfoundationtheme_section' => '< lib.contentElement', 'fluidfoundationtheme_section.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Section')), 'fluidfoundationtheme_social' => '< lib.contentElement', 'fluidfoundationtheme_social.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Social')), 'fluidfoundationtheme_tabs' => '< lib.contentElement', 'fluidfoundationtheme_tabs.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Tabs')), 'fluidfoundationtheme_themen' => '< lib.contentElement', 'fluidfoundationtheme_themen.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Themen')), 'fluidfoundationtheme_threecolumn' => '< lib.contentElement', 'fluidfoundationtheme_threecolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Threecolumn')), 'fluidfoundationtheme_timeline' => '< lib.contentElement', 'fluidfoundationtheme_timeline.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Timeline')), 'fluidfoundationtheme_twocolumn' => '< lib.contentElement', 'fluidfoundationtheme_twocolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Twocolumn')), 'menu_sitemap2' => '< tt_content.menu_sitemap', 'menu_sitemap2.' => array('templateName' => 'MenuSitemap2')), 'renderObj')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 95
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $conf['table'] . ':' . $row['uid'];
                        $this->cObj->lastChanged($row['tstamp']);
                        $cObj->start($row, $conf['table']);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('pidInList.' => array('field' => 'uid'), 'where' => 'colpos = {field:colPos}', 'where.' => array('insertData' => '1'), 'languageField' => 'sys_language_uid', 'orderBy' => 'sorting'), 'renderObj' => '< tt_content'))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentContentObject), array('table' => 'tt_content', 'select.' => array('pidInList.' => array('field' => 'uid'), 'where' => 'colpos = {field:colPos}', 'where.' => array('insertData' => '1'), 'languageField' => 'sys_language_uid', 'orderBy' => 'sorting'), 'renderObj' => '< tt_content'))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('pidInList.' => array('field' => 'uid'), 'where' => 'colpos = {field:colPos}', 'where.' => array('insertData' => '1'), 'languageField' => 'sys_language_uid', 'orderBy' => 'sorting'), 'renderObj' => '< tt_content'), 'lib.vhsContentFallbackSupport')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 193
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(Q3i\Q3iBase\Core\Frontend\ContentObjectRenderer), array('solr_extbase_bootstrap' => 'USER', 'solr_extbase_bootstrap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'ApacheSolrForTypo3', 'extensionName' => 'Solr', 'view.' => array('pluginNamespace' => 'tx_solr', 'templateRootPaths.' => array('EXT:solr/Resources/Private/Templates/', 'typo3conf/templates/_shared/ext/solr/Templates/'), 'partialRootPaths.' => array('EXT:solr/Resources/Private/Partials/', 'typo3conf/templates/_shared/ext/solr/Partials/'), 'layoutRootPaths.' => array('EXT:solr/Resources/Private/Layouts/', 'typo3conf/templates/_shared/ext/solr/Layouts/'), 'templateFiles.' => array()), 'settings' => '< plugin.tx_solr.settings', 'persistence' => '< plugin.tx_solr.persistence', 'view' => '< plugin.tx_solr.view'), 'tx_q3ianalytics_widgets' => 'COA', 'tx_q3ianalytics_widgets.' => array('TEXT', '5.' => array('value' => '<!-- BEGIN: analytics tracker integration by EXT:q3i_analytics -->'), 'USER', '10.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderGa')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000'))), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderPiwik')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000'))), 'USER', '30.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderEtracker')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000'))), 'USER', '40.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderGtagManager')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000'))), 'USER', '50.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderFacebookPixel')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000'))), 'TEXT', '100.' => array('value' => '<!-- END: analytics tracker integration by EXT:q3i_analytics -->')), 'socialgdpr' => 'FLUIDTEMPLATE', 'socialgdpr.' => array('layoutRootPaths.' => array('EXT:social_gdpr/Resources/Private/Layouts/', ''), 'partialRootPaths.' => array('EXT:social_gdpr/Resources/Private/Partials/', ''), 'templateRootPaths.' => array('EXT:social_gdpr/Resources/Private/Templates/', ''), 'templateName' => 'TEXT', 'templateName.' => array('field' => 'templateName'), 'settings.' => array('privacyPid' => '0')), 'contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:fluidfoundationtheme/Resources/Private/Templates/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:fluidfoundationtheme/Resources/Private/Partials/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:fluidfoundationtheme/Resources/Private/Layouts/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')))), 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'parseFunc_RTE.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array('fixAttrib.' => array('class.' => array('default' => 'contenttable', 'always' => '1', 'list' => 'contenttable')))), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => '', 'innerStdWrap_all.' => array('ifBlank' => '')))))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'tx_form.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'tx_news.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'shariff' => 'USER', 'shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'yoastSEO.' => array('robotInstructions' => 'COA', 'robotInstructions.' => array('TEXT', '10.' => array('value' => 'noindex', 'if.' => array('equals.' => array('field' => 'no_index'), 'value' => '1')), 'TEXT', '11.' => array('value' => 'index', 'if.' => array('equals.' => array('field' => 'no_index'), 'value' => '0'), 'override' => 'noindex', 'override.' => array('if.' => array('isFalse' => '1'))), 'TEXT', '20.' => array('value' => ','), 'TEXT', '30.' => array('value' => 'nofollow', 'if.' => array('equals.' => array('field' => 'no_follow'), 'value' => '1')), 'TEXT', '31.' => array('value' => 'follow', 'if.' => array('equals.' => array('field' => 'no_follow'), 'value' => '0'), 'override' => 'nofollow', 'override.' => array('if.' => array('isFalse' => '1')))), 'currentURL' => 'TEXT', 'currentURL.' => array('stdWrap.' => array('typolink.' => array('parameter' => '#', 'returnLast' => 'url', 'forceAbsoluteUrl' => '1', 'addQueryString' => '1', 'addQueryString.' => array('exclude' => 'type,no_cache'), 'useCacheHash' => '1')), 'htmlSpecialChars' => '1'), 'pageTitleComplete' => 'COA', 'pageTitleComplete.' => array('TEXT', '10.' => array('value' => '', 'stdWrap.' => array('noTrimWrap' => '|| |')), '< lib.yoastSEO.pageTitle', 'TEXT', '30.' => array('value' => '', 'stdWrap.' => array('noTrimWrap' => '| ||')), 'stdWrap.' => array('trim' => '1')), 'pageTitlePrepend' => 'COA', 'pageTitlePrepend.' => array('TEXT', '10.' => array('value' => '', 'stdWrap.' => array('noTrimWrap' => '|| |'))), 'pageTitleAppend' => 'COA', 'pageTitleAppend.' => array('TEXT', '10.' => array('value' => '', 'stdWrap.' => array('noTrimWrap' => '| ||'))), 'locale' => 'TEXT', 'locale.' => array('data' => 'TSFE:config|config|locale_all', 'htmlSpecialChars' => '1'), 'slug' => 'TEXT', 'slug.' => array('stdWrap.' => array('typolink.' => array('parameter' => '#', 'returnLast' => 'url', 'forceAbsoluteUrl' => '0', 'addQueryString' => '1', 'addQueryString.' => array('exclude' => 'type,no_cache'), 'useCacheHash' => '1')), 'htmlSpecialChars' => '1'), 'twitter.' => array('site' => 'TEXT', 'site.' => array('value' => ''), 'card' => 'TEXT', 'card.' => array('value' => 'summary'), 'title' => '< lib.yoastSEO.pageTitle', 'title.' => array('field' => 'twitter_title // seo_title // title'), 'description' => 'TEXT', 'description.' => array('field' => 'twitter_description // description'), 'images' => 'FILES', 'images.' => array('references.' => array('table' => 'pages', 'uid.' => array('data' => 'page:uid'), 'fieldName' => 'twitter_image'), 'maxItems' => '1', 'renderObj' => 'TEXT', 'renderObj.' => array('typolink.' => array('parameter.' => array('stdWrap.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'file:current:uid'), 'treatIdAsReference' => '1', 'cropVariant' => 'social', 'maxW' => '1200', 'maxH' => '628')))), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1')))), 'pageTitle' => 'RECORDS', 'pageTitle.' => array('tables' => 'tx_news_domain_model_news', 'dontCheckPid' => '1', 'source' => '{GP:tx_news_pi1|news},{GP:tx_news_pi1|news_preview}', 'source.' => array('insertData' => '1'), 'conf.' => array('tx_news_domain_model_news' => 'TEXT', 'tx_news_domain_model_news.' => array('field' => 'alternative_title', 'ifEmpty.' => array('field' => 'title')))), 'description' => 'RECORDS', 'description.' => array('tables' => 'tx_news_domain_model_news', 'source' => '{GP:tx_news_pi1|news},{GP:tx_news_pi1|news_preview}', 'source.' => array('insertData' => '1'), 'conf.' => array('tx_news_domain_model_news' => 'TEXT', 'tx_news_domain_model_news.' => array('field' => 'description'))), 'author' => 'RECORDS', 'author.' => array('tables' => 'tx_news_domain_model_news', 'source' => '{GP:tx_news_pi1|news},{GP:tx_news_pi1|news_preview}', 'source.' => array('insertData' => '1'), 'conf.' => array('tx_news_domain_model_news' => 'TEXT', 'tx_news_domain_model_news.' => array('field' => 'author', 'wrap' => '|', 'wrap.' => array('override' => '|VDE VERLAG GMBH', 'override.' => array('if.' => array('isFalse.' => array('field' => 'author')))))))), 'newsBreadcrumb' => 'RECORDS', 'newsBreadcrumb.' => array('if.' => array('isTrue.' => array('data' => 'GP:tx_news_pi1|news')), 'dontCheckPid' => '1', 'tables' => 'tx_news_domain_model_news', 'source.' => array('data' => 'GP:tx_news_pi1|news', 'intval' => '1'), 'conf.' => array('tx_news_domain_model_news' => 'TEXT', 'tx_news_domain_model_news.' => array('field' => 'title', 'htmlSpecialChars' => '1')), 'wrap' => '<li class="menu--top-subjects__item-wrap"><span class="menu--top-subjects__no-link">|</span></li>', 'wrap.' => array('if.' => array('isTrue.' => array('data' => 'GP:tx_news_pi1|news')))), 'categoryPath' => 'USER', 'categoryPath.' => array('userFunc' => 'Q3i\\T3Local\\UserFunc\\ContentTitle->newsCategoryPath'), 'solrBreadcrumb' => 'HMENU', 'solrBreadcrumb.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'TMENU', '1.' => array('noBlur' => '1', 'CUR' => '1', 'target' => '_self', 'NO.' => array('stdWrap.' => array('field' => 'nav_title // title'), 'linkWrap' => '||*|&nbsp;&#124;&nbsp;|*|', 'doNotLinkIt' => '1'), 'CUR.' => array('stdWrap.' => array('field' => 'nav_title // title'), 'linkWrap' => '||*|&nbsp;&#124;&nbsp;|*|', 'doNotLinkIt' => '1'))), 'breadcrumb' => 'COA', 'breadcrumb.' => array('HMENU', '10.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'TMENU', '1.' => array('noBlur' => '1', 'CUR' => '1', 'target' => '_self', 'wrap' => '<ul class="breadcrumb-class"> | </ul>', 'NO.' => array('stdWrap.' => array('field' => 'title'), 'ATagTitle.' => array('field' => 'nav_title // title'), 'linkWrap' => '|'), 'CUR.' => array('stdWrap.' => array('field' => 'title'), 'linkWrap' => '|', 'doNotLinkIt' => '1')))), 'copyright' => 'COA', 'copyright.' => array('TEXT', '40.' => array('data' => 'date:U', 'strftime' => '%Y', 'noTrimWrap' => '|<p class="small-pb0">&copy; | |'), 'TEXT', '41.' => array('value' => 'smart-production.de', 'wrap' => '|</p>')), 'userinfo' => 'COA_INT', 'userinfo.' => array('COA', '20.' => array('TEXT', '1.' => array('data' => 'TSFE:fe_user|user|first_name', 'required' => '1'), 'TEXT', '2.' => array('data' => 'TSFE:fe_user|user|last_name', 'wrap' => '&nbsp;|', 'required' => '1'), 'stdWrap.' => array('ifEmpty.' => array('data' => 'TSFE:fe_user|user|name'), 'wrap' => '|', 'required' => '1'))), 'username' => 'COA_INT', 'username.' => array('TEXT', '10.' => array('data' => 'TSFE:fe_user|user|name')), 'felogin' => 'COA_INT', 'felogin.' => array('FLUIDTEMPLATE', '20.' => array('layoutRootPaths.' => array('EXT:q3i_base/Resources/Private/Layouts/FeLogin/', 'typo3conf/templates/main/lib/FeLogin/Layouts/'), 'partialRootPaths.' => array('EXT:q3i_base/Resources/Private/Partials/FeLogin/', 'typo3conf/templates/main/lib/FeLogin/Partials/'), 'templateRootPaths.' => array('EXT:q3i_base/Resources/Private/Templates/FeLogin/', 'typo3conf/templates/main/lib/FeLogin/Templates/'), 'templateName' => 'LoginForm', 'settings.' => array('pidLogin' => '19', 'pidRegister' => '20', 'pidForgot' => '19', 'pidFeuserStorage' => '16')), 'TEXT', '40.' => array('wrap' => '<div class="login-block">|</div>', 'value' => 'Logout', 'typolink.' => array('parameter' => '19 _self', 'additionalParams' => '&logintype=logout', 'ATagParams' => 'class="btn btn__with-icon btn__icon-logout"'), 'if.' => array('isFalse.' => array('data' => 'TSFE:fe_user|user|username'), 'negate' => '1'))), 'userheader' => 'COA_INT', 'userheader.' => array('COA', '20.' => array('TEXT', '1.' => array('data' => 'TSFE:fe_user|user|first_name', 'required' => '1'), 'TEXT', '2.' => array('data' => 'TSFE:fe_user|user|last_name', 'wrap' => '&nbsp;|', 'required' => '1'), 'stdWrap.' => array('ifEmpty.' => array('data' => 'TSFE:fe_user|user|name'), 'wrap' => '|', 'required' => '1'))), 'footer' => 'CONTENT', 'footer.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '44', 'where' => 'colpos = 0', 'where.' => array('insertData' => '1'), 'languageField' => 'sys_language_uid'), 'renderObj' => '< tt_content'), 'footerLeft' => 'COA', 'footerLeft.' => array('TEXT', '41.' => array('value' => '&copy; VDE VERLAG GmbH', 'wrap' => '|', 'typolink.' => array('parameter' => 'https://www.vde-verlag.de _blank'))), 'footerRight' => 'COA', 'footerRight.' => array('HMENU', '40.' => array('special' => 'directory', 'special.' => array('value' => '87'), 'TMENU', '1.' => array('expAll' => '1', 'wrap' => '<nav><ul class="menu--bottommost">|</ul></nav>', 'NO.' => array('wrapItemAndSub' => '<li class="menu--bottommost__item-wrap">|</li>', 'ATagParams' => 'class="menu--bottommost__link"')))), 'languageMenu' => '< plugin.tx_srlanguagemenu.widgets.menu', 'logo' => 'COA', 'logo.' => array('CASE', '10.' => array('file' => 'typo3conf/templates/main/assets/img/q3i-logo.svg', 'altText.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('data' => 'levelfield:0,tx_tqseo_pagetitle_prefix'), 'TEXT', '20.' => array('data' => 'levelfield:0,title', 'noTrimWrap' => '| |'))), 'params' => 'class="logo"', 'stdWrap.' => array('innerWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '<img class="logo" src="|" alt="'), 'CASE', '20.' => array('key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'smart-production.de'), 'TEXT', '25.' => array('value' => 'smart-production.de'), 'TEXT', '4.' => array('value' => 'ew'), 'TEXT', '7.' => array('value' => 'open-automation'), 'TEXT', '8.' => array('value' => 'et')), 'TEXT', '21.' => array('value' => '"', 'noTrimWrap' => '|| |'), 'CASE', '25.' => array('key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'width="450" height="73"'), 'TEXT', '25.' => array('value' => 'width="450" height="73"'), 'TEXT', '4.' => array('value' => 'width="286" height="61"'), 'TEXT', '7.' => array('value' => 'width="341" height="61"'), 'TEXT', '8.' => array('value' => 'width="374" height="60"')), 'TEXT', '30.' => array('value' => '>')))), 'wrap' => '|', 'key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/smart-production.svg'), 'TEXT', '25.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/smart-production.svg'), 'TEXT', '4.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/etz.svg'), 'TEXT', '7.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/open-automation_25.svg'), 'TEXT', '8.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/digital-factory-journal.svg')), 'stdWrap.' => array('outerWrap' => '<div class="header__logo-area align-center-middle row collapse">|</div>', 'typolink.' => array('parameter.' => array('data' => 'leveluid:1'), 'title.' => array('data' => 'levelfield:1,nav_title // levelfield:1,title'), 'ATagParams' => 'class="main-branding small-6 columns"')), 'CASE', '20.' => array('key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'Das Portal für Smart Production Solutions'), 'TEXT', '25.' => array('value' => 'Das Portal für Smart Production Solutions'), 'TEXT', '4.' => array('value' => 'elektrotechnik & automation'), 'TEXT', '7.' => array('value' => 'Das Fachmagazin für das Management'), 'TEXT', '8.' => array('value' => 'Das Magazin für Industrie 4.0 & IoT'), 'stdWrap.' => array('wrap' => '<span class="slogan">|</span>'))), 'menuSub' => 'COA', 'menuSub.' => array('HMENU', '10.' => array('wrap' => '<ul class="left_sidebar_menu">|</ul>', 'entryLevel' => '1', 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'ACT.' => array('wrapItemAndSub' => '<li class="active">|</li>'), 'ACT' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="submenu">|</li>'), 'IFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="active submenu">|</li>'), 'ACTIFSUB' => '1'), 'TMENU', '2.' => array('NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'ACT.' => array('wrapItemAndSub' => '<li class="active">|</li>'), 'ACT' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="submenu">|</li>'), 'IFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="active submenu">|</li>'), 'ACTIFSUB' => '1', 'wrap' => '<ul>|</ul>'))), 'mobileMenu' => 'HMENU', 'mobileMenu.' => array('TMENU', '1.' => array('expAll' => '1', 'wrap' => '<ul class="vertical menu accordion-menu" data-accordion-menu data-submenu-toggle="true">|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'IFSUB.' => array('wrapItemAndSub' => '<li class="has-dropdown">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'IFSUB' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="active">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item active">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu" data-magellan data-offset="-20" data-threshold="100" data-animation-easing="swing">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'ACT' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="active has-dropdown">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'ACTIFSUB' => '1'), 'TMENU', '2.' => array('expAll' => '1', 'wrap' => '<ul class="menu vertical nested"> | </ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'IFSUB.' => array('wrapItemAndSub' => '<li class="has-dropdown">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'IFSUB' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="active">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item active">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu" data-magellan data-offset="-20" data-threshold="100" data-animation-easing="swing">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'ACT' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="active has-dropdown">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'ACTIFSUB' => '1'), 'TMENU', '3.' => array('expAll' => '1', 'wrap' => 'wrap = <ul class="menu vertical nested"> | </ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'IFSUB.' => array('wrapItemAndSub' => '<li class="has-dropdown">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'IFSUB' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="active">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item active">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu" data-magellan data-offset="-20" data-threshold="100" data-animation-easing="swing">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'ACT' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="active has-dropdown">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'ACTIFSUB' => '1')), 'pageImage' => 'FILES', 'pageImage.' => array('references.' => array('table' => 'pages', 'uid.' => array('data' => 'page:uid'), 'fieldName' => 'media'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl', 'wrap' => '|')), 'pageSubheader' => 'TEXT', 'pageSubheader.' => array('data' => 'levelfield: -1, subtitle, slide', 'wrap' => '<h1>|</h1>'), 'vhsContentFallbackSupport' => 'CONTENT', 'vhsContentFallbackSupport.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('field' => 'uid'), 'where' => 'colpos = {field:colPos}', 'where.' => array('insertData' => '1'), 'languageField' => 'sys_language_uid', 'orderBy' => 'sorting'), 'renderObj' => '< tt_content'), 'brandMenu' => 'HMENU', 'brandMenu.' => array('special' => 'list', 'special.' => array('value' => '25,4,7,8'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="menu--brands__item-wrap menu--brands__item-wrap--home menu--brands__item-wrap--as-icon">|</li>|*|<li class="menu--brands__item-wrap ">|</li>|*|<li class="menu--brands__item-wrap ">|</li>', 'ATagParams' => 'class="menu--brands__link"', 'ATagParams.' => array('override' => 'class="menu--brands__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype')))), 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'uid'), 'TEXT', '1.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="smart-production"/>'), 'TEXT', '25.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="smart-production"/>'), 'TEXT', '4.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab.svg" alt="Ew" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab_active.svg" alt="Ew"/>'), 'TEXT', '7.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab.svg" alt="open-automation" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab_active.svg" alt="open-automation"/>'), 'TEXT', '8.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab.svg" alt="et" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab_active.svg" alt="et"/>')))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--brands__item-wrap menu--brands__item-wrap--home active menu--brands__item-wrap--as-icon">|</li>|*|<li class="menu--brands__item-wrap active ">|</li>|*|<li class="menu--brands__item-wrap active">|</li>', 'ATagParams' => 'class="menu--brands__link"', 'ATagParams.' => array('override' => 'class="menu--brands__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype')))), 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'uid'), 'TEXT', '1.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="smart-production"/>'), 'TEXT', '25.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="smart-production"/>'), 'TEXT', '4.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab.svg" alt="Ew" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab_active.svg" alt="Ew"/>'), 'TEXT', '7.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab.svg" alt="open-automation" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab_active.svg" alt="open-automation"/>'), 'TEXT', '8.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab.svg" alt="et" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab_active.svg" alt="et"/>')))), 'ACT' => '1'), 'stdWrap.' => array('outerWrap' => '<ul id="menu--brands--topmost" class="menu--brands" data-toggler=".expanded" aria-expanded="true">|</ul>')), 'brandMenuHome' => 'HMENU', 'brandMenuHome.' => array('special' => 'list', 'special.' => array('value' => '1,4,7,8'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="menu--brands__item-wrap">|</li>', 'ATagParams' => 'class="menu--brands__link"', 'ATagParams.' => array('override' => 'class="menu--brands__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype')))), 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'uid'), 'TEXT', '1.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="energie"/>'), 'TEXT', '25.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="energie"/>'), 'TEXT', '4.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab.svg" alt="Ew" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab_active.svg" alt="Ew"/>'), 'TEXT', '7.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab.svg" alt="open-automation" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab_active.svg" alt="open-automation"/>'), 'TEXT', '8.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab.svg" alt="et" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab_active.svg" alt="et"/>')))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--brands__item-wrap menu--brands__item-wrap--home active menu--brands__item-wrap--as-icon">|</li>|*|<li class="menu--brands__item-wrap active ">|</li>|*|<li class="menu--brands__item-wrap active">|</li>', 'ATagParams' => 'class="menu--brands__link"', 'ATagParams.' => array('override' => 'class="menu--brands__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype')))), 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'uid'), 'TEXT', '1.' => array('value' => '<span class="icon-home" aria-hidden="true"></span>'), 'TEXT', '25.' => array('value' => '<span class="icon-home" aria-hidden="true"></span>'), 'TEXT', '4.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab.svg" alt="Ew" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab_active.svg" alt="Ew"/>'), 'TEXT', '7.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab.svg" alt="open-automation" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab_active.svg" alt="open-automation"/>'), 'TEXT', '8.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab.svg" alt="et" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab_active.svg" alt="et"/>')))), 'ACT' => '1'), 'stdWrap.' => array('outerWrap' => '<ul id="menu--brands--topmost" class="menu--brands" data-toggler=".expanded" aria-expanded="true">|</ul>')), 'brandMenuFooter' => 'HMENU', 'brandMenuFooter.' => array('special' => 'list', 'special.' => array('value' => '25,4,7,8'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="menu--brands__item-wrap">|</li>', 'ATagParams' => 'class="menu--brands__link"', 'ATagParams.' => array('override' => 'class="menu--brands__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype')))), 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'uid'), 'TEXT', '1.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="energie"/>'), 'TEXT', '25.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="energie"/>'), 'TEXT', '4.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab.svg" alt="Ew" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab_active.svg" alt="Ew"/>'), 'TEXT', '7.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab.svg" alt="open-automation" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab_active.svg" alt="open-automation"/>'), 'TEXT', '8.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab.svg" alt="et" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab_active.svg" alt="et"/>')))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--brands__item-wrap">|</li>', 'ATagParams' => 'class="menu--brands__link"', 'ATagParams.' => array('override' => 'class="menu--brands__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype')))), 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'uid'), 'TEXT', '1.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="energie"/>'), 'TEXT', '25.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="energie"/>'), 'TEXT', '4.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab.svg" alt="Ew" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab_active.svg" alt="Ew"/>'), 'TEXT', '7.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab.svg" alt="open-automation" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab_active.svg" alt="open-automation"/>'), 'TEXT', '8.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab.svg" alt="et" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab_active.svg" alt="et"/>')))), 'ACT' => '1'), 'stdWrap.' => array('outerWrap' => '<ul id="menu--brands--bottommost" class="menu--brands menu--brands--dark-active menu--brands--footer" data-toggler=".expanded" aria-expanded="true">|</ul>')), 'logoHome' => 'COA', 'logoHome.' => array('CASE', '10.' => array('file' => 'typo3conf/templates/main/assets/img/q3i-logo.svg', 'altText.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('data' => 'levelfield:0,tx_tqseo_pagetitle_prefix'), 'TEXT', '20.' => array('data' => 'levelfield:0,title', 'noTrimWrap' => '| |'))), 'params' => 'class="logo"', 'stdWrap.' => array('innerWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '<img class="logo" src="|" alt="'), 'CASE', '20.' => array('key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'smart-production.de'), 'TEXT', '25.' => array('value' => 'smart-production.de'), 'TEXT', '4.' => array('value' => 'ew'), 'TEXT', '7.' => array('value' => 'open-automation'), 'TEXT', '8.' => array('value' => 'et')), 'TEXT', '21.' => array('value' => '"', 'noTrimWrap' => '|| |'), 'CASE', '25.' => array('key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'width="450" height="73"'), 'TEXT', '25.' => array('value' => 'width="450" height="73"'), 'TEXT', '4.' => array('value' => 'width="286" height="61"'), 'TEXT', '7.' => array('value' => 'width="341" height="61"'), 'TEXT', '8.' => array('value' => 'width="374" height="60"')), 'TEXT', '30.' => array('value' => '>')))), 'wrap' => '|', 'key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/smart-production.svg'), 'TEXT', '25.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/smart-production.svg'), 'TEXT', '4.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/etz.svg'), 'TEXT', '7.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/open-automation_25.svg'), 'TEXT', '8.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/digital-factory-journal.svg')), 'stdWrap.' => array('outerWrap' => '<div class="header__logo-area align-center-middle row collapse">|</div>', 'typolink.' => array('parameter.' => array('data' => 'leveluid:0'), 'title.' => array('data' => 'levelfield:1,nav_title // levelfield:1,title'), 'ATagParams' => 'class="main-branding small-6 columns"')), 'CASE', '20.' => array('key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'Das Portal für Smart Production Solutions'), 'TEXT', '25.' => array('value' => 'Das Portal für Smart Production Solutions'), 'TEXT', '4.' => array('value' => 'elektrotechnik & automation'), 'TEXT', '7.' => array('value' => 'Das Fachmagazin für das Management'), 'TEXT', '8.' => array('value' => 'Das Magazin für Industrie 4.0 & IoT'), 'stdWrap.' => array('wrap' => '<span class="slogan">|</span>'))), 'mainMenu' => 'HMENU', 'mainMenu.' => array('entryLevel' => '1', 'TMENU', '1.' => array('expAll' => '1', 'includeNotInMenu' => '1', 'wrap' => '<nav id="menu--main" class="menu--main menu--base show-for-large" data-toggler="show-for-large"><ul class="menu--main__list menu--base__list menu vertical large-horizontal" data-responsive-menu="accordion large-dropdown">|</ul></nav>', 'NO.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__item-wrap">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__item-wrap active">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT' => '1'), 'TMENU', '2.' => array('expAll' => '1', 'includeNotInMenu' => '1', 'wrap' => '<ul class="menu--base__submenu menu--main__submenu menu vertical"> | </ul>', 'NO.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item active">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT' => '1'), 'TMENU', '3.' => array('expAll' => '1', 'includeNotInMenu' => '1', 'wrap' => '<ul class="menu--base__submenu menu--main__submenu menu vertical"> | </ul>', 'NO.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item active">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT' => '1')), 'mainMenuHome' => 'HMENU', 'mainMenuHome.' => array('entryLevel' => '0', 'TMENU', '1.' => array('expAll' => '1', 'includeNotInMenu' => '1', 'wrap' => '<nav id="menu--main" class="menu--main menu--base show-for-large" data-toggler="show-for-large"><ul class="menu--main__list menu--base__list menu vertical large-horizontal" data-responsive-menu="accordion large-dropdown">|</ul></nav>', 'NO.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__item-wrap">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__item-wrap active">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT' => '1'), 'TMENU', '2.' => array('expAll' => '1', 'includeNotInMenu' => '1', 'wrap' => '<ul class="menu--base__submenu menu--main__submenu menu vertical"> | </ul>', 'NO.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item active">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT' => '1'), 'TMENU', '3.' => array('expAll' => '1', 'includeNotInMenu' => '1', 'wrap' => '<ul class="menu--base__submenu menu--main__submenu menu vertical"> | </ul>', 'NO.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item active">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT' => '1'), 'excludeUidList' => '25,4,7,8'), 'searchbox_plugin' => 'USER', 'searchbox_plugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'ApacheSolrForTypo3', 'extensionName' => 'Solr', 'pluginName' => 'pi_search', 'switchableControllerActions.' => array('Search.' => array('form')), 'settings.' => array('headerForm' => '1', 'SolrPluginPagePID' => '18'), 'view.' => array('pluginNamespace' => 'tx_solr', 'templateRootPaths.' => array('EXT:solr/Resources/Private/Templates/', 'typo3conf/templates/_shared/ext/solr/Templates/'), 'partialRootPaths.' => array('EXT:solr/Resources/Private/Partials/', 'typo3conf/templates/_shared/ext/solr/Partials/'), 'layoutRootPaths.' => array('EXT:solr/Resources/Private/Layouts/', 'typo3conf/templates/_shared/ext/solr/Layouts/'), 'templateFiles.' => array())), 'vhsContentFallbackSupport_slide' => 'CONTENT', 'vhsContentFallbackSupport_slide.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('field' => 'uid'), 'where' => 'colpos = {field:colPos}', 'where.' => array('insertData' => '1'), 'languageField' => 'sys_language_uid', 'orderBy' => 'sorting'), 'renderObj' => '< tt_content', 'slide' => '-1'), 'vhsContentFallbackSupport_slideOnlyOneLevelUp' => 'CONTENT', 'vhsContentFallbackSupport_slideOnlyOneLevelUp.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('field' => 'uid'), 'where' => 'colpos = {field:colPos}', 'where.' => array('insertData' => '1'), 'languageField' => 'sys_language_uid', 'orderBy' => 'sorting'), 'renderObj' => '< tt_content', 'slide' => '2'), 'visitor-analytics.' => array('part-footer' => 'COA', 'part-footer.' => array('TEXT', '10.' => array('value' => '<!-- visitor-analytics disabled -->')))), 'lib.vhsContentFallbackSupport', 'vhsContentFallbackSupport')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 170
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('uid' => null, 'colPos' => 3), 'typoscriptObjectPath' => 'lib.vhsContentFallbackSupport', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09.php line 276
);$array27['uid'] = $renderingContext->getVariableProvider()->getByPath('group.uid', $array28);
$array27['colPos'] = 3;
$arguments25['data'] = $array27;
$renderChildrenClosure26 = ($arguments25['data'] !== null) ? function() use ($arguments25) { return $arguments25['data']; } : $renderChildrenClosure26;
$output24 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments25, $renderChildrenClosure26, $renderingContext);

$output24 .= '
     <!--TYPO3SEARCH_end-->
    ';
at partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09->{closure}()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure)), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09.php line 326
     $renderingContext
    );
$arguments16['__thenClosure'] = $renderChildrenClosure17;

$output15 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments16, $renderChildrenClosure17, $renderingContext);

$output15 .= '

   ';
at partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09->{closure}()
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09.php line 332
$output15 .= '

   ';
return $output15;
});
}
}, array($arguments1));

$output0 .= '
at partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09->{closure}(array('expression' => 1))
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09.php line 334
   ';
return $output15;
});
}
}, array($arguments1));

$output0 .= '

 ';
at partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09->section_d780f267dd4b32c3106de2c2ed47bf20b6d58d99(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('PageHeader', array('record' => array('uid' => 84, 'pid' => 4, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 25, 'tstamp' => 1629203278, 'sorting' => 504, 'deleted' => 0, 'perms_userid' => 5, 'perms_groupid' => 3, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1542797703, 'cruser_id' => 5, 'hidden' => 0, 'title' => 'News-Detailansicht', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 1551456660, 'keywords' => null, 'cache_timeout' => 0, 'newUntil' => 0, 'description' => 'Hier finden Sie spannende und aktuelle Nachrichten aus den Bereichen Elektrotechnik und Automation. Immer aktuell für Sie zusammengestellt!', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711637904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 1, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'cache_tags' => '', 'categories' => 0, 'tsconfig_includes' => '', 'tx_fluidpages_templatefile' => '', 'tx_fluidpages_layout' => '', 'tx_fed_page_flexform' => null, 'tx_fed_page_flexform_sub' => null, 'tx_fed_page_controller_action' => '', 'tx_fed_page_controller_action_sub' => '', 'tx_realurl_pathsegment' => '', 'tx_realurl_pathoverride' => 0, 'tx_realurl_exclude' => 0, 'seo_title' => 'Unsere News-Detailansicht auf smart-production.de', 'canonical_url' => '', 'tx_yoastseo_robot_instructions' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'tx_yoastseo_dont_use' => 0, 'tx_yoastseo_hide_snippet_preview' => 0, 'no_index' => 0, 'no_follow' => 0, 'tx_yoastseo_focuskeyword' => '', 'last_mod' => 1566578936, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_snippetpreview' => 0, 'tx_yoastseo_focuskeyword_analysis' => 0, 'tx_yoastseo_readability_analysis' => 0, 'tx_q3isolr_solrtest' => 0, 'tx_q3isolr_solrroot' => 0, 'canonical_link' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_focuskeyword_premium' => 0, 'rowDescription' => null, 'sys_language_uid' => 0, 'l10n_source' => 0, 'l10n_state' => null, 'l10n_diffsource' => 'a:55:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:9:"seo_title";N;s:23:"tx_yoastseo_cornerstone";N;s:11:"description";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:18:"sitemap_changefreq";N;s:16:"sitemap_priority";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:12:"twitter_card";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:29:"tx_fed_page_controller_action";N;s:33:"tx_fed_page_controller_action_sub";N;}', 'slug' => '/etz/news-detailansicht', 'legacy_overlay_uid' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'l10n_parent' => 0, 'hide_banner' => 0), 'page' => array('uid' => 84, 'pid' => 4, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 25, 'tstamp' => 1629203278, 'sorting' => 504, 'deleted' => 0, 'perms_userid' => 5, 'perms_groupid' => 3, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1542797703, 'cruser_id' => 5, 'hidden' => 0, 'title' => 'News-Detailansicht', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 1551456660, 'keywords' => null, 'cache_timeout' => 0, 'newUntil' => 0, 'description' => 'Hier finden Sie spannende und aktuelle Nachrichten aus den Bereichen Elektrotechnik und Automation. Immer aktuell für Sie zusammengestellt!', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711637904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 1, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'cache_tags' => '', 'categories' => 0, 'tsconfig_includes' => '', 'tx_fluidpages_templatefile' => '', 'tx_fluidpages_layout' => '', 'tx_fed_page_flexform' => null, 'tx_fed_page_flexform_sub' => null, 'tx_fed_page_controller_action' => '', 'tx_fed_page_controller_action_sub' => '', 'tx_realurl_pathsegment' => '', 'tx_realurl_pathoverride' => 0, 'tx_realurl_exclude' => 0, 'seo_title' => 'Unsere News-Detailansicht auf smart-production.de', 'canonical_url' => '', 'tx_yoastseo_robot_instructions' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'tx_yoastseo_dont_use' => 0, 'tx_yoastseo_hide_snippet_preview' => 0, 'no_index' => 0, 'no_follow' => 0, 'tx_yoastseo_focuskeyword' => '', 'last_mod' => 1566578936, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_snippetpreview' => 0, 'tx_yoastseo_focuskeyword_analysis' => 0, 'tx_yoastseo_readability_analysis' => 0, 'tx_q3isolr_solrtest' => 0, 'tx_q3isolr_solrroot' => 0, 'canonical_link' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_focuskeyword_premium' => 0, 'rowDescription' => null, 'sys_language_uid' => 0, 'l10n_source' => 0, 'l10n_state' => null, 'l10n_diffsource' => 'a:55:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:9:"seo_title";N;s:23:"tx_yoastseo_cornerstone";N;s:11:"description";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:18:"sitemap_changefreq";N;s:16:"sitemap_priority";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:12:"twitter_card";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:29:"tx_fed_page_controller_action";N;s:33:"tx_fed_page_controller_action_sub";N;}', 'slug' => '/etz/news-detailansicht', 'legacy_overlay_uid' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'l10n_parent' => 0, 'hide_banner' => 0), 'user' => array(), 'grid' => object(FluidTYPO3\Flux\Form\Container\Grid), 'form' => object(FluidTYPO3\Flux\Form), 'settings' => array('showAdvertisement' => '{$site.showAdvertisement}', 'gridColumns' => '12', 'colwrap' => 'first, second, third', 'menu' => array('main' => array('entryLevel' => '0'), 'sub' => array('entryLevel' => '1')), 'path' => array('template' => '{$site.path.template}/', 'assets' => '{$site.path.template}/assets/', 'images' => '{$site.path.template}/assets/images/'), 'container' => array('types' => array('default' => 'div', 'Example' => 'div')), 'Content' => array('Isotope' => array('thumbnailMaxWidth' => '640')), 'useTypoScript' => '1', 'entryLevel' => '0', 'enableSearch' => '1', 'enableLanguageMenu' => '1', 'searchFieldName' => 'q', 'searchPageUid' => '', 'addWell' => '0', 'wellSmall' => '0', 'position' => 'left', 'distribution' => '4', 'PID' => array('termine' => '99', 'job' => '98', 'marktplatz' => '100', 'service' => '101', 'industry' => '457'), 'branch' => 'etz'), 'provider' => object(FluidTYPO3\Fluidpages\Provider\PageProvider)), false)
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 327
        }
        $renderingContext->setVariableProvider($renderingContext->getVariableProvider()->getScopeCopy($variables));
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial('PageHeader', 'PageHeader', array('record' => array('uid' => 84, 'pid' => 4, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 25, 'tstamp' => 1629203278, 'sorting' => 504, 'deleted' => 0, 'perms_userid' => 5, 'perms_groupid' => 3, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1542797703, 'cruser_id' => 5, 'hidden' => 0, 'title' => 'News-Detailansicht', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 1551456660, 'keywords' => null, 'cache_timeout' => 0, 'newUntil' => 0, 'description' => 'Hier finden Sie spannende und aktuelle Nachrichten aus den Bereichen Elektrotechnik und Automation. Immer aktuell für Sie zusammengestellt!', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711637904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 1, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'cache_tags' => '', 'categories' => 0, 'tsconfig_includes' => '', 'tx_fluidpages_templatefile' => '', 'tx_fluidpages_layout' => '', 'tx_fed_page_flexform' => null, 'tx_fed_page_flexform_sub' => null, 'tx_fed_page_controller_action' => '', 'tx_fed_page_controller_action_sub' => '', 'tx_realurl_pathsegment' => '', 'tx_realurl_pathoverride' => 0, 'tx_realurl_exclude' => 0, 'seo_title' => 'Unsere News-Detailansicht auf smart-production.de', 'canonical_url' => '', 'tx_yoastseo_robot_instructions' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'tx_yoastseo_dont_use' => 0, 'tx_yoastseo_hide_snippet_preview' => 0, 'no_index' => 0, 'no_follow' => 0, 'tx_yoastseo_focuskeyword' => '', 'last_mod' => 1566578936, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_snippetpreview' => 0, 'tx_yoastseo_focuskeyword_analysis' => 0, 'tx_yoastseo_readability_analysis' => 0, 'tx_q3isolr_solrtest' => 0, 'tx_q3isolr_solrroot' => 0, 'canonical_link' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_focuskeyword_premium' => 0, 'rowDescription' => null, 'sys_language_uid' => 0, 'l10n_source' => 0, 'l10n_state' => null, 'l10n_diffsource' => 'a:55:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:9:"seo_title";N;s:23:"tx_yoastseo_cornerstone";N;s:11:"description";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:18:"sitemap_changefreq";N;s:16:"sitemap_priority";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:12:"twitter_card";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:29:"tx_fed_page_controller_action";N;s:33:"tx_fed_page_controller_action_sub";N;}', 'slug' => '/etz/news-detailansicht', 'legacy_overlay_uid' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'l10n_parent' => 0, 'hide_banner' => 0), 'page' => array('uid' => 84, 'pid' => 4, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 25, 'tstamp' => 1629203278, 'sorting' => 504, 'deleted' => 0, 'perms_userid' => 5, 'perms_groupid' => 3, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1542797703, 'cruser_id' => 5, 'hidden' => 0, 'title' => 'News-Detailansicht', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 1551456660, 'keywords' => null, 'cache_timeout' => 0, 'newUntil' => 0, 'description' => 'Hier finden Sie spannende und aktuelle Nachrichten aus den Bereichen Elektrotechnik und Automation. Immer aktuell für Sie zusammengestellt!', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711637904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 1, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'cache_tags' => '', 'categories' => 0, 'tsconfig_includes' => '', 'tx_fluidpages_templatefile' => '', 'tx_fluidpages_layout' => '', 'tx_fed_page_flexform' => null, 'tx_fed_page_flexform_sub' => null, 'tx_fed_page_controller_action' => '', 'tx_fed_page_controller_action_sub' => '', 'tx_realurl_pathsegment' => '', 'tx_realurl_pathoverride' => 0, 'tx_realurl_exclude' => 0, 'seo_title' => 'Unsere News-Detailansicht auf smart-production.de', 'canonical_url' => '', 'tx_yoastseo_robot_instructions' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'tx_yoastseo_dont_use' => 0, 'tx_yoastseo_hide_snippet_preview' => 0, 'no_index' => 0, 'no_follow' => 0, 'tx_yoastseo_focuskeyword' => '', 'last_mod' => 1566578936, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_snippetpreview' => 0, 'tx_yoastseo_focuskeyword_analysis' => 0, 'tx_yoastseo_readability_analysis' => 0, 'tx_q3isolr_solrtest' => 0, 'tx_q3isolr_solrroot' => 0, 'canonical_link' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_focuskeyword_premium' => 0, 'rowDescription' => null, 'sys_language_uid' => 0, 'l10n_source' => 0, 'l10n_state' => null, 'l10n_diffsource' => 'a:55:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:9:"seo_title";N;s:23:"tx_yoastseo_cornerstone";N;s:11:"description";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:18:"sitemap_changefreq";N;s:16:"sitemap_priority";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:12:"twitter_card";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:29:"tx_fed_page_controller_action";N;s:33:"tx_fed_page_controller_action_sub";N;}', 'slug' => '/etz/news-detailansicht', 'legacy_overlay_uid' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'l10n_parent' => 0, 'hide_banner' => 0), 'user' => array(), 'grid' => object(FluidTYPO3\Flux\Form\Container\Grid), 'form' => object(FluidTYPO3\Flux\Form), 'settings' => array('showAdvertisement' => '{$site.showAdvertisement}', 'gridColumns' => '12', 'colwrap' => 'first, second, third', 'menu' => array('main' => array('entryLevel' => '0'), 'sub' => array('entryLevel' => '1')), 'path' => array('template' => '{$site.path.template}/', 'assets' => '{$site.path.template}/assets/', 'images' => '{$site.path.template}/assets/images/'), 'container' => array('types' => array('default' => 'div', 'Example' => 'div')), 'Content' => array('Isotope' => array('thumbnailMaxWidth' => '640')), 'useTypoScript' => '1', 'entryLevel' => '0', 'enableSearch' => '1', 'enableLanguageMenu' => '1', 'searchFieldName' => 'q', 'searchPageUid' => '', 'addWell' => '0', 'wellSmall' => '0', 'position' => 'left', 'distribution' => '4', 'PID' => array('termine' => '99', 'job' => '98', 'marktplatz' => '100', 'service' => '101', 'industry' => '457'), 'branch' => 'etz'), 'provider' => object(FluidTYPO3\Fluidpages\Provider\PageProvider)), false)
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 141
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'PageHeader', 'partial' => 'PageHeader', 'delegate' => null, 'renderable' => null, 'arguments' => array('record' => array('uid' => 84, 'pid' => 4, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 25, 'tstamp' => 1629203278, 'sorting' => 504, 'deleted' => 0, 'perms_userid' => 5, 'perms_groupid' => 3, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1542797703, 'cruser_id' => 5, 'hidden' => 0, 'title' => 'News-Detailansicht', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 1551456660, 'keywords' => null, 'cache_timeout' => 0, 'newUntil' => 0, 'description' => 'Hier finden Sie spannende und aktuelle Nachrichten aus den Bereichen Elektrotechnik und Automation. Immer aktuell für Sie zusammengestellt!', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711637904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 1, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'cache_tags' => '', 'categories' => 0, 'tsconfig_includes' => '', 'tx_fluidpages_templatefile' => '', 'tx_fluidpages_layout' => '', 'tx_fed_page_flexform' => null, 'tx_fed_page_flexform_sub' => null, 'tx_fed_page_controller_action' => '', 'tx_fed_page_controller_action_sub' => '', 'tx_realurl_pathsegment' => '', 'tx_realurl_pathoverride' => 0, 'tx_realurl_exclude' => 0, 'seo_title' => 'Unsere News-Detailansicht auf smart-production.de', 'canonical_url' => '', 'tx_yoastseo_robot_instructions' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'tx_yoastseo_dont_use' => 0, 'tx_yoastseo_hide_snippet_preview' => 0, 'no_index' => 0, 'no_follow' => 0, 'tx_yoastseo_focuskeyword' => '', 'last_mod' => 1566578936, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_snippetpreview' => 0, 'tx_yoastseo_focuskeyword_analysis' => 0, 'tx_yoastseo_readability_analysis' => 0, 'tx_q3isolr_solrtest' => 0, 'tx_q3isolr_solrroot' => 0, 'canonical_link' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_focuskeyword_premium' => 0, 'rowDescription' => null, 'sys_language_uid' => 0, 'l10n_source' => 0, 'l10n_state' => null, 'l10n_diffsource' => 'a:55:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:9:"seo_title";N;s:23:"tx_yoastseo_cornerstone";N;s:11:"description";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:18:"sitemap_changefreq";N;s:16:"sitemap_priority";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:12:"twitter_card";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:29:"tx_fed_page_controller_action";N;s:33:"tx_fed_page_controller_action_sub";N;}', 'slug' => '/etz/news-detailansicht', 'legacy_overlay_uid' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'l10n_parent' => 0, 'hide_banner' => 0), 'page' => array('uid' => 84, 'pid' => 4, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 25, 'tstamp' => 1629203278, 'sorting' => 504, 'deleted' => 0, 'perms_userid' => 5, 'perms_groupid' => 3, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1542797703, 'cruser_id' => 5, 'hidden' => 0, 'title' => 'News-Detailansicht', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 1551456660, 'keywords' => null, 'cache_timeout' => 0, 'newUntil' => 0, 'description' => 'Hier finden Sie spannende und aktuelle Nachrichten aus den Bereichen Elektrotechnik und Automation. Immer aktuell für Sie zusammengestellt!', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711637904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 1, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'cache_tags' => '', 'categories' => 0, 'tsconfig_includes' => '', 'tx_fluidpages_templatefile' => '', 'tx_fluidpages_layout' => '', 'tx_fed_page_flexform' => null, 'tx_fed_page_flexform_sub' => null, 'tx_fed_page_controller_action' => '', 'tx_fed_page_controller_action_sub' => '', 'tx_realurl_pathsegment' => '', 'tx_realurl_pathoverride' => 0, 'tx_realurl_exclude' => 0, 'seo_title' => 'Unsere News-Detailansicht auf smart-production.de', 'canonical_url' => '', 'tx_yoastseo_robot_instructions' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'tx_yoastseo_dont_use' => 0, 'tx_yoastseo_hide_snippet_preview' => 0, 'no_index' => 0, 'no_follow' => 0, 'tx_yoastseo_focuskeyword' => '', 'last_mod' => 1566578936, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_snippetpreview' => 0, 'tx_yoastseo_focuskeyword_analysis' => 0, 'tx_yoastseo_readability_analysis' => 0, 'tx_q3isolr_solrtest' => 0, 'tx_q3isolr_solrroot' => 0, 'canonical_link' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_focuskeyword_premium' => 0, 'rowDescription' => null, 'sys_language_uid' => 0, 'l10n_source' => 0, 'l10n_state' => null, 'l10n_diffsource' => 'a:55:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:9:"seo_title";N;s:23:"tx_yoastseo_cornerstone";N;s:11:"description";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:18:"sitemap_changefreq";N;s:16:"sitemap_priority";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:12:"twitter_card";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:29:"tx_fed_page_controller_action";N;s:33:"tx_fed_page_controller_action_sub";N;}', 'slug' => '/etz/news-detailansicht', 'legacy_overlay_uid' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'l10n_parent' => 0, 'hide_banner' => 0), 'user' => array(), 'grid' => object(FluidTYPO3\Flux\Form\Container\Grid), 'form' => object(FluidTYPO3\Flux\Form), 'settings' => array('showAdvertisement' => '{$site.showAdvertisement}', 'gridColumns' => '12', 'colwrap' => 'first, second, third', 'menu' => array('main' => array('entryLevel' => '0'), 'sub' => array('entryLevel' => '1')), 'path' => array('template' => '{$site.path.template}/', 'assets' => '{$site.path.template}/assets/', 'images' => '{$site.path.template}/assets/images/'), 'container' => array('types' => array('default' => 'div', 'Example' => 'div')), 'Content' => array('Isotope' => array('thumbnailMaxWidth' => '640')), 'useTypoScript' => '1', 'entryLevel' => '0', 'enableSearch' => '1', 'enableLanguageMenu' => '1', 'searchFieldName' => 'q', 'searchPageUid' => '', 'addWell' => '0', 'wellSmall' => '0', 'position' => 'left', 'distribution' => '4', 'PID' => array('termine' => '99', 'job' => '98', 'marktplatz' => '100', 'service' => '101', 'industry' => '457'), 'branch' => 'etz'), 'provider' => object(FluidTYPO3\Fluidpages\Provider\PageProvider)), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/layout_Render_html_ccbafe800fbea46d2d5ae6c85ae8258d89fb55e0.php line 107
$arguments6['partial'] = 'PageHeader';
$arguments6['section'] = 'PageHeader';
$arguments6['arguments'] = $renderingContext->getVariableProvider()->getAll();

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

$output0 .= '
  <div class="row">
   <div class="small-12 medium-8 large-8 columns main-content">
at layout_Render_html_ccbafe800fbea46d2d5ae6c85ae8258d89fb55e0->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 201
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 504
            $actionResult = $this->{$this->errorMethodName}();
        }

        if ($actionResult === null && $this->view instanceof ViewInterface) {
            $this->response->appendContent($this->view->render());
        } elseif (is_string($actionResult) && $actionResult !== '') {
            $this->response->appendContent($actionResult);
        } elseif (is_object($actionResult) && method_exists($actionResult, '__toString')) {
            $this->response->appendContent((string)$actionResult);
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->callActionMethod()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 426
        $this->view = $this->resolveView();
        if ($this->view !== null) {
            $this->initializeView($this->view);
        }
        $this->callActionMethod();
        $this->renderAssetsForRequest($request);
    }

    /**
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Response))
in /html/_smart-production/live/typo3conf/ext/flux/Classes/Controller/AbstractFluxController.php line 436
                    'controllerClassName' => $controllerClassName,
                    'controllerActionName' => $controllerActionName
                ]
            );
            $potentialControllerInstance->processRequest($this->request,$response);
        } catch (StopActionException $error) {
            // intentionally left blank
        }
        HookHandler::trigger(
at FluidTYPO3\Flux\Controller\AbstractFluxController->callSubControllerAction('Q3i.Fluidfoundationtheme', 'Q3i\\Fluidfoundationtheme\\Controller\\PageController', 'render', 'tx_fluidfoundationtheme_page')
in /html/_smart-production/live/typo3conf/ext/flux/Classes/Controller/AbstractFluxController.php line 365
                    $extensionName,
                    $controllerName
                );
            $content = $this->callSubControllerAction(
                $extensionName,
                $foreignControllerClass,
                $actionName,
                $pluginSignature
            );
at FluidTYPO3\Flux\Controller\AbstractFluxController->performSubRendering('Q3i.Fluidfoundationtheme', 'Page', 'render', 'tx_fluidfoundationtheme_page')
in /html/_smart-production/live/typo3conf/ext/flux/Classes/Controller/AbstractFluxController.php line 307
        $controllerActionName = $this->provider->getControllerActionFromRecord($row);
        $actualActionName = null !== $requestActionName ? $requestActionName : $controllerActionName;
        $controllerName = $this->request->getControllerName();
        return $this->performSubRendering(
            $controllerExtensionKey,
            $controllerName,
            $actualActionName,
            $pluginSignature
        );
at FluidTYPO3\Flux\Controller\AbstractFluxController->renderAction()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 498
        }
        $validationResult = $this->arguments->validate();
        if (!$validationResult->hasErrors()) {
            $this->eventDispatcher->dispatch(new BeforeActionCallEvent(static::class, $this->actionMethodName, $preparedArguments));
            $actionResult = $this->{$this->actionMethodName}(...$preparedArguments);
        } else {
            $actionResult = $this->{$this->errorMethodName}();
        }

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

    /**
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 89
                throw new InfiniteLoopException('Could not ultimately dispatch the request after ' . $dispatchLoopCount . ' iterations. Most probably, a @' . IgnoreValidation::class . ' annotation is missing on re-displaying a form with validation errors.', 1217839467);
            }
            $controller = $this->resolveController($request);
            try {
                $controller->processRequest($request, $response);
            } catch (StopActionException $ignoredException) {
            }
        }

at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 66
        }

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

    /**
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 183
    protected function handleRequest(): string
    {
        $requestHandler = $this->requestHandlerResolver->resolveRequestHandler();

        $response = $requestHandler->handleRequest();
        // If response is NULL after handling the request we need to stop
        // This happens for instance, when a USER object was converted to a USER_INT
        // @see TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler::handleRequest()
        if ($response === null) {
at TYPO3\CMS\Extbase\Core\Bootstrap->handleRequest()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 173
     */
    public function run(string $content, array $configuration): string
    {
        $this->initialize($configuration);
        return $this->handleRequest();
    }

    /**
     * @return string
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'))
at call_user_func_array(array(object(TYPO3\CMS\Extbase\Core\Bootstrap), 'run'), array('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page')))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5720
                if (is_object($classObj) && method_exists($classObj, $parts[1]) && is_callable($callable)) {
                    $classObj->cObj = $this;
                    $content = call_user_func_array($callable, [
                        $content,
                        $conf
                    ]);
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', 3);
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'), '')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 43
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->processNonCacheableContentPartsAndSubstituteContentMarkers()!
            $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
        }
        $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
        if ($this->cObj->doConvertToUserIntObject) {
            $this->cObj->doConvertToUserIntObject = false;
            $content = $this->cObj->cObjGetSingle('USER_INT', $conf);
        } else {
at TYPO3\CMS\Frontend\ContentObject\UserContentObject->render(array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'), '5')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 688
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('typeNum' => '0', 'USER', '5.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'), 'includeCSS.' => array('social_gdpr' => 'EXT:social_gdpr/Resources/Public/Css/styles.css', 'femanagerMain' => 'EXT:femanager/Resources/Public/Css/Main.min.css', 'we_cookie_consent_style' => 'EXT:we_cookie_consent/Resources/Public/Stylesheet/style.css', 'simplepoll' => 'typo3conf/templates/_shared/ext/simplepool/Public/Css/simplepoll.css', 'waconcookiemanagement' => 'EXT:wacon_cookie_management/Resources/Public/Css/waconcookiemanagement.css', 'default' => 'typo3conf/templates/main/assets/css/etz.min.css', 'default.' => array('media' => 'all'), 'dev_review' => 'typo3conf/templates/_shared/css/_REVIEW.css'), 'includeJSFooter.' => array('social_gdpr' => 'EXT:social_gdpr/Resources/Public/JavaScript/decode.js', 'femanagerValidation' => 'EXT:femanager/Resources/Public/JavaScript/Validation.min.js', 'femanager' => 'EXT:femanager/Resources/Public/JavaScript/Femanager.min.js', 'tx_rxshariff_shariff' => 'EXT:rx_shariff/Resources/Public/JavaScript/shariff.complete.js', 'simplepoll' => 'EXT:simplepoll/Resources/Public/JavaScript/main.js', 'solr-uri' => 'EXT:solr/Resources/Public/JavaScript/JQuery/URI.min.js', 'solr-uri-jquery' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery.URI.min.js', 'solr-ajaxify' => 'typo3conf/templates/_shared/JavaScript/search_controller.js', 'solr-autocomplete' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery.autocomplete.min.js', 'solr-suggest' => 'typo3conf/templates/_shared/JavaScript/suggest_controller.js', 'waconcookiemanagement' => 'EXT:wacon_cookie_management/Resources/Public/JavaScript/waconcookiemanagement.js', 'gmapClustering' => 'EXT:referenzen/Resources/Public/Scripts/markerclusterer.js', 'gmap' => 'EXT:referenzen/Resources/Public/Scripts/gmap.js'), 'config.' => array('doctype' => '<!doctype html>', 'xhtml_cleaning' => 'all', 'xmlprologue' => 'none', 'htmlTag_stdWrap.' => array('setContentToCurrent' => '1', 'cObject' => 'COA', 'cObject.' => array('temp' => 'TEXT', 'temp.' => array('addParams.' => array('class' => 'no-js'), 'append' => 'TEXT', 'append.' => array('char' => '10'), 'current' => '1'), 'TEXT', '70.' => array('addParams.' => array('class' => 'no-js'), 'append' => 'TEXT', 'append.' => array('char' => '10'), 'current' => '1'))), 'no_cache' => '0', 'cache_period' => '604800', 'cache_clearAtMidnight' => '1', 'sendCacheHeaders' => '1', 'absRefPrefix' => '/', 'headerComment' => 'TYPO3 by Q3i - http://www.q3i.de', 'pageTitlefirst' => '1', 'noPageTitle' => '2', 'inlineStyle2Tempfile' => '1', 'removeDefaultJS' => 'external', 'simulateStaticDocuments' => '0', 'frontend_editing' => '1', 'uniqueLinkVars' => '1', 'spamProtectEmailAddresses' => '1', 'spamProtectEmailAddresses_atSubst' => '<span>&#064;</span>', 'metaCharset' => 'utf-8', 'renderCharset' => 'utf-8', 'index_enable' => '1', 'index_externals' => '1', 'admPanel' => '1', 'concatenateJs' => '1', 'concatenateCss' => '1', 'compressJs' => '1', 'compressCss' => '1', 'linkVars' => 'L(0-99)', 'sys_language_uid' => '0', 'language' => 'de', 'locale_all' => 'de_DE.UTF-8', 'sys_language_mode' => 'strict', 'sys_language_overlay' => 'hideNonTranslated', 'fileTarget' => '_blank', 'intTarget' => '_top'), 'includeJS.' => array(), 'meta.' => array('robots.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => 'noindex', 'if.' => array('equals.' => array('field' => 'no_index'), 'value' => '1')), 'TEXT', '11.' => array('value' => 'index', 'if.' => array('equals.' => array('field' => 'no_index'), 'value' => '0'), 'override' => 'noindex', 'override.' => array('if.' => array('isFalse' => '1'))), 'TEXT', '20.' => array('value' => ','), 'TEXT', '30.' => array('value' => 'nofollow', 'if.' => array('equals.' => array('field' => 'no_follow'), 'value' => '1')), 'TEXT', '31.' => array('value' => 'follow', 'if.' => array('equals.' => array('field' => 'no_follow'), 'value' => '0'), 'override' => 'nofollow', 'override.' => array('if.' => array('isFalse' => '1')))), 'override' => 'index,follow', 'override.' => array('if.' => array('isTrue' => '1'))), 'og:image.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array('table' => 'pages', 'uid.' => array('data' => 'page:uid'), 'fieldName' => 'og_image'), 'renderObj' => 'TEXT', 'renderObj.' => array('typolink.' => array('parameter.' => array('stdWrap.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'file:current:uid'), 'treatIdAsReference' => '1', 'cropVariant' => 'social', 'maxW' => '1200', 'maxH' => '628')))), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1'))), 'attribute' => 'property'), 'twitter:image.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array('table' => 'pages', 'uid.' => array('data' => 'page:uid'), 'fieldName' => 'twitter_image'), 'maxItems' => '1', 'renderObj' => 'TEXT', 'renderObj.' => array('typolink.' => array('parameter.' => array('stdWrap.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'file:current:uid'), 'treatIdAsReference' => '1', 'cropVariant' => 'social', 'maxW' => '1200', 'maxH' => '628')))), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1')))), 'viewport' => 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no', 'X-UA-Compatible' => 'IE=edge', 'robots' => 'noindex,nofollow', 'author' => 'VDE VERLAG GMBH', 'author.' => array('override.' => array('data' => 'field:author'), 'cObject' => '< lib.yoastSEO.author'), 'twitter:title.' => array('cObject' => '< lib.yoastSEO.pageTitle'), 'twitter:description.' => array('cObject' => '< lib.yoastSEO.description')), 'jsInline.' => array('TEXT', '30.' => array('value' => ' (function(e,t,n){var r=e.querySelectorAll("html")[0]; r.className=r.className.replace(/(^|\\s)no-js(\\s|$)/,"$1js$2")})(document,window,0);')), 'bodyTagCObject' => 'CASE', 'bodyTagCObject.' => array('key.' => array('data' => 'levelfield:-1, tx_fed_page_controller_action, slide', 'substring' => '22,20'), 'default' => 'TEXT', 'default.' => array('value' => '<body id="top">'), 'default_wrapped' => 'COA', 'default_wrapped.' => array('wrap' => '<body id="top" class="pid-|">', 'TEXT', '10.' => array('data' => 'field:uid', 'insertData' => '1'), 'TEXT', '20.' => array('value' => 'default', 'wrap' => '|')), '2Col' => 'COA', '2Col.' => array('wrap' => '<body class="antialiased hide-extras pid-|">', 'TEXT', '10.' => array('data' => 'field:uid', 'insertData' => '1'), 'TEXT', '20.' => array('value' => 'layout-2Col', 'wrap' => '|')), 'Developer' => 'COA', 'Developer.' => array('wrap' => '<body class="antialiased hide-extras pid-|">', 'TEXT', '10.' => array('data' => 'field:uid', 'insertData' => '1'), 'TEXT', '20.' => array('value' => 'layout-Developer', 'wrap' => '|')), 'TEXT', '0.' => array('value' => '<body id="top">')), 'bodyTag' => '<body id="top">', 'shortcutIcon' => '', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield:-1, backend_layout_next_level, slide', 'override.' => array('field' => 'backend_layout')), 'default' => 'TEXT', 'default.' => array('value' => 'typo3conf/templates/_shared/Fluid/Page/Default.html'), 'TEXT', '1.' => array('value' => 'typo3conf/templates/_shared/Fluid/Page/Default.html'))))), 'headerData.' => array('COA', '5.' => array('TEXT', '20.' => array('value' => '<link rel="icon" type="image/x-icon" href="/favicon.ico">', 'noTrimWrap' => '|||'), 'COA', '999.' => array('stdWrap.' => array('if.' => array('isTrue' => '1'), 'wrap' => '<!-- analytics BEGIN --> | <!- analytics END- -->'), 'USER', '10.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderGa')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000'))), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderPiwik')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000'))), 'USER', '30.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderEtracker')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000')))), '< lib.yoastSEO.pageTitle', '10.' => array('wrap' => '<title>|</title>', 'noTrimWrap' => '|||'), 'TEXT', '21.' => array('value' => '<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">', 'noTrimWrap' => '|||'), 'TEXT', '22.' => array('value' => '<link rel="icon" type="image/x-icon" sizes="192x192" href="/typo3conf/templates/_shared/gfx/icons/favicon-192.png">', 'noTrimWrap' => '|||'), 'TEXT', '23.' => array('value' => '<link rel="apple-touch-icon" sizes="180x180" href="/typo3conf/templates/_shared/gfx/icons/favicon-180-precomposed.png">', 'noTrimWrap' => '|||'), 'TEXT', '24.' => array('value' => '<meta name="msapplication-TileImage" content="/typo3conf/templates/_shared/gfx/icons/favicon-114-precomposed.png">', 'noTrimWrap' => '|||'), 'TEXT', '25.' => array('value' => '<meta name="msapplication-TileColor" content="#FFFFFF">', 'noTrimWrap' => '|||'))), 'footerData.' => array('COA', '20.' => array('TEXT', '10.' => array('value' => '<!-- visitor-analytics disabled -->'))), 'includeJSFooterlibs.' => array('ie' => 'typo3conf/templates/_shared/JavaScript/ie.js', 'app' => 'typo3conf/templates/main/assets/js/app.min.js'), 'jsFooterInline.' => array(), 'CONTENT', '9999.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '44', 'where' => 'colPos = 1')), 'COA', '3.' => array()))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 232
     * @return string
     */
    protected function generatePageBodyContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageBodyContent(object(Q3i\Q3iBase\Ext\Typo3\Frontend\Controller\TypoScriptFrontendController))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 198
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(Q3i\Q3iBase\Ext\Typo3\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 134
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push($controller->sPre, 'PAGE');

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

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

at TYPO3\CMS\Frontend\Http\RequestHandler->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 48
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_smart-production/live/typo3conf/ext/solr/Classes/Middleware/PageIndexerFinisher.php line 54
     * @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(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelDataPersister->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelRenderer.php line 47
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelRenderer->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 47
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)) {
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 69
                return new RedirectResponse($externalUrl, 303);
            }
        }

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

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_smart-production/live/typo3conf/ext/shortcut_statuscodes/Classes/Middleware/ShortcutRedirect.php line 48

            return new RedirectResponse($redirectToUri, $statusCode);
        }

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

    /**
     * Return the uri to redirect to.
at WebitDe\ShortcutStatuscodes\Middleware\ShortcutRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 86
                $this->convertCharsetRecursivelyToUtf8($parsedBody, $this->controller->metaCharset);
                $request = $request->withParsedBody($parsedBody);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Small helper function to convert charsets for arrays to UTF-8
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 108
        }

        // Make TSFE globally available
        $GLOBALS['TSFE'] = $controller;
        return $handler->handle($request);
    }

    /**
     * Register the backend user as aspect
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_smart-production/live/typo3conf/ext/yoast_seo/Classes/Middleware/PageRequestMiddleware.php line 31
        if (YoastRequestHash::isValid($request->getServerParams())) {
            $context = GeneralUtility::makeInstance(Context::class);
            $context->setAspect('visibility', new VisibilityAspect(true));
        }
        return $handler->handle($request);
    }
}
at YoastSeoForTypo3\YoastSeo\Middleware\PageRequestMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_smart-production/live/typo3conf/ext/solr/Classes/Middleware/PageIndexerInitialization.php line 78
            }
            $pageIndexerRequestHandler->run();
        }

        return $handler->handle($request);
    }
}
at ApacheSolrForTypo3\Solr\Middleware\PageIndexerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_smart-production/live/typo3conf/ext/solr/Classes/Middleware/FrontendUserAuthenticator.php line 82
    {
        if (Util::getIsTYPO3VersionBelow10()
            || !$request->hasHeader(PageIndexerRequest::SOLR_INDEX_HEADER)
        ) {
            return $handler->handle($request);
        }

        // disable TSFE cache for TYPO3 v10
        $request = $request->withAttribute('noCache', true);
at ApacheSolrForTypo3\Solr\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/workspaces/Classes/Middleware/WorkspacePreviewPermissions.php line 47
        $pageArguments = $request->getAttribute('routing', null);
        if ($pageArguments instanceof PageArguments && $GLOBALS['BE_USER'] instanceof PreviewUserAuthentication) {
            $GLOBALS['BE_USER']->setWebmounts([$pageArguments->getPageId()]);
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Workspaces\Middleware\WorkspacePreviewPermissions->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 131
            }
        }

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

    /**
     * Filters out the arguments that are necessary for calculating cHash
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/workspaces/Classes/Middleware/WorkspacePreview.php line 127
            $addInformationAboutDisabledCache = true;
            $setCookieOnCurrentRequest = false;
        }

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

        if ($GLOBALS['TSFE'] instanceof TypoScriptFrontendController && $addInformationAboutDisabledCache) {
            $GLOBALS['TSFE']->set_no_cache('GET Parameter ADMCMD_prev=LIVE was given', true);
        }
at TYPO3\CMS\Workspaces\Middleware\WorkspacePreview->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 83
        // Register the frontend user as aspect and within the session
        $this->setFrontendUserAspect($frontendUser);
        $request = $request->withAttribute('frontend.user', $frontendUser);

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

        // Store session data for fe_users if it still exists
        if ($frontendUser instanceof FrontendUserAuthentication) {
            $frontendUser->storeSessionData();
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 66
            Bootstrap::loadExtTables();
            $this->setBackendUserAspect($GLOBALS['BE_USER']);
        }

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

        // If, when building the response, the user is still available, then ensure that the headers are sent properly
        if ($this->context->getAspect('backend.user')->isLoggedIn()) {
            return $this->applyHeadersToResponse($response);
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

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

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/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/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/AbstractApplication.php line 85
     * @return ResponseInterface
     */
    protected function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->requestHandler->handle($request);
    }

    /**
     * Set up the application and shut it down afterwards
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Http/Application.php line 69
        // Create new request object having applicationType "I am a frontend request" attribute.
        $request = $request->withAttribute('applicationType', SystemEnvironmentBuilder::REQUESTTYPE_FE);

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

    /**
     * Check if LocalConfiguration.php and PackageStates.php exist
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/AbstractApplication.php line 97
    final public function run(callable $execute = null)
    {
        try {
            $response = $this->handle(
                ServerRequestFactory::fromGlobals()
            );
            if ($execute !== null) {
                call_user_func($execute);
            }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/index.php line 25
// Set up the application for the frontend
call_user_func(function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/index.php line 26
call_user_func(function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});

(2/2) ReflectionException

Property GeorgRinger\News\Domain\Model\NewsDefault::$newsRepository does not exist

in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Object/Container/Container.php line 242

            if ($classSchema->getProperty($injectPropertyName)->isPublic()) {
                $instance->{$injectPropertyName} = $instanceToInject;
            } else {
                $propertyReflection = new \ReflectionProperty($instance, $injectPropertyName);
                $propertyReflection->setAccessible(true);
                $propertyReflection->setValue($instance, $instanceToInject);
            }
        }
at ReflectionProperty->__construct(object(GeorgRinger\News\Domain\Model\NewsDefault), 'newsRepository')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Object/Container/Container.php line 242

            if ($classSchema->getProperty($injectPropertyName)->isPublic()) {
                $instance->{$injectPropertyName} = $instanceToInject;
            } else {
                $propertyReflection = new \ReflectionProperty($instance, $injectPropertyName);
                $propertyReflection->setAccessible(true);
                $propertyReflection->setValue($instance, $instanceToInject);
            }
        }
at TYPO3\CMS\Extbase\Object\Container\Container->injectDependencies(object(GeorgRinger\News\Domain\Model\NewsDefault), object(TYPO3\CMS\Extbase\Reflection\ClassSchema))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Object/Container/Container.php line 126
    {
        $className = $this->getImplementationClassName($className);
        $classSchema = $this->getReflectionService()->getClassSchema($className);
        $object = $this->getInstantiator()->instantiate($className);
        $this->injectDependencies($object, $classSchema);
        $this->initializeObject($object);
        return $object;
    }

at TYPO3\CMS\Extbase\Object\Container\Container->getEmptyObject('GeorgRinger\\News\\Domain\\Model\\NewsDefault')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Object/ObjectManager.php line 132
     * @return object&T the class instance
     */
    public function getEmptyObject(string $className): object
    {
        return $this->objectContainer->getEmptyObject($className);
    }
}
at TYPO3\CMS\Extbase\Object\ObjectManager->getEmptyObject('GeorgRinger\\News\\Domain\\Model\\NewsDefault')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Persistence/Generic/Mapper/DataMapper.php line 217
        if (!in_array(DomainObjectInterface::class, class_implements($className))) {
            throw new CannotReconstituteObjectException('Cannot create empty instance of the class "' . $className
                . '" because it does not implement the TYPO3\\CMS\\Extbase\\DomainObject\\DomainObjectInterface.', 1234386924);
        }
        $object = $this->objectManager->getEmptyObject($className);
        return $object;
    }

    /**
at TYPO3\CMS\Extbase\Persistence\Generic\Mapper\DataMapper->createEmptyObject('GeorgRinger\\News\\Domain\\Model\\NewsDefault')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Persistence/Generic/Mapper/DataMapper.php line 191
    {
        if ($this->persistenceSession->hasIdentifier($row['uid'], $className)) {
            $object = $this->persistenceSession->getObjectByIdentifier($row['uid'], $className);
        } else {
            $object = $this->createEmptyObject($className);
            $this->persistenceSession->registerObject($object, $row['uid']);
            $this->thawProperties($object, $row);
            $event = new AfterObjectThawedEvent($object, $row);
            $this->eventDispatcher->dispatch($event);
at TYPO3\CMS\Extbase\Persistence\Generic\Mapper\DataMapper->mapSingleRow('GeorgRinger\\News\\Domain\\Model\\NewsDefault', array('uid' => 1232, 'pid' => 246, 'tstamp' => 1574251560, 'crdate' => 1574251560, 'cruser_id' => 23, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_diffsource' => '', 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'sorting' => 0, 'fe_group' => '', 'title' => 'IIoT-Anwendungen in der Praxis bei MB Connect', 'teaser' => 'Das Industrial Internet of Things (kurz IIoT) ist in der Praxis angekommen. IIoT-Anwendungen sind jedoch nur dann erfolgreich, wenn sie den Kunden einen echten Mehrwert bieten. MB connect line zeigt auf der SPS 2019 in Halle 10.0 am Stand 202 einige ausgewählte Praxis-Beispiele – und zwar anhand bereits konkret realisierter Kundenanwendungen.', 'bodytext' => '<p class="text-justify">Die Grundlage dieser Lösungen ist die zuverlässige Erfassung aller relevanten Daten. Durch die Verfügbarkeit aller Steuerungs- und Sensordaten hat der Service jederzeit umfassende Informationen zu den Betriebs- und Wartungszuständen der Anlage. Der Betriebsleiter hat vor Ort alle wichtigen Kennzahlen über Auslastung der Maschinen, Stillstände und die produzierte Qualität im Blick – und kann die Kennzahlen auch mit Planzahlen und historischen Daten vergleichen.</p> <p class="text-justify">Das Bedien- und Instandhaltungspersonal kann die Wartung verschleißabhängig planen und die Reparaturen in vorab geplanten Wartungsfenstern durchführen. Das Risiko eines plötzlichen Stillstands mit Produktionsausfall und allen Folgen wird auf ein Minimum reduziert. Bei Bedarf kann der Service des Herstellers direkt aus der Kundenapplikation aktiviert werden. Der Service ist per Mausklick mit der richtigen Maschine verbunden und kann direkt eingreifen – ohne Telefonate oder andere zeitraubende Abstimmungstätigkeiten.</p> <p class="text-justify">Die anlagenseitige Erfassung der Daten erfolgt über die Industrie-Router mbNet.rokey mit zweistufigem Security-Konzept. Das Bedienpersonal entscheidet vor Ort per Schlüsselschalter, ob nur die Datenerfassung möglich ist – oder auch Fernwartung und Routing. Mit der Erweiterung mbEDGE werden die Router zum IoT-Gateway. Vielfältige Schnittstellen wie Modbus-TCP, S7-over-TCP, OPC-UA und diverse serielle Protokolle sorgen dafür, dass die Daten der Maschinenkomponenten kontinuierlich erfasst werden können. Moderne Werkzeuge wie Node-RED, MQTT und die Anbindung an unterschiedliche Cloud-Lösungen wie Azure, AWS oder IBM Watson ermöglichen dem Anwender flexible Lösungen, die auch für zukünftige Entwicklungen offen sind.</p>', 'datetime' => 1574171100, 'archive' => 0, 'author' => 'MB Connect Line (no)', 'author_email' => '', 'categories' => 2, 'related' => 0, 'related_from' => 0, 'related_files' => null, 'fal_related_files' => 0, 'related_links' => null, 'type' => '0', 'keywords' => '', 'description' => 'IIoT-Anwendungen sind nur dann erfolgreich, wenn sie den Kunden einen echten Mehrwert bieten. MB connect line zeigt Praxis-Beispiele anhand bereits realisierter Kundenanwendungen.', 'tags' => 0, 'media' => null, 'fal_media' => 1, 'internalurl' => null, 'externalurl' => null, 'istopnews' => 0, 'content_elements' => 0, 'path_segment' => 'iiot-anwendungen-in-der-praxis-bei-mb-connect', 'alternative_title' => 'IIoT-Anwendungen in der Praxis bei MB Connect', 'notes' => '', 'import_id' => '', 'import_source' => '', 'l10n_state' => null, 'l10n_source' => 0, 'q3i_location' => '', 'q3i_company' => '', 'tx_q3isolr_solrtest' => 0, 'q3i_blockfeed' => 0, 'tx_yoastseo_focuskeyword' => 'IIoT', 'q3i_eventlabel' => null, 'q3i_isevent' => 0, 'q3i_url' => 'www.mbconnectline.com', 'sitemap_changefreq' => '', 'sitemap_priority' => '0.5', 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'tx_yoastseo_snippetpreview' => 0, 'tx_yoastseo_readability_analysis' => 0, 'tx_yoastseo_focuskeyword_analysis' => 0))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Persistence/Generic/Mapper/DataMapper.php line 151
    public function map($className, array $rows)
    {
        $objects = [];
        foreach ($rows as $row) {
            $objects[] = $this->mapSingleRow($this->getTargetType($className, $row), $row);
        }
        return $objects;
    }

at TYPO3\CMS\Extbase\Persistence\Generic\Mapper\DataMapper->map('GeorgRinger\\News\\Domain\\Model\\News', array(array('uid' => 1232, 'pid' => 246, 'tstamp' => 1574251560, 'crdate' => 1574251560, 'cruser_id' => 23, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 0, 'editlock' => 0, 'sys_language_uid' => 0, 'l10n_parent' => 0, 'l10n_diffsource' => '', 'deleted' => 0, 'hidden' => 0, 'starttime' => 0, 'endtime' => 0, 'sorting' => 0, 'fe_group' => '', 'title' => 'IIoT-Anwendungen in der Praxis bei MB Connect', 'teaser' => 'Das Industrial Internet of Things (kurz IIoT) ist in der Praxis angekommen. IIoT-Anwendungen sind jedoch nur dann erfolgreich, wenn sie den Kunden einen echten Mehrwert bieten. MB connect line zeigt auf der SPS 2019 in Halle 10.0 am Stand 202 einige ausgewählte Praxis-Beispiele – und zwar anhand bereits konkret realisierter Kundenanwendungen.', 'bodytext' => '<p class="text-justify">Die Grundlage dieser Lösungen ist die zuverlässige Erfassung aller relevanten Daten. Durch die Verfügbarkeit aller Steuerungs- und Sensordaten hat der Service jederzeit umfassende Informationen zu den Betriebs- und Wartungszuständen der Anlage. Der Betriebsleiter hat vor Ort alle wichtigen Kennzahlen über Auslastung der Maschinen, Stillstände und die produzierte Qualität im Blick – und kann die Kennzahlen auch mit Planzahlen und historischen Daten vergleichen.</p> <p class="text-justify">Das Bedien- und Instandhaltungspersonal kann die Wartung verschleißabhängig planen und die Reparaturen in vorab geplanten Wartungsfenstern durchführen. Das Risiko eines plötzlichen Stillstands mit Produktionsausfall und allen Folgen wird auf ein Minimum reduziert. Bei Bedarf kann der Service des Herstellers direkt aus der Kundenapplikation aktiviert werden. Der Service ist per Mausklick mit der richtigen Maschine verbunden und kann direkt eingreifen – ohne Telefonate oder andere zeitraubende Abstimmungstätigkeiten.</p> <p class="text-justify">Die anlagenseitige Erfassung der Daten erfolgt über die Industrie-Router mbNet.rokey mit zweistufigem Security-Konzept. Das Bedienpersonal entscheidet vor Ort per Schlüsselschalter, ob nur die Datenerfassung möglich ist – oder auch Fernwartung und Routing. Mit der Erweiterung mbEDGE werden die Router zum IoT-Gateway. Vielfältige Schnittstellen wie Modbus-TCP, S7-over-TCP, OPC-UA und diverse serielle Protokolle sorgen dafür, dass die Daten der Maschinenkomponenten kontinuierlich erfasst werden können. Moderne Werkzeuge wie Node-RED, MQTT und die Anbindung an unterschiedliche Cloud-Lösungen wie Azure, AWS oder IBM Watson ermöglichen dem Anwender flexible Lösungen, die auch für zukünftige Entwicklungen offen sind.</p>', 'datetime' => 1574171100, 'archive' => 0, 'author' => 'MB Connect Line (no)', 'author_email' => '', 'categories' => 2, 'related' => 0, 'related_from' => 0, 'related_files' => null, 'fal_related_files' => 0, 'related_links' => null, 'type' => '0', 'keywords' => '', 'description' => 'IIoT-Anwendungen sind nur dann erfolgreich, wenn sie den Kunden einen echten Mehrwert bieten. MB connect line zeigt Praxis-Beispiele anhand bereits realisierter Kundenanwendungen.', 'tags' => 0, 'media' => null, 'fal_media' => 1, 'internalurl' => null, 'externalurl' => null, 'istopnews' => 0, 'content_elements' => 0, 'path_segment' => 'iiot-anwendungen-in-der-praxis-bei-mb-connect', 'alternative_title' => 'IIoT-Anwendungen in der Praxis bei MB Connect', 'notes' => '', 'import_id' => '', 'import_source' => '', 'l10n_state' => null, 'l10n_source' => 0, 'q3i_location' => '', 'q3i_company' => '', 'tx_q3isolr_solrtest' => 0, 'q3i_blockfeed' => 0, 'tx_yoastseo_focuskeyword' => 'IIoT', 'q3i_eventlabel' => null, 'q3i_isevent' => 0, 'q3i_url' => 'www.mbconnectline.com', 'sitemap_changefreq' => '', 'sitemap_priority' => '0.5', 'og_title' => '', 'og_description' => null, 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => null, 'twitter_image' => 0, 'tx_yoastseo_snippetpreview' => 0, 'tx_yoastseo_readability_analysis' => 0, 'tx_yoastseo_focuskeyword_analysis' => 0)))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Persistence/Generic/QueryResult.php line 129
            reset($queryResult);
        } else {
            $query = $this->getQuery();
            $query->setLimit(1);
            $queryResult = $this->dataMapper->map($query->getType(), $this->persistenceManager->getObjectDataByQuery($query));
        }
        $firstResult = current($queryResult);
        if ($firstResult === false) {
            $firstResult = null;
at TYPO3\CMS\Extbase\Persistence\Generic\QueryResult->getFirst()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Persistence/Generic/Backend.php line 260
        $query = $this->persistenceManager->createQueryForType($className);
        $query->getQuerySettings()->setRespectStoragePage(false);
        $query->getQuerySettings()->setRespectSysLanguage(false);
        $query->getQuerySettings()->setLanguageOverlayMode(true);
        return $query->matching($query->equals('uid', $identifier))->execute()->getFirst();
    }

    /**
     * Checks if the given object has ever been persisted.
at TYPO3\CMS\Extbase\Persistence\Generic\Backend->getObjectByIdentifier('1232', 'GeorgRinger\\News\\Domain\\Model\\News')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Persistence/Generic/PersistenceManager.php line 151
        }
        if ($this->persistenceSession->hasIdentifier($identifier, $objectType)) {
            return $this->persistenceSession->getObjectByIdentifier($identifier, $objectType);
        }
        return $this->backend->getObjectByIdentifier($identifier, $objectType);
    }

    /**
     * Commits new objects and changes to objects in the current persistence
at TYPO3\CMS\Extbase\Persistence\Generic\PersistenceManager->getObjectByIdentifier('1232', 'GeorgRinger\\News\\Domain\\Model\\News')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Property/TypeConverter/PersistentObjectConverter.php line 231
     */
    protected function fetchObjectFromPersistence($identity, string $targetType): object
    {
        if (ctype_digit((string)$identity)) {
            $object = $this->persistenceManager->getObjectByIdentifier($identity, $targetType);
        } else {
            throw new InvalidSourceException('The identity property "' . $identity . '" is no UID.', 1297931020);
        }

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

        if ($result instanceof Error) {
            $this->messages->forProperty(implode('.', $currentPropertyPath))->addError($result);
        }
at TYPO3\CMS\Extbase\Property\PropertyMapper->doMapping('1232', 'GeorgRinger\\News\\Domain\\Model\\News', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration), array())
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Property/PropertyMapper.php line 122
        }
        $currentPropertyPath = [];
        $this->messages = new Result();
        try {
            $result = $this->doMapping($source, $targetType, $configuration, $currentPropertyPath);
            if ($result instanceof Error) {
                return null;
            }

at TYPO3\CMS\Extbase\Property\PropertyMapper->convert('1232', 'GeorgRinger\\News\\Domain\\Model\\News', object(TYPO3\CMS\Extbase\Mvc\Controller\MvcPropertyMappingConfiguration))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Controller/Argument.php line 268
            $this->value = $rawValue;
            return $this;
        }
        try {
            $this->value = $this->propertyMapper->convert($rawValue, $this->dataType, $this->propertyMappingConfiguration);
        } catch (TargetNotFoundException $e) {
            // for optional arguments no exception is thrown.
            if ($this->isRequired()) {
                throw $e;
at TYPO3\CMS\Extbase\Mvc\Controller\Argument->setValue('1232')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 962
        /** @var \TYPO3\CMS\Extbase\Mvc\Controller\Argument $argument */
        foreach ($this->arguments as $argument) {
            $argumentName = $argument->getName();
            if ($this->request->hasArgument($argumentName)) {
                $argument->setValue($this->request->getArgument($argumentName));
            } elseif ($argument->isRequired()) {
                throw new RequiredArgumentMissingException('Required argument "' . $argumentName . '" is not set for ' . $this->request->getControllerObjectName() . '->' . $this->request->getControllerActionName() . '.', 1298012500);
            }
        }
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->mapRequestArgumentsToControllerArguments()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 420
            // todo: replace method_exists with is_callable or even both
            //       method_exists alone does not guarantee that $callable is actually callable
            call_user_func($callable);
        }
        $this->mapRequestArgumentsToControllerArguments();
        $this->controllerContext = $this->buildControllerContext();
        $this->view = $this->resolveView();
        if ($this->view !== null) {
            $this->initializeView($this->view);
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/_smart-production/live/typo3conf/ext/news/Classes/Controller/NewsBaseController.php line 54
     */
    public function processRequest(RequestInterface $request, ResponseInterface $response)
    {
        try {
            parent::processRequest($request, $response);
        } catch (\Exception $exception) {
            $this->handleKnownExceptionsElseThrowAgain($exception);
        }
    }
at GeorgRinger\News\Controller\NewsBaseController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 89
                throw new InfiniteLoopException('Could not ultimately dispatch the request after ' . $dispatchLoopCount . ' iterations. Most probably, a @' . IgnoreValidation::class . ' annotation is missing on re-displaying a form with validation errors.', 1217839467);
            }
            $controller = $this->resolveController($request);
            try {
                $controller->processRequest($request, $response);
            } catch (StopActionException $ignoredException) {
            }
        }

at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 66
        }

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

    /**
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 183
    protected function handleRequest(): string
    {
        $requestHandler = $this->requestHandlerResolver->resolveRequestHandler();

        $response = $requestHandler->handleRequest();
        // If response is NULL after handling the request we need to stop
        // This happens for instance, when a USER object was converted to a USER_INT
        // @see TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler::handleRequest()
        if ($response === null) {
at TYPO3\CMS\Extbase\Core\Bootstrap->handleRequest()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 173
     */
    public function run(string $content, array $configuration): string
    {
        $this->initialize($configuration);
        return $this->handleRequest();
    }

    /**
     * @return string
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'))
at call_user_func_array(array(object(TYPO3\CMS\Extbase\Core\Bootstrap), 'run'), array('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1')))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5720
                if (is_object($classObj) && method_exists($classObj, $parts[1]) && is_callable($callable)) {
                    $classObj->cObj = $this;
                    $content = call_user_func_array($callable, [
                        $content,
                        $conf
                    ]);
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', 3);
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), '')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 43
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->processNonCacheableContentPartsAndSubstituteContentMarkers()!
            $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
        }
        $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
        if ($this->cObj->doConvertToUserIntObject) {
            $this->cObj->doConvertToUserIntObject = false;
            $content = $this->cObj->cObjGetSingle('USER_INT', $conf);
        } else {
at TYPO3\CMS\Frontend\ContentObject\UserContentObject->render(array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'tt_content.list.20.news_pi1')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 193
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(Q3i\Q3iBase\Core\Frontend\ContentObjectRenderer), array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView')), 'tt_content.list.20.news_pi1', 'news_pi1')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 170
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('uid' => 654, 'pid' => 84, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 642, 'tstamp' => 1547763523, 'crdate' => 1543488994, 'cruser_id' => 5, 'hidden' => 0, 'sorting' => 128, 'CType' => 'list', 'header' => 'header', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 3, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'header_layout' => '100', 'list_type' => 'news_pi1', 'sectionIndex' => 0, 'linkToTop' => 0, 'filelink_size' => 0, '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"></value> </field> <field index="settings.recursive"> <value index="vDEF"></value> </field> <field index="switchableControllerActions"> <value index="vDEF">News-&gt;detail</value> </field> </language> </sheet> <sheet index="additional"> <language index="lDEF"> <field index="settings.detailPid"> <value index="vDEF"></value> </field> <field index="settings.listPid"> <value index="vDEF"></value> </field> <field index="settings.backPid"> <value index="vDEF">12</value> </field> <field index="settings.limit"> <value index="vDEF"></value> </field> <field index="settings.offset"> <value index="vDEF"></value> </field> <field index="settings.hidePagination"> <value index="vDEF">0</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.tags"> <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">100</value> </field> </language> </sheet> </data></T3FlexForms>', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:33:{s:5:"CType";N;s:6:"colPos";N;s:6:"header";N;s:13:"header_layout";N;s:15:"header_position";N;s:4:"date";N;s:11:"header_link";N;s:9:"subheader";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:11:"frame_class";N;s:6:"layout";N;s:5:"panel";N;s:18:"space_before_class";N;s:17:"space_after_class";N;s:20:"padding_before_class";N;s:19:"padding_after_class";N;s:12:"sectionIndex";N;s:9:"linkToTop";N;s:16:"sys_language_uid";N;s:6:"hidden";N;s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:8:"rwd_show";N;s:8:"rwd_hide";N;s:15:"rwd_orientation";N;s:10:"rwd_motion";N;s:9:"rwd_delay";N;s:10:"rwd_repeat";N;}', 'file_collections' => '', 'filelink_sorting' => '', 'target' => '', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'categories' => 0, 'selected_categories' => '', 'category_field' => '', 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 0, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'tx_srlanguagemenu_type' => 0, 'tx_srlanguagemenu_languages' => '', 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'frame_class' => 'none', 'space_before_class' => '', 'space_after_class' => '', 'table_class' => '', 'l10n_state' => null, 'l10n_source' => 0, 'padding_before_class' => '', 'padding_after_class' => '', 'imagecols_small' => 1, 'imagecols_medium' => 1, 'tx_news_related_news' => 0, 'rwd_show' => '', 'rwd_hide' => '', 'rwd_orientation' => '', 'rwd_motion' => '', 'image_rwd' => 0, 'tx_flux_migrated_version' => null, 'panel' => '', 'rwd_delay' => '', 'rwd_repeat' => 0, 'tx_yoastseo_linking_suggestions' => 0, 'filelink_sorting_direction' => ''), 'typoscriptObjectPath' => 'tt_content.list.20.news_pi1', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/Standard_action_list_3b3429c51591614f6c3b272182dacddb67509f3f.php line 161
$array8 = array (
);$arguments4['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array8);
$arguments4['table'] = 'tt_content';
$renderChildrenClosure5 = ($arguments4['data'] !== null) ? function() use ($arguments4) { return $arguments4['data']; } : $renderChildrenClosure5;
$output3 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments4, $renderChildrenClosure5, $renderingContext);

$output3 .= '
  ';
return $output3;
at Standard_action_list_3b3429c51591614f6c3b272182dacddb67509f3f->{closure}()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/Standard_action_list_3b3429c51591614f6c3b272182dacddb67509f3f.php line 181
  ';
return $output9;
};

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

$output0 .= '

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

$output410 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments438, $renderChildrenClosure439, $renderingContext);

$output410 .= '
       ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_f427a3d4bd682eca4a81ab2e3b72b7cfa324309e->{closure}()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 136
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            } else {
                if ($conditionClosures[$elseNodeIndex]()) {
                    return $elseNodeClosure();
                }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 82
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
        } elseif (array_key_exists('else', $arguments)) {
            return $arguments['else'];
        }
        return '';
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => false, '__thenClosure' => object(Closure), '__elseClosures' => array(object(Closure))), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/layout_Default_html_f427a3d4bd682eca4a81ab2e3b72b7cfa324309e.php line 3185
  ';
return $output410;
};

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

$output0 .= '


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

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 358
     * @return string
     */
    protected function renderFluidView()
    {
        return $this->view->render();
    }

    /**
     * Apply standard wrap to content
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->renderFluidView()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/FluidTemplateContentObject.php line 108

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

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

        $this->view = $parentView;
        return $content;
at TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject->render(array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:fluidfoundationtheme/Resources/Private/Templates/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:fluidfoundationtheme/Resources/Private/Partials/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:fluidfoundationtheme/Resources/Private/Layouts/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\FluidTemplateContentObject), array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:fluidfoundationtheme/Resources/Private/Templates/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:fluidfoundationtheme/Resources/Private/Partials/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:fluidfoundationtheme/Resources/Private/Layouts/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:fluidfoundationtheme/Resources/Private/Templates/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:fluidfoundationtheme/Resources/Private/Partials/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:fluidfoundationtheme/Resources/Private/Layouts/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'lib.contentElement')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('FLUIDTEMPLATE', array('templateName' => 'List', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:fluidfoundationtheme/Resources/Private/Templates/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:fluidfoundationtheme/Resources/Private/Partials/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:fluidfoundationtheme/Resources/Private/Layouts/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0'))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'list')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/CaseContentObject.php line 47
        // If no "default" property is available, then an empty string is returned
        if ($key === 'default' && !isset($conf['default'])) {
            $theValue = '';
        } else {
            $theValue = $this->cObj->cObjGetSingle($conf[$key], $conf[$key . '.'] ?? [], $key);
        }
        if (isset($conf['stdWrap.'])) {
            $theValue = $this->cObj->stdWrap($theValue, $conf['stdWrap.']);
        }
at TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render(array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'q3ianalytics_renderer' => '< lib.contentElement', 'q3ianalytics_renderer.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer')), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu')), 'fluidfoundationtheme_accordion' => '< lib.contentElement', 'fluidfoundationtheme_accordion.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Accordion')), 'fluidfoundationtheme_advertisement' => '< lib.contentElement', 'fluidfoundationtheme_advertisement.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Advertisement')), 'fluidfoundationtheme_carousel' => '< lib.contentElement', 'fluidfoundationtheme_carousel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Carousel')), 'fluidfoundationtheme_counter' => '< lib.contentElement', 'fluidfoundationtheme_counter.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Counter')), 'fluidfoundationtheme_fourcolumn' => '< lib.contentElement', 'fluidfoundationtheme_fourcolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Fourcolumn')), 'fluidfoundationtheme_group' => '< lib.contentElement', 'fluidfoundationtheme_group.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Group')), 'fluidfoundationtheme_isotope' => '< lib.contentElement', 'fluidfoundationtheme_isotope.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Isotope')), 'fluidfoundationtheme_pagedcontent' => '< lib.contentElement', 'fluidfoundationtheme_pagedcontent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pagedcontent')), 'fluidfoundationtheme_pageheader' => '< lib.contentElement', 'fluidfoundationtheme_pageheader.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pageheader')), 'fluidfoundationtheme_panel' => '< lib.contentElement', 'fluidfoundationtheme_panel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Panel')), 'fluidfoundationtheme_pattern' => '< lib.contentElement', 'fluidfoundationtheme_pattern.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pattern')), 'fluidfoundationtheme_progressbar' => '< lib.contentElement', 'fluidfoundationtheme_progressbar.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Progressbar')), 'fluidfoundationtheme_row' => '< lib.contentElement', 'fluidfoundationtheme_row.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Row')), 'fluidfoundationtheme_section' => '< lib.contentElement', 'fluidfoundationtheme_section.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Section')), 'fluidfoundationtheme_social' => '< lib.contentElement', 'fluidfoundationtheme_social.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Social')), 'fluidfoundationtheme_tabs' => '< lib.contentElement', 'fluidfoundationtheme_tabs.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Tabs')), 'fluidfoundationtheme_themen' => '< lib.contentElement', 'fluidfoundationtheme_themen.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Themen')), 'fluidfoundationtheme_threecolumn' => '< lib.contentElement', 'fluidfoundationtheme_threecolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Threecolumn')), 'fluidfoundationtheme_timeline' => '< lib.contentElement', 'fluidfoundationtheme_timeline.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Timeline')), 'fluidfoundationtheme_twocolumn' => '< lib.contentElement', 'fluidfoundationtheme_twocolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Twocolumn')), 'menu_sitemap2' => '< tt_content.menu_sitemap', 'menu_sitemap2.' => array('templateName' => 'MenuSitemap2')))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\CaseContentObject), array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'q3ianalytics_renderer' => '< lib.contentElement', 'q3ianalytics_renderer.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer')), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu')), 'fluidfoundationtheme_accordion' => '< lib.contentElement', 'fluidfoundationtheme_accordion.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Accordion')), 'fluidfoundationtheme_advertisement' => '< lib.contentElement', 'fluidfoundationtheme_advertisement.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Advertisement')), 'fluidfoundationtheme_carousel' => '< lib.contentElement', 'fluidfoundationtheme_carousel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Carousel')), 'fluidfoundationtheme_counter' => '< lib.contentElement', 'fluidfoundationtheme_counter.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Counter')), 'fluidfoundationtheme_fourcolumn' => '< lib.contentElement', 'fluidfoundationtheme_fourcolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Fourcolumn')), 'fluidfoundationtheme_group' => '< lib.contentElement', 'fluidfoundationtheme_group.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Group')), 'fluidfoundationtheme_isotope' => '< lib.contentElement', 'fluidfoundationtheme_isotope.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Isotope')), 'fluidfoundationtheme_pagedcontent' => '< lib.contentElement', 'fluidfoundationtheme_pagedcontent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pagedcontent')), 'fluidfoundationtheme_pageheader' => '< lib.contentElement', 'fluidfoundationtheme_pageheader.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pageheader')), 'fluidfoundationtheme_panel' => '< lib.contentElement', 'fluidfoundationtheme_panel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Panel')), 'fluidfoundationtheme_pattern' => '< lib.contentElement', 'fluidfoundationtheme_pattern.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pattern')), 'fluidfoundationtheme_progressbar' => '< lib.contentElement', 'fluidfoundationtheme_progressbar.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Progressbar')), 'fluidfoundationtheme_row' => '< lib.contentElement', 'fluidfoundationtheme_row.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Row')), 'fluidfoundationtheme_section' => '< lib.contentElement', 'fluidfoundationtheme_section.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Section')), 'fluidfoundationtheme_social' => '< lib.contentElement', 'fluidfoundationtheme_social.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Social')), 'fluidfoundationtheme_tabs' => '< lib.contentElement', 'fluidfoundationtheme_tabs.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Tabs')), 'fluidfoundationtheme_themen' => '< lib.contentElement', 'fluidfoundationtheme_themen.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Themen')), 'fluidfoundationtheme_threecolumn' => '< lib.contentElement', 'fluidfoundationtheme_threecolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Threecolumn')), 'fluidfoundationtheme_timeline' => '< lib.contentElement', 'fluidfoundationtheme_timeline.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Timeline')), 'fluidfoundationtheme_twocolumn' => '< lib.contentElement', 'fluidfoundationtheme_twocolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Twocolumn')), 'menu_sitemap2' => '< tt_content.menu_sitemap', 'menu_sitemap2.' => array('templateName' => 'MenuSitemap2')))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'q3ianalytics_renderer' => '< lib.contentElement', 'q3ianalytics_renderer.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer')), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu')), 'fluidfoundationtheme_accordion' => '< lib.contentElement', 'fluidfoundationtheme_accordion.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Accordion')), 'fluidfoundationtheme_advertisement' => '< lib.contentElement', 'fluidfoundationtheme_advertisement.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Advertisement')), 'fluidfoundationtheme_carousel' => '< lib.contentElement', 'fluidfoundationtheme_carousel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Carousel')), 'fluidfoundationtheme_counter' => '< lib.contentElement', 'fluidfoundationtheme_counter.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Counter')), 'fluidfoundationtheme_fourcolumn' => '< lib.contentElement', 'fluidfoundationtheme_fourcolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Fourcolumn')), 'fluidfoundationtheme_group' => '< lib.contentElement', 'fluidfoundationtheme_group.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Group')), 'fluidfoundationtheme_isotope' => '< lib.contentElement', 'fluidfoundationtheme_isotope.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Isotope')), 'fluidfoundationtheme_pagedcontent' => '< lib.contentElement', 'fluidfoundationtheme_pagedcontent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pagedcontent')), 'fluidfoundationtheme_pageheader' => '< lib.contentElement', 'fluidfoundationtheme_pageheader.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pageheader')), 'fluidfoundationtheme_panel' => '< lib.contentElement', 'fluidfoundationtheme_panel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Panel')), 'fluidfoundationtheme_pattern' => '< lib.contentElement', 'fluidfoundationtheme_pattern.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pattern')), 'fluidfoundationtheme_progressbar' => '< lib.contentElement', 'fluidfoundationtheme_progressbar.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Progressbar')), 'fluidfoundationtheme_row' => '< lib.contentElement', 'fluidfoundationtheme_row.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Row')), 'fluidfoundationtheme_section' => '< lib.contentElement', 'fluidfoundationtheme_section.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Section')), 'fluidfoundationtheme_social' => '< lib.contentElement', 'fluidfoundationtheme_social.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Social')), 'fluidfoundationtheme_tabs' => '< lib.contentElement', 'fluidfoundationtheme_tabs.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Tabs')), 'fluidfoundationtheme_themen' => '< lib.contentElement', 'fluidfoundationtheme_themen.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Themen')), 'fluidfoundationtheme_threecolumn' => '< lib.contentElement', 'fluidfoundationtheme_threecolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Threecolumn')), 'fluidfoundationtheme_timeline' => '< lib.contentElement', 'fluidfoundationtheme_timeline.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Timeline')), 'fluidfoundationtheme_twocolumn' => '< lib.contentElement', 'fluidfoundationtheme_twocolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Twocolumn')), 'menu_sitemap2' => '< tt_content.menu_sitemap', 'menu_sitemap2.' => array('templateName' => 'MenuSitemap2')), 'tt_content')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 724
                [$name, $conf] = $cF->getVal($key, $this->getTypoScriptFrontendController()->tmpl->setup);
                $conf = array_replace_recursive(is_array($conf) ? $conf : [], $confOverride);
                // Getting the cObject
                $timeTracker->incStackPointer();
                $content .= $this->cObjGetSingle($name, $conf, $key);
                $timeTracker->decStackPointer();
            } else {
                $hooked = false;
                // Application defined cObjects
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CASE', array('key.' => array('field' => 'CType'), 'default' => 'TEXT', 'default.' => array('field' => 'CType', 'htmlSpecialChars' => '1', 'wrap' => '<p style="background-color: yellow; padding: 0.5em 1em;"><strong>ERROR:</strong> Content Element with uid "{field:uid}" and type "|" has no rendering definition!</p>', 'wrap.' => array('insertData' => '1')), 'login' => '< lib.contentElement', 'login.' => array('templateName' => 'Generic', 'variables.' => array('content' => '< plugin.tx_felogin_pi1')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1'))), 'bullets' => '< lib.contentElement', 'bullets.' => array('templateName' => 'Bullets', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\SplitProcessor', '10.' => array('if.' => array('value' => '2', 'isLessThan.' => array('field' => 'bullets_type')), 'fieldName' => 'bodytext', 'removeEmptyEntries' => '1', 'as' => 'bullets'), 'TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '20.' => array('fieldName' => 'bodytext', 'if.' => array('value' => '2', 'equals.' => array('field' => 'bullets_type')), 'fieldDelimiter' => '|', 'as' => 'bullets')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext [bullets_type]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.bullets')))), 'div' => '< lib.contentElement', 'div.' => array('templateName' => 'Div'), 'header' => '< lib.contentElement', 'header.' => array('templateName' => 'Header', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout|header_link], subheader, date', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.header')))), 'html' => '< lib.contentElement', 'html.' => array('templateName' => 'Html', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'image' => '< lib.contentElement', 'image.' => array('templateName' => 'Image', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content : image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.image')))), 'list' => '< lib.contentElement', 'list.' => array('templateName' => 'List', 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], list_type, layout, pages [recursive]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.list'))), '20.' => array('xmlimportjobware_joblist' => 'USER', 'xmlimportjobware_joblist.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'XmlimportJobware', 'pluginName' => 'Joblist'), 'rxshariff_shariff' => 'USER', 'rxshariff_shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'femanager_pi1' => 'USER', 'femanager_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Femanager', 'pluginName' => 'Pi1'), 'fluidpages_page' => 'USER', 'fluidpages_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'pluginName' => 'Page'), 'waconcookiemanagement_cookiefreigabe' => 'USER', 'waconcookiemanagement_cookiefreigabe.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Cookiefreigabe'), 'waconcookiemanagement_script' => 'USER', 'waconcookiemanagement_script.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'WaconCookieManagement', 'pluginName' => 'Script'), 'q3ianalytics_wcmscript' => 'USER', 'q3ianalytics_wcmscript.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'WCMScript'), 'fetchurl_pi1' => 'USER', 'fetchurl_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fetchurl', 'pluginName' => 'Pi1'), 'formdoubleoptin_doubleoptin' => 'USER', 'formdoubleoptin_doubleoptin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'FormDoubleOptIn', 'pluginName' => 'DoubleOptIn'), 'q3ibooks_books' => 'USER', 'q3ibooks_books.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iBooks', 'pluginName' => 'Books'), 'referenzen_referenzenmap' => 'USER', 'referenzen_referenzenmap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Referenzen', 'pluginName' => 'Referenzenmap'), 'simplepoll_polllisting' => 'USER', 'simplepoll_polllisting.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Simplepoll', 'pluginName' => 'Polllisting'), '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'), 'ttaddress_listview' => 'USER', 'ttaddress_listview.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'TtAddress', 'pluginName' => 'ListView'))), 'shortcut' => '< lib.contentElement', 'shortcut.' => array('templateName' => 'Shortcut', 'variables.' => array('shortcuts' => 'RECORDS', 'shortcuts.' => array('source.' => array('field' => 'records'), 'tables' => 'tt_content,tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], records', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.shortcut'))), '20.' => array('tables' => 'tx_news_domain_model_news', 'conf.' => array('tx_news_domain_model_news' => 'USER', 'tx_news_domain_model_news.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1', 'vendorName' => 'GeorgRinger', 'switchableControllerActions.' => array('News.' => array('detail')), 'settings' => '< plugin.tx_news.settings', 'settings.' => array('singleNews.' => array('field' => 'uid'), 'useStdWrap' => 'singleNews', 'insertRecord' => '1', 'isShortcut' => '1'))))), 'table' => '< lib.contentElement', 'table.' => array('templateName' => 'Table', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\CommaSeparatedValueProcessor', '10.' => array('fieldName' => 'bodytext', 'fieldDelimiter.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_delimiter'))), 'fieldEnclosure.' => array('char.' => array('cObject' => 'TEXT', 'cObject.' => array('field' => 'table_enclosure')), 'if.' => array('value' => '0', 'equals.' => array('field' => 'table_enclosure'), 'negate' => '1')), 'maximumColumns.' => array('field' => 'cols'), 'as' => 'table')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, [table_caption|cols|table_header_position|table_tfoot]', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.table')))), 'text' => '< lib.contentElement', 'text.' => array('templateName' => 'Text', 'stdWrap.' => array('editIcons' => 'tt_content: bodytext', 'editIcons.' => array('beforeLastTag' => '1', 'iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.html')))), 'textmedia' => '< lib.contentElement', 'textmedia.' => array('templateName' => 'Textmedia', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'assets')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, assets [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textmedia')))), 'textpic' => '< lib.contentElement', 'textpic.' => array('templateName' => 'Textpic', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\GalleryProcessor', '20.' => array('maxGalleryWidth' => '600', 'maxGalleryWidthInText' => '300', 'columnSpacing' => '10', 'borderWidth' => '2', 'borderPadding' => '0')), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], bodytext, image [imageorient|imagewidth|imageheight], [imagecols|imageborder], image_zoom', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.textpic')))), 'uploads' => '< lib.contentElement', 'uploads.' => array('templateName' => 'Uploads', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'), 'collections.' => array('field' => 'file_collections'), 'sorting.' => array('field' => 'filelink_sorting', 'direction.' => array('field' => 'filelink_sorting_direction')))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], media, file_collections, filelink_sorting, [filelink_size|uploads_description|uploads_type]', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.uploads')))), 'menu_abstract' => '< lib.contentElement', 'menu_abstract.' => array('templateName' => 'MenuAbstract', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_content' => '< lib.contentElement', 'menu_categorized_content.' => array('templateName' => 'MenuCategorizedContent', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '10.' => array('table' => 'tt_content', 'selectFields' => 'tt_content.*', 'groupBy' => 'uid', 'pidInList.' => array('data' => 'leveluid : 0'), 'recursive' => '99', 'join.' => array('data' => 'field:selected_categories', 'wrap' => 'sys_category_record_mm ON uid = sys_category_record_mm.uid_foreign AND sys_category_record_mm.uid_local IN(|)'), 'where.' => array('data' => 'field:category_field', 'wrap' => 'tablenames=\'tt_content\' and fieldname=\'|\''), 'orderBy' => 'tt_content.sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_categorized_pages' => '< lib.contentElement', 'menu_categorized_pages.' => array('templateName' => 'MenuCategorizedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'categories', 'special.' => array('value.' => array('field' => 'selected_categories'), 'relation.' => array('field' => 'category_field'), 'sorting' => 'title', 'order' => 'asc'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], selected_categories, category_field', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_pages' => '< lib.contentElement', 'menu_pages.' => array('templateName' => 'MenuPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'list', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_subpages' => '< lib.contentElement', 'menu_subpages.' => array('templateName' => 'MenuSubpages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section' => '< lib.contentElement', 'menu_section.' => array('templateName' => 'MenuSection', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('includeNotInMenu.' => array('override' => '1', 'override.' => array('if.' => array('isFalse.' => array('field' => 'pages')))), 'special' => 'list', 'special.' => array('value.' => array('field' => 'pages', 'override.' => array('data' => 'page:uid', 'if.' => array('isFalse.' => array('field' => 'pages')), 'override.' => array('data' => 'page:content_from_pid', 'if.' => array('isTrue.' => array('data' => 'page:content_from_pid')))))), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'as' => 'content', 'where' => 'sectionIndex = 1', 'orderBy' => 'sorting', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_section_pages' => '< lib.contentElement', 'menu_section_pages.' => array('templateName' => 'MenuSectionPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media')), 'TYPO3\\CMS\\Frontend\\DataProcessing\\DatabaseQueryProcessor', '20.' => array('table' => 'tt_content', 'pidInList.' => array('field' => 'uid'), 'orderBy' => 'sorting', 'as' => 'content', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'image'))))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_recently_updated' => '< lib.contentElement', 'menu_recently_updated.' => array('templateName' => 'MenuRecentlyUpdated', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'updated', 'special.' => array('value.' => array('field' => 'pages'), 'maxAge' => '3600*24*7', 'excludeNoSearchPages' => '1'), 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_related_pages' => '< lib.contentElement', 'menu_related_pages.' => array('templateName' => 'MenuRelatedPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'keywords', 'special.' => array('value.' => array('field' => 'pages'), 'excludeNoSearchPages' => '1'), 'alternativeSortingField' => 'title', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap' => '< lib.contentElement', 'menu_sitemap.' => array('templateName' => 'MenuSitemap', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'menu_sitemap_pages' => '< lib.contentElement', 'menu_sitemap_pages.' => array('templateName' => 'MenuSitemapPages', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\MenuProcessor', '10.' => array('special' => 'directory', 'special.' => array('value.' => array('field' => 'pages')), 'levels' => '7', 'dataProcessing.' => array('TYPO3\\CMS\\Frontend\\DataProcessing\\FilesProcessor', '10.' => array('references.' => array('fieldName' => 'media'))))), 'stdWrap.' => array('editIcons' => 'tt_content: header [header_layout], pages', 'editIcons.' => array('iconTitle.' => array('data' => 'LLL:EXT:fluid_styled_content/Resources/Private/Language/FrontendEditing.xlf:editIcon.menu')))), 'form_formframework' => '< lib.contentElement', 'form_formframework.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Form', 'pluginName' => 'Formframework')), 'q3ianalytics_renderer' => '< lib.contentElement', 'q3ianalytics_renderer.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer')), 'srlanguagemenu_languagemenu' => '< lib.contentElement', 'srlanguagemenu_languagemenu.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'SrLanguageMenu', 'pluginName' => 'LanguageMenu')), 'fluidfoundationtheme_accordion' => '< lib.contentElement', 'fluidfoundationtheme_accordion.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Accordion')), 'fluidfoundationtheme_advertisement' => '< lib.contentElement', 'fluidfoundationtheme_advertisement.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Advertisement')), 'fluidfoundationtheme_carousel' => '< lib.contentElement', 'fluidfoundationtheme_carousel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Carousel')), 'fluidfoundationtheme_counter' => '< lib.contentElement', 'fluidfoundationtheme_counter.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Counter')), 'fluidfoundationtheme_fourcolumn' => '< lib.contentElement', 'fluidfoundationtheme_fourcolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Fourcolumn')), 'fluidfoundationtheme_group' => '< lib.contentElement', 'fluidfoundationtheme_group.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Group')), 'fluidfoundationtheme_isotope' => '< lib.contentElement', 'fluidfoundationtheme_isotope.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Isotope')), 'fluidfoundationtheme_pagedcontent' => '< lib.contentElement', 'fluidfoundationtheme_pagedcontent.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pagedcontent')), 'fluidfoundationtheme_pageheader' => '< lib.contentElement', 'fluidfoundationtheme_pageheader.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pageheader')), 'fluidfoundationtheme_panel' => '< lib.contentElement', 'fluidfoundationtheme_panel.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Panel')), 'fluidfoundationtheme_pattern' => '< lib.contentElement', 'fluidfoundationtheme_pattern.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Pattern')), 'fluidfoundationtheme_progressbar' => '< lib.contentElement', 'fluidfoundationtheme_progressbar.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Progressbar')), 'fluidfoundationtheme_row' => '< lib.contentElement', 'fluidfoundationtheme_row.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Row')), 'fluidfoundationtheme_section' => '< lib.contentElement', 'fluidfoundationtheme_section.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Section')), 'fluidfoundationtheme_social' => '< lib.contentElement', 'fluidfoundationtheme_social.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Social')), 'fluidfoundationtheme_tabs' => '< lib.contentElement', 'fluidfoundationtheme_tabs.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Tabs')), 'fluidfoundationtheme_themen' => '< lib.contentElement', 'fluidfoundationtheme_themen.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Themen')), 'fluidfoundationtheme_threecolumn' => '< lib.contentElement', 'fluidfoundationtheme_threecolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Threecolumn')), 'fluidfoundationtheme_timeline' => '< lib.contentElement', 'fluidfoundationtheme_timeline.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Timeline')), 'fluidfoundationtheme_twocolumn' => '< lib.contentElement', 'fluidfoundationtheme_twocolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidfoundationtheme', 'pluginName' => 'Twocolumn')), 'menu_sitemap2' => '< tt_content.menu_sitemap', 'menu_sitemap2.' => array('templateName' => 'MenuSitemap2')), 'renderObj')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentContentObject.php line 95
                        $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                        $frontendController->currentRecord = $conf['table'] . ':' . $row['uid'];
                        $this->cObj->lastChanged($row['tstamp']);
                        $cObj->start($row, $conf['table']);
                        $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                        $cobjValue .= $tmpValue;
                    }
                }
            }
at TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render(array('table' => 'tt_content', 'select.' => array('pidInList.' => array('field' => 'uid'), 'where' => 'colpos = {field:colPos}', 'where.' => array('insertData' => '1'), 'languageField' => 'sys_language_uid', 'orderBy' => 'sorting'), 'renderObj' => '< tt_content'))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\ContentContentObject), array('table' => 'tt_content', 'select.' => array('pidInList.' => array('field' => 'uid'), 'where' => 'colpos = {field:colPos}', 'where.' => array('insertData' => '1'), 'languageField' => 'sys_language_uid', 'orderBy' => 'sorting'), 'renderObj' => '< tt_content'))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('CONTENT', array('table' => 'tt_content', 'select.' => array('pidInList.' => array('field' => 'uid'), 'where' => 'colpos = {field:colPos}', 'where.' => array('insertData' => '1'), 'languageField' => 'sys_language_uid', 'orderBy' => 'sorting'), 'renderObj' => '< tt_content'), 'lib.vhsContentFallbackSupport')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 193
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(Q3i\Q3iBase\Core\Frontend\ContentObjectRenderer), array('solr_extbase_bootstrap' => 'USER', 'solr_extbase_bootstrap.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'ApacheSolrForTypo3', 'extensionName' => 'Solr', 'view.' => array('pluginNamespace' => 'tx_solr', 'templateRootPaths.' => array('EXT:solr/Resources/Private/Templates/', 'typo3conf/templates/_shared/ext/solr/Templates/'), 'partialRootPaths.' => array('EXT:solr/Resources/Private/Partials/', 'typo3conf/templates/_shared/ext/solr/Partials/'), 'layoutRootPaths.' => array('EXT:solr/Resources/Private/Layouts/', 'typo3conf/templates/_shared/ext/solr/Layouts/'), 'templateFiles.' => array()), 'settings' => '< plugin.tx_solr.settings', 'persistence' => '< plugin.tx_solr.persistence', 'view' => '< plugin.tx_solr.view'), 'tx_q3ianalytics_widgets' => 'COA', 'tx_q3ianalytics_widgets.' => array('TEXT', '5.' => array('value' => '<!-- BEGIN: analytics tracker integration by EXT:q3i_analytics -->'), 'USER', '10.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderGa')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000'))), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderPiwik')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000'))), 'USER', '30.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderEtracker')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000'))), 'USER', '40.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderGtagManager')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000'))), 'USER', '50.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderFacebookPixel')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000'))), 'TEXT', '100.' => array('value' => '<!-- END: analytics tracker integration by EXT:q3i_analytics -->')), 'socialgdpr' => 'FLUIDTEMPLATE', 'socialgdpr.' => array('layoutRootPaths.' => array('EXT:social_gdpr/Resources/Private/Layouts/', ''), 'partialRootPaths.' => array('EXT:social_gdpr/Resources/Private/Partials/', ''), 'templateRootPaths.' => array('EXT:social_gdpr/Resources/Private/Templates/', ''), 'templateName' => 'TEXT', 'templateName.' => array('field' => 'templateName'), 'settings.' => array('privacyPid' => '0')), 'contentElement' => 'FLUIDTEMPLATE', 'contentElement.' => array('templateName' => 'Default', 'templateRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Templates/', 'EXT:fluidfoundationtheme/Resources/Private/Templates/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Templates/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:fluidfoundationtheme/Resources/Private/Partials/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Partials/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:fluidfoundationtheme/Resources/Private/Layouts/fluid_styled_content/', 'typo3conf/templates/_shared/FluidContents/Layouts/'), 'settings.' => array('defaultHeaderType' => '1', 'media.' => array('lazyLoading' => 'lazy', 'popup.' => array('bodyTag' => '<body style="margin:0; background:#fff;">', 'wrap' => '<a href="javascript:close();"> | </a>', 'width' => '800m', 'height' => '600m', 'crop.' => array('data' => 'file:current:crop'), 'JSwindow' => '1', 'JSwindow.' => array('newWindow' => '0', 'if.' => array('isFalse' => '0')), 'directImageLink' => '0', 'linkParams.' => array('ATagParams.' => array('dataWrap' => 'class="lightbox" rel="lightbox[{field:uid}]"'))), 'additionalConfig.' => array('no-cookie' => '1', 'api' => '0')))), 'parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'), 'parseFunc_RTE.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2'), 'encapsLines.' => array('encapsTagList' => 'p,pre,h1,h2,h3,h4,h5,h6,hr,dt', 'remapTag.' => array('DIV' => 'P'), 'nonWrappedTag' => 'P', 'innerStdWrap_all.' => array('ifBlank' => '&nbsp;'))), 'htmlSanitize' => '1', 'externalBlocks' => 'article, aside, blockquote, div, dd, dl, footer, header, nav, ol, section, table, ul, pre, figure', 'externalBlocks.' => array('ol.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'ul.' => array('stripNL' => '1', 'stdWrap.' => array('parseFunc' => '< lib.parseFunc')), 'pre.' => array('stdWrap.' => array('parseFunc.' => array('makelinks' => '1', 'makelinks.' => array('http.' => array('keep' => 'path', 'extTarget' => '_blank'), 'mailto.' => array('keep' => 'path')), 'tags.' => array('a' => 'TEXT', 'a.' => array('current' => '1', 'typolink.' => array('parameter.' => array('data' => 'parameters:href'), 'title.' => array('data' => 'parameters:title'), 'ATagParams.' => array('data' => 'parameters:allParams'), 'target.' => array('ifEmpty.' => array('data' => 'parameters:target')), 'extTarget.' => array('ifEmpty.' => array('override' => '_blank'), 'override.' => array('data' => 'parameters:target'))))), 'allowTags' => 'a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var', 'denyTags' => '*', 'sword' => '<span class="ce-sword">|</span>', 'constants' => '1', 'nonTypoTagStdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('keepNonMatchedTags' => '1', 'htmlSpecialChars' => '2')), 'htmlSanitize' => '1'))), 'table.' => array('stripNL' => '1', 'stdWrap.' => array('HTMLparser' => '1', 'HTMLparser.' => array('tags.' => array('table.' => array('fixAttrib.' => array('class.' => array('default' => 'contenttable', 'always' => '1', 'list' => 'contenttable')))), 'keepNonMatchedTags' => '1')), 'HTMLtableCells' => '1', 'HTMLtableCells.' => array('default.' => array('stdWrap.' => array('parseFunc' => '< lib.parseFunc_RTE', 'parseFunc.' => array('nonTypoTagStdWrap.' => array('encapsLines.' => array('nonWrappedTag' => '', 'innerStdWrap_all.' => array('ifBlank' => '')))))), 'addChr10BetweenParagraphs' => '1')), 'div.' => array('stripNL' => '1', 'callRecursive' => '1'), 'article.' => array('stripNL' => '1', 'callRecursive' => '1'), 'aside.' => array('stripNL' => '1', 'callRecursive' => '1'), 'figure.' => array('stripNL' => '1', 'callRecursive' => '1'), 'blockquote.' => array('stripNL' => '1', 'callRecursive' => '1'), 'footer.' => array('stripNL' => '1', 'callRecursive' => '1'), 'header.' => array('stripNL' => '1', 'callRecursive' => '1'), 'nav.' => array('stripNL' => '1', 'callRecursive' => '1'), 'section.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dl.' => array('stripNL' => '1', 'callRecursive' => '1'), 'dd.' => array('stripNL' => '1', 'callRecursive' => '1'))), 'tx_form.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'tx_news.' => array('contentElementRendering' => 'RECORDS', 'contentElementRendering.' => array('tables' => 'tt_content', 'source.' => array('current' => '1'), 'dontCheckPid' => '1')), 'shariff' => 'USER', 'shariff.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'RxShariff', 'pluginName' => 'Shariff', 'settings.' => array('enableBackend' => '1', 'data.' => array('lang' => 'auto', 'mail-body' => '', 'mail-subject' => 'Shariff subject', 'mail-url' => 'mailto:', 'media-url' => 'null', 'orientation' => 'horizontal', 'referrer-track' => 'null', 'services' => 'twitter,googleplus,facebook,linkedin,xing,mail,info', 'theme' => 'grey', 'twitter-via' => 'null', 'info-url' => 'https://www.smart-production.de'))), 'yoastSEO.' => array('robotInstructions' => 'COA', 'robotInstructions.' => array('TEXT', '10.' => array('value' => 'noindex', 'if.' => array('equals.' => array('field' => 'no_index'), 'value' => '1')), 'TEXT', '11.' => array('value' => 'index', 'if.' => array('equals.' => array('field' => 'no_index'), 'value' => '0'), 'override' => 'noindex', 'override.' => array('if.' => array('isFalse' => '1'))), 'TEXT', '20.' => array('value' => ','), 'TEXT', '30.' => array('value' => 'nofollow', 'if.' => array('equals.' => array('field' => 'no_follow'), 'value' => '1')), 'TEXT', '31.' => array('value' => 'follow', 'if.' => array('equals.' => array('field' => 'no_follow'), 'value' => '0'), 'override' => 'nofollow', 'override.' => array('if.' => array('isFalse' => '1')))), 'currentURL' => 'TEXT', 'currentURL.' => array('stdWrap.' => array('typolink.' => array('parameter' => '#', 'returnLast' => 'url', 'forceAbsoluteUrl' => '1', 'addQueryString' => '1', 'addQueryString.' => array('exclude' => 'type,no_cache'), 'useCacheHash' => '1')), 'htmlSpecialChars' => '1'), 'pageTitleComplete' => 'COA', 'pageTitleComplete.' => array('TEXT', '10.' => array('value' => '', 'stdWrap.' => array('noTrimWrap' => '|| |')), '< lib.yoastSEO.pageTitle', 'TEXT', '30.' => array('value' => '', 'stdWrap.' => array('noTrimWrap' => '| ||')), 'stdWrap.' => array('trim' => '1')), 'pageTitlePrepend' => 'COA', 'pageTitlePrepend.' => array('TEXT', '10.' => array('value' => '', 'stdWrap.' => array('noTrimWrap' => '|| |'))), 'pageTitleAppend' => 'COA', 'pageTitleAppend.' => array('TEXT', '10.' => array('value' => '', 'stdWrap.' => array('noTrimWrap' => '| ||'))), 'locale' => 'TEXT', 'locale.' => array('data' => 'TSFE:config|config|locale_all', 'htmlSpecialChars' => '1'), 'slug' => 'TEXT', 'slug.' => array('stdWrap.' => array('typolink.' => array('parameter' => '#', 'returnLast' => 'url', 'forceAbsoluteUrl' => '0', 'addQueryString' => '1', 'addQueryString.' => array('exclude' => 'type,no_cache'), 'useCacheHash' => '1')), 'htmlSpecialChars' => '1'), 'twitter.' => array('site' => 'TEXT', 'site.' => array('value' => ''), 'card' => 'TEXT', 'card.' => array('value' => 'summary'), 'title' => '< lib.yoastSEO.pageTitle', 'title.' => array('field' => 'twitter_title // seo_title // title'), 'description' => 'TEXT', 'description.' => array('field' => 'twitter_description // description'), 'images' => 'FILES', 'images.' => array('references.' => array('table' => 'pages', 'uid.' => array('data' => 'page:uid'), 'fieldName' => 'twitter_image'), 'maxItems' => '1', 'renderObj' => 'TEXT', 'renderObj.' => array('typolink.' => array('parameter.' => array('stdWrap.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'file:current:uid'), 'treatIdAsReference' => '1', 'cropVariant' => 'social', 'maxW' => '1200', 'maxH' => '628')))), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1')))), 'pageTitle' => 'RECORDS', 'pageTitle.' => array('tables' => 'tx_news_domain_model_news', 'dontCheckPid' => '1', 'source' => '{GP:tx_news_pi1|news},{GP:tx_news_pi1|news_preview}', 'source.' => array('insertData' => '1'), 'conf.' => array('tx_news_domain_model_news' => 'TEXT', 'tx_news_domain_model_news.' => array('field' => 'alternative_title', 'ifEmpty.' => array('field' => 'title')))), 'description' => 'RECORDS', 'description.' => array('tables' => 'tx_news_domain_model_news', 'source' => '{GP:tx_news_pi1|news},{GP:tx_news_pi1|news_preview}', 'source.' => array('insertData' => '1'), 'conf.' => array('tx_news_domain_model_news' => 'TEXT', 'tx_news_domain_model_news.' => array('field' => 'description'))), 'author' => 'RECORDS', 'author.' => array('tables' => 'tx_news_domain_model_news', 'source' => '{GP:tx_news_pi1|news},{GP:tx_news_pi1|news_preview}', 'source.' => array('insertData' => '1'), 'conf.' => array('tx_news_domain_model_news' => 'TEXT', 'tx_news_domain_model_news.' => array('field' => 'author', 'wrap' => '|', 'wrap.' => array('override' => '|VDE VERLAG GMBH', 'override.' => array('if.' => array('isFalse.' => array('field' => 'author')))))))), 'newsBreadcrumb' => 'RECORDS', 'newsBreadcrumb.' => array('if.' => array('isTrue.' => array('data' => 'GP:tx_news_pi1|news')), 'dontCheckPid' => '1', 'tables' => 'tx_news_domain_model_news', 'source.' => array('data' => 'GP:tx_news_pi1|news', 'intval' => '1'), 'conf.' => array('tx_news_domain_model_news' => 'TEXT', 'tx_news_domain_model_news.' => array('field' => 'title', 'htmlSpecialChars' => '1')), 'wrap' => '<li class="menu--top-subjects__item-wrap"><span class="menu--top-subjects__no-link">|</span></li>', 'wrap.' => array('if.' => array('isTrue.' => array('data' => 'GP:tx_news_pi1|news')))), 'categoryPath' => 'USER', 'categoryPath.' => array('userFunc' => 'Q3i\\T3Local\\UserFunc\\ContentTitle->newsCategoryPath'), 'solrBreadcrumb' => 'HMENU', 'solrBreadcrumb.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'TMENU', '1.' => array('noBlur' => '1', 'CUR' => '1', 'target' => '_self', 'NO.' => array('stdWrap.' => array('field' => 'nav_title // title'), 'linkWrap' => '||*|&nbsp;&#124;&nbsp;|*|', 'doNotLinkIt' => '1'), 'CUR.' => array('stdWrap.' => array('field' => 'nav_title // title'), 'linkWrap' => '||*|&nbsp;&#124;&nbsp;|*|', 'doNotLinkIt' => '1'))), 'breadcrumb' => 'COA', 'breadcrumb.' => array('HMENU', '10.' => array('special' => 'rootline', 'special.' => array('range' => '0|-1'), 'includeNotInMenu' => '1', 'TMENU', '1.' => array('noBlur' => '1', 'CUR' => '1', 'target' => '_self', 'wrap' => '<ul class="breadcrumb-class"> | </ul>', 'NO.' => array('stdWrap.' => array('field' => 'title'), 'ATagTitle.' => array('field' => 'nav_title // title'), 'linkWrap' => '|'), 'CUR.' => array('stdWrap.' => array('field' => 'title'), 'linkWrap' => '|', 'doNotLinkIt' => '1')))), 'copyright' => 'COA', 'copyright.' => array('TEXT', '40.' => array('data' => 'date:U', 'strftime' => '%Y', 'noTrimWrap' => '|<p class="small-pb0">&copy; | |'), 'TEXT', '41.' => array('value' => 'smart-production.de', 'wrap' => '|</p>')), 'userinfo' => 'COA_INT', 'userinfo.' => array('COA', '20.' => array('TEXT', '1.' => array('data' => 'TSFE:fe_user|user|first_name', 'required' => '1'), 'TEXT', '2.' => array('data' => 'TSFE:fe_user|user|last_name', 'wrap' => '&nbsp;|', 'required' => '1'), 'stdWrap.' => array('ifEmpty.' => array('data' => 'TSFE:fe_user|user|name'), 'wrap' => '|', 'required' => '1'))), 'username' => 'COA_INT', 'username.' => array('TEXT', '10.' => array('data' => 'TSFE:fe_user|user|name')), 'felogin' => 'COA_INT', 'felogin.' => array('FLUIDTEMPLATE', '20.' => array('layoutRootPaths.' => array('EXT:q3i_base/Resources/Private/Layouts/FeLogin/', 'typo3conf/templates/main/lib/FeLogin/Layouts/'), 'partialRootPaths.' => array('EXT:q3i_base/Resources/Private/Partials/FeLogin/', 'typo3conf/templates/main/lib/FeLogin/Partials/'), 'templateRootPaths.' => array('EXT:q3i_base/Resources/Private/Templates/FeLogin/', 'typo3conf/templates/main/lib/FeLogin/Templates/'), 'templateName' => 'LoginForm', 'settings.' => array('pidLogin' => '19', 'pidRegister' => '20', 'pidForgot' => '19', 'pidFeuserStorage' => '16')), 'TEXT', '40.' => array('wrap' => '<div class="login-block">|</div>', 'value' => 'Logout', 'typolink.' => array('parameter' => '19 _self', 'additionalParams' => '&logintype=logout', 'ATagParams' => 'class="btn btn__with-icon btn__icon-logout"'), 'if.' => array('isFalse.' => array('data' => 'TSFE:fe_user|user|username'), 'negate' => '1'))), 'userheader' => 'COA_INT', 'userheader.' => array('COA', '20.' => array('TEXT', '1.' => array('data' => 'TSFE:fe_user|user|first_name', 'required' => '1'), 'TEXT', '2.' => array('data' => 'TSFE:fe_user|user|last_name', 'wrap' => '&nbsp;|', 'required' => '1'), 'stdWrap.' => array('ifEmpty.' => array('data' => 'TSFE:fe_user|user|name'), 'wrap' => '|', 'required' => '1'))), 'footer' => 'CONTENT', 'footer.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '44', 'where' => 'colpos = 0', 'where.' => array('insertData' => '1'), 'languageField' => 'sys_language_uid'), 'renderObj' => '< tt_content'), 'footerLeft' => 'COA', 'footerLeft.' => array('TEXT', '41.' => array('value' => '&copy; VDE VERLAG GmbH', 'wrap' => '|', 'typolink.' => array('parameter' => 'https://www.vde-verlag.de _blank'))), 'footerRight' => 'COA', 'footerRight.' => array('HMENU', '40.' => array('special' => 'directory', 'special.' => array('value' => '87'), 'TMENU', '1.' => array('expAll' => '1', 'wrap' => '<nav><ul class="menu--bottommost">|</ul></nav>', 'NO.' => array('wrapItemAndSub' => '<li class="menu--bottommost__item-wrap">|</li>', 'ATagParams' => 'class="menu--bottommost__link"')))), 'languageMenu' => '< plugin.tx_srlanguagemenu.widgets.menu', 'logo' => 'COA', 'logo.' => array('CASE', '10.' => array('file' => 'typo3conf/templates/main/assets/img/q3i-logo.svg', 'altText.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('data' => 'levelfield:0,tx_tqseo_pagetitle_prefix'), 'TEXT', '20.' => array('data' => 'levelfield:0,title', 'noTrimWrap' => '| |'))), 'params' => 'class="logo"', 'stdWrap.' => array('innerWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '<img class="logo" src="|" alt="'), 'CASE', '20.' => array('key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'smart-production.de'), 'TEXT', '25.' => array('value' => 'smart-production.de'), 'TEXT', '4.' => array('value' => 'ew'), 'TEXT', '7.' => array('value' => 'open-automation'), 'TEXT', '8.' => array('value' => 'et')), 'TEXT', '21.' => array('value' => '"', 'noTrimWrap' => '|| |'), 'CASE', '25.' => array('key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'width="450" height="73"'), 'TEXT', '25.' => array('value' => 'width="450" height="73"'), 'TEXT', '4.' => array('value' => 'width="286" height="61"'), 'TEXT', '7.' => array('value' => 'width="341" height="61"'), 'TEXT', '8.' => array('value' => 'width="374" height="60"')), 'TEXT', '30.' => array('value' => '>')))), 'wrap' => '|', 'key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/smart-production.svg'), 'TEXT', '25.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/smart-production.svg'), 'TEXT', '4.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/etz.svg'), 'TEXT', '7.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/open-automation_25.svg'), 'TEXT', '8.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/digital-factory-journal.svg')), 'stdWrap.' => array('outerWrap' => '<div class="header__logo-area align-center-middle row collapse">|</div>', 'typolink.' => array('parameter.' => array('data' => 'leveluid:1'), 'title.' => array('data' => 'levelfield:1,nav_title // levelfield:1,title'), 'ATagParams' => 'class="main-branding small-6 columns"')), 'CASE', '20.' => array('key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'Das Portal für Smart Production Solutions'), 'TEXT', '25.' => array('value' => 'Das Portal für Smart Production Solutions'), 'TEXT', '4.' => array('value' => 'elektrotechnik & automation'), 'TEXT', '7.' => array('value' => 'Das Fachmagazin für das Management'), 'TEXT', '8.' => array('value' => 'Das Magazin für Industrie 4.0 & IoT'), 'stdWrap.' => array('wrap' => '<span class="slogan">|</span>'))), 'menuSub' => 'COA', 'menuSub.' => array('HMENU', '10.' => array('wrap' => '<ul class="left_sidebar_menu">|</ul>', 'entryLevel' => '1', 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'ACT.' => array('wrapItemAndSub' => '<li class="active">|</li>'), 'ACT' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="submenu">|</li>'), 'IFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="active submenu">|</li>'), 'ACTIFSUB' => '1'), 'TMENU', '2.' => array('NO.' => array('wrapItemAndSub' => '<li>|</li>'), 'ACT.' => array('wrapItemAndSub' => '<li class="active">|</li>'), 'ACT' => '1', 'IFSUB.' => array('wrapItemAndSub' => '<li class="submenu">|</li>'), 'IFSUB' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="active submenu">|</li>'), 'ACTIFSUB' => '1', 'wrap' => '<ul>|</ul>'))), 'mobileMenu' => 'HMENU', 'mobileMenu.' => array('TMENU', '1.' => array('expAll' => '1', 'wrap' => '<ul class="vertical menu accordion-menu" data-accordion-menu data-submenu-toggle="true">|</ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'IFSUB.' => array('wrapItemAndSub' => '<li class="has-dropdown">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'IFSUB' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="active">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item active">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu" data-magellan data-offset="-20" data-threshold="100" data-animation-easing="swing">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'ACT' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="active has-dropdown">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'ACTIFSUB' => '1'), 'TMENU', '2.' => array('expAll' => '1', 'wrap' => '<ul class="menu vertical nested"> | </ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'IFSUB.' => array('wrapItemAndSub' => '<li class="has-dropdown">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'IFSUB' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="active">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item active">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu" data-magellan data-offset="-20" data-threshold="100" data-animation-easing="swing">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'ACT' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="active has-dropdown">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'ACTIFSUB' => '1'), 'TMENU', '3.' => array('expAll' => '1', 'wrap' => 'wrap = <ul class="menu vertical nested"> | </ul>', 'NO.' => array('wrapItemAndSub' => '<li>|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'IFSUB.' => array('wrapItemAndSub' => '<li class="has-dropdown">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'IFSUB' => '1', 'ACT.' => array('wrapItemAndSub' => '<li class="active">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item active">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu" data-magellan data-offset="-20" data-threshold="100" data-animation-easing="swing">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'ACT' => '1', 'ACTIFSUB.' => array('wrapItemAndSub' => '<li class="active has-dropdown">|</li>', 'wrapItemAndSub.' => array('override' => '<li class="magellan_item">|</li>', 'override.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')))), 'stdWrap2.' => array('append' => 'HMENU', 'append.' => array('if.' => array('equals' => '55', 'value.' => array('field' => 'doktype')), 'special' => 'directory', 'includeNotInMenu' => '1', 'special.' => array('value.' => array('field' => 'uid')), 'stdWrap.' => array('outerWrap' => '<ul class="menu vertical nested magellan_item__submenu">|</ul>'), 'TMENU', '1.' => array('NO.' => array('overrideId' => '63', 'wrapItemAndSub' => '<li>|</li>', 'allWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '5.' => array('value' => '<a href="'), 'TEXT', '10.' => array('typolink.' => array(*DEEP NESTED ARRAY*)), 'TEXT', '20.' => array('value' => '#section-{field:uid}" data-close>|</a>', 'value.' => array(*DEEP NESTED ARRAY*)))), 'doNotLinkIt' => '1'))))), 'ACTIFSUB' => '1')), 'pageImage' => 'FILES', 'pageImage.' => array('references.' => array('table' => 'pages', 'uid.' => array('data' => 'page:uid'), 'fieldName' => 'media'), 'renderObj' => 'TEXT', 'renderObj.' => array('data' => 'file:current:publicUrl', 'wrap' => '|')), 'pageSubheader' => 'TEXT', 'pageSubheader.' => array('data' => 'levelfield: -1, subtitle, slide', 'wrap' => '<h1>|</h1>'), 'vhsContentFallbackSupport' => 'CONTENT', 'vhsContentFallbackSupport.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('field' => 'uid'), 'where' => 'colpos = {field:colPos}', 'where.' => array('insertData' => '1'), 'languageField' => 'sys_language_uid', 'orderBy' => 'sorting'), 'renderObj' => '< tt_content'), 'brandMenu' => 'HMENU', 'brandMenu.' => array('special' => 'list', 'special.' => array('value' => '25,4,7,8'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="menu--brands__item-wrap menu--brands__item-wrap--home menu--brands__item-wrap--as-icon">|</li>|*|<li class="menu--brands__item-wrap ">|</li>|*|<li class="menu--brands__item-wrap ">|</li>', 'ATagParams' => 'class="menu--brands__link"', 'ATagParams.' => array('override' => 'class="menu--brands__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype')))), 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'uid'), 'TEXT', '1.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="smart-production"/>'), 'TEXT', '25.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="smart-production"/>'), 'TEXT', '4.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab.svg" alt="Ew" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab_active.svg" alt="Ew"/>'), 'TEXT', '7.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab.svg" alt="open-automation" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab_active.svg" alt="open-automation"/>'), 'TEXT', '8.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab.svg" alt="et" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab_active.svg" alt="et"/>')))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--brands__item-wrap menu--brands__item-wrap--home active menu--brands__item-wrap--as-icon">|</li>|*|<li class="menu--brands__item-wrap active ">|</li>|*|<li class="menu--brands__item-wrap active">|</li>', 'ATagParams' => 'class="menu--brands__link"', 'ATagParams.' => array('override' => 'class="menu--brands__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype')))), 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'uid'), 'TEXT', '1.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="smart-production"/>'), 'TEXT', '25.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="smart-production"/>'), 'TEXT', '4.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab.svg" alt="Ew" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab_active.svg" alt="Ew"/>'), 'TEXT', '7.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab.svg" alt="open-automation" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab_active.svg" alt="open-automation"/>'), 'TEXT', '8.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab.svg" alt="et" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab_active.svg" alt="et"/>')))), 'ACT' => '1'), 'stdWrap.' => array('outerWrap' => '<ul id="menu--brands--topmost" class="menu--brands" data-toggler=".expanded" aria-expanded="true">|</ul>')), 'brandMenuHome' => 'HMENU', 'brandMenuHome.' => array('special' => 'list', 'special.' => array('value' => '1,4,7,8'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="menu--brands__item-wrap">|</li>', 'ATagParams' => 'class="menu--brands__link"', 'ATagParams.' => array('override' => 'class="menu--brands__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype')))), 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'uid'), 'TEXT', '1.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="energie"/>'), 'TEXT', '25.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="energie"/>'), 'TEXT', '4.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab.svg" alt="Ew" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab_active.svg" alt="Ew"/>'), 'TEXT', '7.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab.svg" alt="open-automation" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab_active.svg" alt="open-automation"/>'), 'TEXT', '8.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab.svg" alt="et" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab_active.svg" alt="et"/>')))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--brands__item-wrap menu--brands__item-wrap--home active menu--brands__item-wrap--as-icon">|</li>|*|<li class="menu--brands__item-wrap active ">|</li>|*|<li class="menu--brands__item-wrap active">|</li>', 'ATagParams' => 'class="menu--brands__link"', 'ATagParams.' => array('override' => 'class="menu--brands__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype')))), 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'uid'), 'TEXT', '1.' => array('value' => '<span class="icon-home" aria-hidden="true"></span>'), 'TEXT', '25.' => array('value' => '<span class="icon-home" aria-hidden="true"></span>'), 'TEXT', '4.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab.svg" alt="Ew" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab_active.svg" alt="Ew"/>'), 'TEXT', '7.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab.svg" alt="open-automation" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab_active.svg" alt="open-automation"/>'), 'TEXT', '8.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab.svg" alt="et" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab_active.svg" alt="et"/>')))), 'ACT' => '1'), 'stdWrap.' => array('outerWrap' => '<ul id="menu--brands--topmost" class="menu--brands" data-toggler=".expanded" aria-expanded="true">|</ul>')), 'brandMenuFooter' => 'HMENU', 'brandMenuFooter.' => array('special' => 'list', 'special.' => array('value' => '25,4,7,8'), 'TMENU', '1.' => array('NO.' => array('wrapItemAndSub' => '<li class="menu--brands__item-wrap">|</li>', 'ATagParams' => 'class="menu--brands__link"', 'ATagParams.' => array('override' => 'class="menu--brands__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype')))), 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'uid'), 'TEXT', '1.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="energie"/>'), 'TEXT', '25.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="energie"/>'), 'TEXT', '4.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab.svg" alt="Ew" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab_active.svg" alt="Ew"/>'), 'TEXT', '7.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab.svg" alt="open-automation" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab_active.svg" alt="open-automation"/>'), 'TEXT', '8.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab.svg" alt="et" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab_active.svg" alt="et"/>')))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--brands__item-wrap">|</li>', 'ATagParams' => 'class="menu--brands__link"', 'ATagParams.' => array('override' => 'class="menu--brands__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype')))), 'stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('field' => 'uid'), 'TEXT', '1.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="energie"/>'), 'TEXT', '25.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab.svg" alt="smart-production" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/smart-production_tab_active.svg" alt="energie"/>'), 'TEXT', '4.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab.svg" alt="Ew" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/etz_tab_active.svg" alt="Ew"/>'), 'TEXT', '7.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab.svg" alt="open-automation" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/open-automation_tab_active.svg" alt="open-automation"/>'), 'TEXT', '8.' => array('value' => '<img class="on-default" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab.svg" alt="et" /><img class="on-active" src="typo3conf/templates/main/assets/img/logos/tabs/digital-factory-journal_tab_active.svg" alt="et"/>')))), 'ACT' => '1'), 'stdWrap.' => array('outerWrap' => '<ul id="menu--brands--bottommost" class="menu--brands menu--brands--dark-active menu--brands--footer" data-toggler=".expanded" aria-expanded="true">|</ul>')), 'logoHome' => 'COA', 'logoHome.' => array('CASE', '10.' => array('file' => 'typo3conf/templates/main/assets/img/q3i-logo.svg', 'altText.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('data' => 'levelfield:0,tx_tqseo_pagetitle_prefix'), 'TEXT', '20.' => array('data' => 'levelfield:0,title', 'noTrimWrap' => '| |'))), 'params' => 'class="logo"', 'stdWrap.' => array('innerWrap.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '<img class="logo" src="|" alt="'), 'CASE', '20.' => array('key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'smart-production.de'), 'TEXT', '25.' => array('value' => 'smart-production.de'), 'TEXT', '4.' => array('value' => 'ew'), 'TEXT', '7.' => array('value' => 'open-automation'), 'TEXT', '8.' => array('value' => 'et')), 'TEXT', '21.' => array('value' => '"', 'noTrimWrap' => '|| |'), 'CASE', '25.' => array('key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'width="450" height="73"'), 'TEXT', '25.' => array('value' => 'width="450" height="73"'), 'TEXT', '4.' => array('value' => 'width="286" height="61"'), 'TEXT', '7.' => array('value' => 'width="341" height="61"'), 'TEXT', '8.' => array('value' => 'width="374" height="60"')), 'TEXT', '30.' => array('value' => '>')))), 'wrap' => '|', 'key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/smart-production.svg'), 'TEXT', '25.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/smart-production.svg'), 'TEXT', '4.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/etz.svg'), 'TEXT', '7.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/open-automation_25.svg'), 'TEXT', '8.' => array('value' => 'typo3conf/templates/main/assets/img/logos/content/digital-factory-journal.svg')), 'stdWrap.' => array('outerWrap' => '<div class="header__logo-area align-center-middle row collapse">|</div>', 'typolink.' => array('parameter.' => array('data' => 'leveluid:0'), 'title.' => array('data' => 'levelfield:1,nav_title // levelfield:1,title'), 'ATagParams' => 'class="main-branding small-6 columns"')), 'CASE', '20.' => array('key.' => array('data' => 'leveluid:1'), 'default' => 'TEXT', 'default.' => array('value' => 'Das Portal für Smart Production Solutions'), 'TEXT', '25.' => array('value' => 'Das Portal für Smart Production Solutions'), 'TEXT', '4.' => array('value' => 'elektrotechnik & automation'), 'TEXT', '7.' => array('value' => 'Das Fachmagazin für das Management'), 'TEXT', '8.' => array('value' => 'Das Magazin für Industrie 4.0 & IoT'), 'stdWrap.' => array('wrap' => '<span class="slogan">|</span>'))), 'mainMenu' => 'HMENU', 'mainMenu.' => array('entryLevel' => '1', 'TMENU', '1.' => array('expAll' => '1', 'includeNotInMenu' => '1', 'wrap' => '<nav id="menu--main" class="menu--main menu--base show-for-large" data-toggler="show-for-large"><ul class="menu--main__list menu--base__list menu vertical large-horizontal" data-responsive-menu="accordion large-dropdown">|</ul></nav>', 'NO.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__item-wrap">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__item-wrap active">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT' => '1'), 'TMENU', '2.' => array('expAll' => '1', 'includeNotInMenu' => '1', 'wrap' => '<ul class="menu--base__submenu menu--main__submenu menu vertical"> | </ul>', 'NO.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item active">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT' => '1'), 'TMENU', '3.' => array('expAll' => '1', 'includeNotInMenu' => '1', 'wrap' => '<ul class="menu--base__submenu menu--main__submenu menu vertical"> | </ul>', 'NO.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item active">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT' => '1')), 'mainMenuHome' => 'HMENU', 'mainMenuHome.' => array('entryLevel' => '0', 'TMENU', '1.' => array('expAll' => '1', 'includeNotInMenu' => '1', 'wrap' => '<nav id="menu--main" class="menu--main menu--base show-for-large" data-toggler="show-for-large"><ul class="menu--main__list menu--base__list menu vertical large-horizontal" data-responsive-menu="accordion large-dropdown">|</ul></nav>', 'NO.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__item-wrap">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__item-wrap active">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT' => '1'), 'TMENU', '2.' => array('expAll' => '1', 'includeNotInMenu' => '1', 'wrap' => '<ul class="menu--base__submenu menu--main__submenu menu vertical"> | </ul>', 'NO.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item active">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT' => '1'), 'TMENU', '3.' => array('expAll' => '1', 'includeNotInMenu' => '1', 'wrap' => '<ul class="menu--base__submenu menu--main__submenu menu vertical"> | </ul>', 'NO.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT.' => array('wrapItemAndSub' => '<li class="menu--base__item menu--main__submenu__item active">|</li>', 'ATagParams' => 'class="menu--base__item__link menu--main__submenu__link"', 'ATagParams.' => array('override' => 'class="menu--base__item__link menu--main__submenu__link" target="_blank"', 'override.' => array('if.' => array('isFalse.' => array('field' => 'target'), 'equals' => '3', 'value.' => array('field' => 'doktype'))))), 'ACT' => '1'), 'excludeUidList' => '25,4,7,8'), 'searchbox_plugin' => 'USER', 'searchbox_plugin.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'ApacheSolrForTypo3', 'extensionName' => 'Solr', 'pluginName' => 'pi_search', 'switchableControllerActions.' => array('Search.' => array('form')), 'settings.' => array('headerForm' => '1', 'SolrPluginPagePID' => '18'), 'view.' => array('pluginNamespace' => 'tx_solr', 'templateRootPaths.' => array('EXT:solr/Resources/Private/Templates/', 'typo3conf/templates/_shared/ext/solr/Templates/'), 'partialRootPaths.' => array('EXT:solr/Resources/Private/Partials/', 'typo3conf/templates/_shared/ext/solr/Partials/'), 'layoutRootPaths.' => array('EXT:solr/Resources/Private/Layouts/', 'typo3conf/templates/_shared/ext/solr/Layouts/'), 'templateFiles.' => array())), 'vhsContentFallbackSupport_slide' => 'CONTENT', 'vhsContentFallbackSupport_slide.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('field' => 'uid'), 'where' => 'colpos = {field:colPos}', 'where.' => array('insertData' => '1'), 'languageField' => 'sys_language_uid', 'orderBy' => 'sorting'), 'renderObj' => '< tt_content', 'slide' => '-1'), 'vhsContentFallbackSupport_slideOnlyOneLevelUp' => 'CONTENT', 'vhsContentFallbackSupport_slideOnlyOneLevelUp.' => array('table' => 'tt_content', 'select.' => array('pidInList.' => array('field' => 'uid'), 'where' => 'colpos = {field:colPos}', 'where.' => array('insertData' => '1'), 'languageField' => 'sys_language_uid', 'orderBy' => 'sorting'), 'renderObj' => '< tt_content', 'slide' => '2'), 'visitor-analytics.' => array('part-footer' => 'COA', 'part-footer.' => array('TEXT', '10.' => array('value' => '<!-- visitor-analytics disabled -->')))), 'lib.vhsContentFallbackSupport', 'vhsContentFallbackSupport')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 170
                'No Content Object definition found at TypoScript object path "' . $typoscriptObjectPath . '"',
                1540246570
            );
        }
        $content = self::renderContentObject($contentObjectRenderer, $setup, $typoscriptObjectPath, $lastSegment);
        if (!isset($GLOBALS['TSFE']) || !($GLOBALS['TSFE'] instanceof TypoScriptFrontendController)) {
            static::resetFrontendEnvironment();
        }
        return $content;
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic(array('data' => array('uid' => null, 'colPos' => 3), 'typoscriptObjectPath' => 'lib.vhsContentFallbackSupport', 'currentValueKey' => null, 'table' => ''), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09.php line 276
);$array27['uid'] = $renderingContext->getVariableProvider()->getByPath('group.uid', $array28);
$array27['colPos'] = 3;
$arguments25['data'] = $array27;
$renderChildrenClosure26 = ($arguments25['data'] !== null) ? function() use ($arguments25) { return $arguments25['data']; } : $renderChildrenClosure26;
$output24 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments25, $renderChildrenClosure26, $renderingContext);

$output24 .= '
     <!--TYPO3SEARCH_end-->
    ';
at partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09->{closure}()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 78
            if (isset($arguments['then'])) {
                return $arguments['then'];
            }
            if (isset($arguments['__thenClosure'])) {
                return $arguments['__thenClosure']();
            }
        } elseif (!empty($arguments['__elseClosures'])) {
            $elseIfClosures = isset($arguments['__elseifClosures']) ? $arguments['__elseifClosures'] : [];
            return static::evaluateElseClosures($arguments['__elseClosures'], $elseIfClosures, $renderingContext);
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::renderStatic(array('then' => null, 'else' => null, 'condition' => true, '__thenClosure' => object(Closure)), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09.php line 326
     $renderingContext
    );
$arguments16['__thenClosure'] = $renderChildrenClosure17;

$output15 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments16, $renderChildrenClosure17, $renderingContext);

$output15 .= '

   ';
at partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09->{closure}()
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09.php line 332
$output15 .= '

   ';
return $output15;
});
}
}, array($arguments1));

$output0 .= '
at partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09->{closure}(array('expression' => 1))
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09.php line 334
   ';
return $output15;
});
}
}, array($arguments1));

$output0 .= '

 ';
at partial_PageHeader_1b183bb8ad0f3dde01e73034c80eff6338e39d09->section_d780f267dd4b32c3106de2c2ed47bf20b6d58d99(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 260
                    );
                }
            }
            $this->startRendering($renderingTypeOnNextLevel, $parsedTemplate, $renderingContext);
            $output = $parsedTemplate->$methodNameOfSection($renderingContext);
            $this->stopRendering();
        } else {
            $sections = $parsedTemplate->getVariableContainer()->get('1457379500_sections');
            if (!isset($sections[$sectionName])) {
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderSection('PageHeader', array('record' => array('uid' => 84, 'pid' => 4, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 25, 'tstamp' => 1629203278, 'sorting' => 504, 'deleted' => 0, 'perms_userid' => 5, 'perms_groupid' => 3, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1542797703, 'cruser_id' => 5, 'hidden' => 0, 'title' => 'News-Detailansicht', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 1551456660, 'keywords' => null, 'cache_timeout' => 0, 'newUntil' => 0, 'description' => 'Hier finden Sie spannende und aktuelle Nachrichten aus den Bereichen Elektrotechnik und Automation. Immer aktuell für Sie zusammengestellt!', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711637904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 1, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'cache_tags' => '', 'categories' => 0, 'tsconfig_includes' => '', 'tx_fluidpages_templatefile' => '', 'tx_fluidpages_layout' => '', 'tx_fed_page_flexform' => null, 'tx_fed_page_flexform_sub' => null, 'tx_fed_page_controller_action' => '', 'tx_fed_page_controller_action_sub' => '', 'tx_realurl_pathsegment' => '', 'tx_realurl_pathoverride' => 0, 'tx_realurl_exclude' => 0, 'seo_title' => 'Unsere News-Detailansicht auf smart-production.de', 'canonical_url' => '', 'tx_yoastseo_robot_instructions' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'tx_yoastseo_dont_use' => 0, 'tx_yoastseo_hide_snippet_preview' => 0, 'no_index' => 0, 'no_follow' => 0, 'tx_yoastseo_focuskeyword' => '', 'last_mod' => 1566578936, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_snippetpreview' => 0, 'tx_yoastseo_focuskeyword_analysis' => 0, 'tx_yoastseo_readability_analysis' => 0, 'tx_q3isolr_solrtest' => 0, 'tx_q3isolr_solrroot' => 0, 'canonical_link' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_focuskeyword_premium' => 0, 'rowDescription' => null, 'sys_language_uid' => 0, 'l10n_source' => 0, 'l10n_state' => null, 'l10n_diffsource' => 'a:55:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:9:"seo_title";N;s:23:"tx_yoastseo_cornerstone";N;s:11:"description";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:18:"sitemap_changefreq";N;s:16:"sitemap_priority";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:12:"twitter_card";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:29:"tx_fed_page_controller_action";N;s:33:"tx_fed_page_controller_action_sub";N;}', 'slug' => '/etz/news-detailansicht', 'legacy_overlay_uid' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'l10n_parent' => 0, 'hide_banner' => 0), 'page' => array('uid' => 84, 'pid' => 4, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 25, 'tstamp' => 1629203278, 'sorting' => 504, 'deleted' => 0, 'perms_userid' => 5, 'perms_groupid' => 3, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1542797703, 'cruser_id' => 5, 'hidden' => 0, 'title' => 'News-Detailansicht', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 1551456660, 'keywords' => null, 'cache_timeout' => 0, 'newUntil' => 0, 'description' => 'Hier finden Sie spannende und aktuelle Nachrichten aus den Bereichen Elektrotechnik und Automation. Immer aktuell für Sie zusammengestellt!', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711637904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 1, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'cache_tags' => '', 'categories' => 0, 'tsconfig_includes' => '', 'tx_fluidpages_templatefile' => '', 'tx_fluidpages_layout' => '', 'tx_fed_page_flexform' => null, 'tx_fed_page_flexform_sub' => null, 'tx_fed_page_controller_action' => '', 'tx_fed_page_controller_action_sub' => '', 'tx_realurl_pathsegment' => '', 'tx_realurl_pathoverride' => 0, 'tx_realurl_exclude' => 0, 'seo_title' => 'Unsere News-Detailansicht auf smart-production.de', 'canonical_url' => '', 'tx_yoastseo_robot_instructions' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'tx_yoastseo_dont_use' => 0, 'tx_yoastseo_hide_snippet_preview' => 0, 'no_index' => 0, 'no_follow' => 0, 'tx_yoastseo_focuskeyword' => '', 'last_mod' => 1566578936, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_snippetpreview' => 0, 'tx_yoastseo_focuskeyword_analysis' => 0, 'tx_yoastseo_readability_analysis' => 0, 'tx_q3isolr_solrtest' => 0, 'tx_q3isolr_solrroot' => 0, 'canonical_link' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_focuskeyword_premium' => 0, 'rowDescription' => null, 'sys_language_uid' => 0, 'l10n_source' => 0, 'l10n_state' => null, 'l10n_diffsource' => 'a:55:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:9:"seo_title";N;s:23:"tx_yoastseo_cornerstone";N;s:11:"description";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:18:"sitemap_changefreq";N;s:16:"sitemap_priority";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:12:"twitter_card";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:29:"tx_fed_page_controller_action";N;s:33:"tx_fed_page_controller_action_sub";N;}', 'slug' => '/etz/news-detailansicht', 'legacy_overlay_uid' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'l10n_parent' => 0, 'hide_banner' => 0), 'user' => array(), 'grid' => object(FluidTYPO3\Flux\Form\Container\Grid), 'form' => object(FluidTYPO3\Flux\Form), 'settings' => array('showAdvertisement' => '{$site.showAdvertisement}', 'gridColumns' => '12', 'colwrap' => 'first, second, third', 'menu' => array('main' => array('entryLevel' => '0'), 'sub' => array('entryLevel' => '1')), 'path' => array('template' => '{$site.path.template}/', 'assets' => '{$site.path.template}/assets/', 'images' => '{$site.path.template}/assets/images/'), 'container' => array('types' => array('default' => 'div', 'Example' => 'div')), 'Content' => array('Isotope' => array('thumbnailMaxWidth' => '640')), 'useTypoScript' => '1', 'entryLevel' => '0', 'enableSearch' => '1', 'enableLanguageMenu' => '1', 'searchFieldName' => 'q', 'searchPageUid' => '', 'addWell' => '0', 'wellSmall' => '0', 'position' => 'left', 'distribution' => '4', 'PID' => array('termine' => '99', 'job' => '98', 'marktplatz' => '100', 'service' => '101', 'industry' => '457'), 'branch' => 'etz'), 'provider' => object(FluidTYPO3\Fluidpages\Provider\PageProvider)), false)
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 327
        }
        $renderingContext->setVariableProvider($renderingContext->getVariableProvider()->getScopeCopy($variables));
        $this->startRendering(self::RENDERING_PARTIAL, $parsedPartial, $renderingContext);
        if ($sectionName !== null) {
            $output = $this->renderSection($sectionName, $variables, $ignoreUnknown);
        } else {
            $output = $parsedPartial->render($renderingContext);
        }
        $this->stopRendering();
at TYPO3Fluid\Fluid\View\AbstractTemplateView->renderPartial('PageHeader', 'PageHeader', array('record' => array('uid' => 84, 'pid' => 4, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 25, 'tstamp' => 1629203278, 'sorting' => 504, 'deleted' => 0, 'perms_userid' => 5, 'perms_groupid' => 3, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1542797703, 'cruser_id' => 5, 'hidden' => 0, 'title' => 'News-Detailansicht', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 1551456660, 'keywords' => null, 'cache_timeout' => 0, 'newUntil' => 0, 'description' => 'Hier finden Sie spannende und aktuelle Nachrichten aus den Bereichen Elektrotechnik und Automation. Immer aktuell für Sie zusammengestellt!', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711637904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 1, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'cache_tags' => '', 'categories' => 0, 'tsconfig_includes' => '', 'tx_fluidpages_templatefile' => '', 'tx_fluidpages_layout' => '', 'tx_fed_page_flexform' => null, 'tx_fed_page_flexform_sub' => null, 'tx_fed_page_controller_action' => '', 'tx_fed_page_controller_action_sub' => '', 'tx_realurl_pathsegment' => '', 'tx_realurl_pathoverride' => 0, 'tx_realurl_exclude' => 0, 'seo_title' => 'Unsere News-Detailansicht auf smart-production.de', 'canonical_url' => '', 'tx_yoastseo_robot_instructions' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'tx_yoastseo_dont_use' => 0, 'tx_yoastseo_hide_snippet_preview' => 0, 'no_index' => 0, 'no_follow' => 0, 'tx_yoastseo_focuskeyword' => '', 'last_mod' => 1566578936, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_snippetpreview' => 0, 'tx_yoastseo_focuskeyword_analysis' => 0, 'tx_yoastseo_readability_analysis' => 0, 'tx_q3isolr_solrtest' => 0, 'tx_q3isolr_solrroot' => 0, 'canonical_link' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_focuskeyword_premium' => 0, 'rowDescription' => null, 'sys_language_uid' => 0, 'l10n_source' => 0, 'l10n_state' => null, 'l10n_diffsource' => 'a:55:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:9:"seo_title";N;s:23:"tx_yoastseo_cornerstone";N;s:11:"description";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:18:"sitemap_changefreq";N;s:16:"sitemap_priority";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:12:"twitter_card";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:29:"tx_fed_page_controller_action";N;s:33:"tx_fed_page_controller_action_sub";N;}', 'slug' => '/etz/news-detailansicht', 'legacy_overlay_uid' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'l10n_parent' => 0, 'hide_banner' => 0), 'page' => array('uid' => 84, 'pid' => 4, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 25, 'tstamp' => 1629203278, 'sorting' => 504, 'deleted' => 0, 'perms_userid' => 5, 'perms_groupid' => 3, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1542797703, 'cruser_id' => 5, 'hidden' => 0, 'title' => 'News-Detailansicht', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 1551456660, 'keywords' => null, 'cache_timeout' => 0, 'newUntil' => 0, 'description' => 'Hier finden Sie spannende und aktuelle Nachrichten aus den Bereichen Elektrotechnik und Automation. Immer aktuell für Sie zusammengestellt!', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711637904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 1, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'cache_tags' => '', 'categories' => 0, 'tsconfig_includes' => '', 'tx_fluidpages_templatefile' => '', 'tx_fluidpages_layout' => '', 'tx_fed_page_flexform' => null, 'tx_fed_page_flexform_sub' => null, 'tx_fed_page_controller_action' => '', 'tx_fed_page_controller_action_sub' => '', 'tx_realurl_pathsegment' => '', 'tx_realurl_pathoverride' => 0, 'tx_realurl_exclude' => 0, 'seo_title' => 'Unsere News-Detailansicht auf smart-production.de', 'canonical_url' => '', 'tx_yoastseo_robot_instructions' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'tx_yoastseo_dont_use' => 0, 'tx_yoastseo_hide_snippet_preview' => 0, 'no_index' => 0, 'no_follow' => 0, 'tx_yoastseo_focuskeyword' => '', 'last_mod' => 1566578936, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_snippetpreview' => 0, 'tx_yoastseo_focuskeyword_analysis' => 0, 'tx_yoastseo_readability_analysis' => 0, 'tx_q3isolr_solrtest' => 0, 'tx_q3isolr_solrroot' => 0, 'canonical_link' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_focuskeyword_premium' => 0, 'rowDescription' => null, 'sys_language_uid' => 0, 'l10n_source' => 0, 'l10n_state' => null, 'l10n_diffsource' => 'a:55:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:9:"seo_title";N;s:23:"tx_yoastseo_cornerstone";N;s:11:"description";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:18:"sitemap_changefreq";N;s:16:"sitemap_priority";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:12:"twitter_card";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:29:"tx_fed_page_controller_action";N;s:33:"tx_fed_page_controller_action_sub";N;}', 'slug' => '/etz/news-detailansicht', 'legacy_overlay_uid' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'l10n_parent' => 0, 'hide_banner' => 0), 'user' => array(), 'grid' => object(FluidTYPO3\Flux\Form\Container\Grid), 'form' => object(FluidTYPO3\Flux\Form), 'settings' => array('showAdvertisement' => '{$site.showAdvertisement}', 'gridColumns' => '12', 'colwrap' => 'first, second, third', 'menu' => array('main' => array('entryLevel' => '0'), 'sub' => array('entryLevel' => '1')), 'path' => array('template' => '{$site.path.template}/', 'assets' => '{$site.path.template}/assets/', 'images' => '{$site.path.template}/assets/images/'), 'container' => array('types' => array('default' => 'div', 'Example' => 'div')), 'Content' => array('Isotope' => array('thumbnailMaxWidth' => '640')), 'useTypoScript' => '1', 'entryLevel' => '0', 'enableSearch' => '1', 'enableLanguageMenu' => '1', 'searchFieldName' => 'q', 'searchPageUid' => '', 'addWell' => '0', 'wellSmall' => '0', 'position' => 'left', 'distribution' => '4', 'PID' => array('termine' => '99', 'job' => '98', 'marktplatz' => '100', 'service' => '101', 'industry' => '457'), 'branch' => 'etz'), 'provider' => object(FluidTYPO3\Fluidpages\Provider\PageProvider)), false)
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/ViewHelpers/RenderViewHelper.php line 141
            $renderingContext = clone $renderingContext;
            $renderingContext->getVariableProvider()->setSource($variables);
            $content = (new $delegate())->render($renderingContext);
        } elseif ($partial !== null) {
            $content = $view->renderPartial($partial, $section, $variables, $optional);
        } elseif ($section !== null) {
            $content = $view->renderSection($section, $variables, $optional);
        } elseif (!$optional) {
            throw new \InvalidArgumentException('ViewHelper f:render called without either argument section, partial, renderable or delegate and optional flag is false');
at TYPO3Fluid\Fluid\ViewHelpers\RenderViewHelper::renderStatic(array('section' => 'PageHeader', 'partial' => 'PageHeader', 'delegate' => null, 'renderable' => null, 'arguments' => array('record' => array('uid' => 84, 'pid' => 4, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 25, 'tstamp' => 1629203278, 'sorting' => 504, 'deleted' => 0, 'perms_userid' => 5, 'perms_groupid' => 3, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1542797703, 'cruser_id' => 5, 'hidden' => 0, 'title' => 'News-Detailansicht', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 1551456660, 'keywords' => null, 'cache_timeout' => 0, 'newUntil' => 0, 'description' => 'Hier finden Sie spannende und aktuelle Nachrichten aus den Bereichen Elektrotechnik und Automation. Immer aktuell für Sie zusammengestellt!', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711637904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 1, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'cache_tags' => '', 'categories' => 0, 'tsconfig_includes' => '', 'tx_fluidpages_templatefile' => '', 'tx_fluidpages_layout' => '', 'tx_fed_page_flexform' => null, 'tx_fed_page_flexform_sub' => null, 'tx_fed_page_controller_action' => '', 'tx_fed_page_controller_action_sub' => '', 'tx_realurl_pathsegment' => '', 'tx_realurl_pathoverride' => 0, 'tx_realurl_exclude' => 0, 'seo_title' => 'Unsere News-Detailansicht auf smart-production.de', 'canonical_url' => '', 'tx_yoastseo_robot_instructions' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'tx_yoastseo_dont_use' => 0, 'tx_yoastseo_hide_snippet_preview' => 0, 'no_index' => 0, 'no_follow' => 0, 'tx_yoastseo_focuskeyword' => '', 'last_mod' => 1566578936, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_snippetpreview' => 0, 'tx_yoastseo_focuskeyword_analysis' => 0, 'tx_yoastseo_readability_analysis' => 0, 'tx_q3isolr_solrtest' => 0, 'tx_q3isolr_solrroot' => 0, 'canonical_link' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_focuskeyword_premium' => 0, 'rowDescription' => null, 'sys_language_uid' => 0, 'l10n_source' => 0, 'l10n_state' => null, 'l10n_diffsource' => 'a:55:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:9:"seo_title";N;s:23:"tx_yoastseo_cornerstone";N;s:11:"description";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:18:"sitemap_changefreq";N;s:16:"sitemap_priority";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:12:"twitter_card";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:29:"tx_fed_page_controller_action";N;s:33:"tx_fed_page_controller_action_sub";N;}', 'slug' => '/etz/news-detailansicht', 'legacy_overlay_uid' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'l10n_parent' => 0, 'hide_banner' => 0), 'page' => array('uid' => 84, 'pid' => 4, 't3ver_oid' => 0, 't3ver_id' => 0, 't3ver_wsid' => 0, 't3ver_label' => '', 't3ver_state' => 0, 't3ver_stage' => 0, 't3ver_count' => 0, 't3ver_tstamp' => 0, 't3ver_move_id' => 0, 't3_origuid' => 25, 'tstamp' => 1629203278, 'sorting' => 504, 'deleted' => 0, 'perms_userid' => 5, 'perms_groupid' => 3, 'perms_user' => 31, 'perms_group' => 27, 'perms_everybody' => 0, 'editlock' => 0, 'crdate' => 1542797703, 'cruser_id' => 5, 'hidden' => 0, 'title' => 'News-Detailansicht', 'doktype' => 1, 'TSconfig' => null, 'is_siteroot' => 0, 'php_tree_stop' => 0, 'tx_impexp_origuid' => 0, 'url' => '', 'starttime' => 0, 'endtime' => 0, 'urltype' => 1, 'shortcut' => 0, 'shortcut_mode' => 0, 'no_cache' => 0, 'fe_group' => '', 'subtitle' => '', 'layout' => 0, 'target' => '', 'media' => 0, 'lastUpdated' => 1551456660, 'keywords' => null, 'cache_timeout' => 0, 'newUntil' => 0, 'description' => 'Hier finden Sie spannende und aktuelle Nachrichten aus den Bereichen Elektrotechnik und Automation. Immer aktuell für Sie zusammengestellt!', 'no_search' => 0, 'SYS_LASTCHANGED' => 1711637904, 'abstract' => null, 'module' => '', 'extendToSubpages' => 0, 'author' => '', 'author_email' => '', 'nav_title' => '', 'nav_hide' => 1, 'content_from_pid' => 0, 'mount_pid' => 0, 'mount_pid_ol' => 0, 'alias' => '', 'l18n_cfg' => 0, 'fe_login_mode' => 0, 'backend_layout' => '', 'backend_layout_next_level' => '', 'cache_tags' => '', 'categories' => 0, 'tsconfig_includes' => '', 'tx_fluidpages_templatefile' => '', 'tx_fluidpages_layout' => '', 'tx_fed_page_flexform' => null, 'tx_fed_page_flexform_sub' => null, 'tx_fed_page_controller_action' => '', 'tx_fed_page_controller_action_sub' => '', 'tx_realurl_pathsegment' => '', 'tx_realurl_pathoverride' => 0, 'tx_realurl_exclude' => 0, 'seo_title' => 'Unsere News-Detailansicht auf smart-production.de', 'canonical_url' => '', 'tx_yoastseo_robot_instructions' => 0, 'og_title' => '', 'og_description' => '', 'og_image' => 0, 'twitter_title' => '', 'twitter_description' => '', 'twitter_image' => 0, 'tx_yoastseo_dont_use' => 0, 'tx_yoastseo_hide_snippet_preview' => 0, 'no_index' => 0, 'no_follow' => 0, 'tx_yoastseo_focuskeyword' => '', 'last_mod' => 1566578936, 'tx_yoastseo_cornerstone' => 0, 'tx_yoastseo_score_readability' => 'bad', 'tx_yoastseo_score_seo' => 'bad', 'tx_yoastseo_snippetpreview' => 0, 'tx_yoastseo_focuskeyword_analysis' => 0, 'tx_yoastseo_readability_analysis' => 0, 'tx_q3isolr_solrtest' => 0, 'tx_q3isolr_solrroot' => 0, 'canonical_link' => '', 'tx_yoastseo_focuskeyword_synonyms' => null, 'tx_yoastseo_focuskeyword_premium' => 0, 'rowDescription' => null, 'sys_language_uid' => 0, 'l10n_source' => 0, 'l10n_state' => null, 'l10n_diffsource' => 'a:55:{s:7:"doktype";N;s:5:"title";N;s:4:"slug";N;s:9:"nav_title";N;s:8:"subtitle";N;s:9:"seo_title";N;s:23:"tx_yoastseo_cornerstone";N;s:11:"description";N;s:24:"tx_yoastseo_focuskeyword";N;s:8:"no_index";N;s:9:"no_follow";N;s:14:"canonical_link";N;s:18:"sitemap_changefreq";N;s:16:"sitemap_priority";N;s:8:"og_title";N;s:14:"og_description";N;s:8:"og_image";N;s:13:"twitter_title";N;s:19:"twitter_description";N;s:13:"twitter_image";N;s:12:"twitter_card";N;s:32:"tx_yoastseo_hide_snippet_preview";N;s:8:"abstract";N;s:8:"keywords";N;s:6:"author";N;s:12:"author_email";N;s:11:"lastUpdated";N;s:6:"layout";N;s:8:"newUntil";N;s:14:"backend_layout";N;s:25:"backend_layout_next_level";N;s:16:"content_from_pid";N;s:6:"target";N;s:13:"cache_timeout";N;s:10:"cache_tags";N;s:11:"is_siteroot";N;s:9:"no_search";N;s:13:"php_tree_stop";N;s:6:"module";N;s:5:"media";N;s:17:"tsconfig_includes";N;s:8:"TSconfig";N;s:8:"l18n_cfg";N;s:6:"hidden";N;s:8:"nav_hide";N;s:9:"starttime";N;s:7:"endtime";N;s:16:"extendToSubpages";N;s:8:"fe_group";N;s:13:"fe_login_mode";N;s:8:"editlock";N;s:10:"categories";N;s:14:"rowDescription";N;s:29:"tx_fed_page_controller_action";N;s:33:"tx_fed_page_controller_action_sub";N;}', 'slug' => '/etz/news-detailansicht', 'legacy_overlay_uid' => 0, 'twitter_card' => 'summary', 'sitemap_priority' => '0.5', 'sitemap_changefreq' => '', 'l10n_parent' => 0, 'hide_banner' => 0), 'user' => array(), 'grid' => object(FluidTYPO3\Flux\Form\Container\Grid), 'form' => object(FluidTYPO3\Flux\Form), 'settings' => array('showAdvertisement' => '{$site.showAdvertisement}', 'gridColumns' => '12', 'colwrap' => 'first, second, third', 'menu' => array('main' => array('entryLevel' => '0'), 'sub' => array('entryLevel' => '1')), 'path' => array('template' => '{$site.path.template}/', 'assets' => '{$site.path.template}/assets/', 'images' => '{$site.path.template}/assets/images/'), 'container' => array('types' => array('default' => 'div', 'Example' => 'div')), 'Content' => array('Isotope' => array('thumbnailMaxWidth' => '640')), 'useTypoScript' => '1', 'entryLevel' => '0', 'enableSearch' => '1', 'enableLanguageMenu' => '1', 'searchFieldName' => 'q', 'searchPageUid' => '', 'addWell' => '0', 'wellSmall' => '0', 'position' => 'left', 'distribution' => '4', 'PID' => array('termine' => '99', 'job' => '98', 'marktplatz' => '100', 'service' => '101', 'industry' => '457'), 'branch' => 'etz'), 'provider' => object(FluidTYPO3\Fluidpages\Provider\PageProvider)), 'optional' => false, 'default' => null, 'contentAs' => null, 'debug' => true), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_smart-production/live/typo3temp/var/cache/code/fluid_template/layout_Render_html_ccbafe800fbea46d2d5ae6c85ae8258d89fb55e0.php line 107
$arguments6['partial'] = 'PageHeader';
$arguments6['section'] = 'PageHeader';
$arguments6['arguments'] = $renderingContext->getVariableProvider()->getAll();

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

$output0 .= '
  <div class="row">
   <div class="small-12 medium-8 large-8 columns main-content">
at layout_Render_html_ccbafe800fbea46d2d5ae6c85ae8258d89fb55e0->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 201
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 504
            $actionResult = $this->{$this->errorMethodName}();
        }

        if ($actionResult === null && $this->view instanceof ViewInterface) {
            $this->response->appendContent($this->view->render());
        } elseif (is_string($actionResult) && $actionResult !== '') {
            $this->response->appendContent($actionResult);
        } elseif (is_object($actionResult) && method_exists($actionResult, '__toString')) {
            $this->response->appendContent((string)$actionResult);
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->callActionMethod()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 426
        $this->view = $this->resolveView();
        if ($this->view !== null) {
            $this->initializeView($this->view);
        }
        $this->callActionMethod();
        $this->renderAssetsForRequest($request);
    }

    /**
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Response))
in /html/_smart-production/live/typo3conf/ext/flux/Classes/Controller/AbstractFluxController.php line 436
                    'controllerClassName' => $controllerClassName,
                    'controllerActionName' => $controllerActionName
                ]
            );
            $potentialControllerInstance->processRequest($this->request,$response);
        } catch (StopActionException $error) {
            // intentionally left blank
        }
        HookHandler::trigger(
at FluidTYPO3\Flux\Controller\AbstractFluxController->callSubControllerAction('Q3i.Fluidfoundationtheme', 'Q3i\\Fluidfoundationtheme\\Controller\\PageController', 'render', 'tx_fluidfoundationtheme_page')
in /html/_smart-production/live/typo3conf/ext/flux/Classes/Controller/AbstractFluxController.php line 365
                    $extensionName,
                    $controllerName
                );
            $content = $this->callSubControllerAction(
                $extensionName,
                $foreignControllerClass,
                $actionName,
                $pluginSignature
            );
at FluidTYPO3\Flux\Controller\AbstractFluxController->performSubRendering('Q3i.Fluidfoundationtheme', 'Page', 'render', 'tx_fluidfoundationtheme_page')
in /html/_smart-production/live/typo3conf/ext/flux/Classes/Controller/AbstractFluxController.php line 307
        $controllerActionName = $this->provider->getControllerActionFromRecord($row);
        $actualActionName = null !== $requestActionName ? $requestActionName : $controllerActionName;
        $controllerName = $this->request->getControllerName();
        return $this->performSubRendering(
            $controllerExtensionKey,
            $controllerName,
            $actualActionName,
            $pluginSignature
        );
at FluidTYPO3\Flux\Controller\AbstractFluxController->renderAction()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Controller/ActionController.php line 498
        }
        $validationResult = $this->arguments->validate();
        if (!$validationResult->hasErrors()) {
            $this->eventDispatcher->dispatch(new BeforeActionCallEvent(static::class, $this->actionMethodName, $preparedArguments));
            $actionResult = $this->{$this->actionMethodName}(...$preparedArguments);
        } else {
            $actionResult = $this->{$this->errorMethodName}();
        }

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

    /**
at TYPO3\CMS\Extbase\Mvc\Controller\ActionController->processRequest(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Dispatcher.php line 89
                throw new InfiniteLoopException('Could not ultimately dispatch the request after ' . $dispatchLoopCount . ' iterations. Most probably, a @' . IgnoreValidation::class . ' annotation is missing on re-displaying a form with validation errors.', 1217839467);
            }
            $controller = $this->resolveController($request);
            try {
                $controller->processRequest($request, $response);
            } catch (StopActionException $ignoredException) {
            }
        }

at TYPO3\CMS\Extbase\Mvc\Dispatcher->dispatch(object(TYPO3\CMS\Extbase\Mvc\Web\Request), object(TYPO3\CMS\Extbase\Mvc\Web\Response))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 66
        }

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

    /**
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 183
    protected function handleRequest(): string
    {
        $requestHandler = $this->requestHandlerResolver->resolveRequestHandler();

        $response = $requestHandler->handleRequest();
        // If response is NULL after handling the request we need to stop
        // This happens for instance, when a USER object was converted to a USER_INT
        // @see TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler::handleRequest()
        if ($response === null) {
at TYPO3\CMS\Extbase\Core\Bootstrap->handleRequest()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/extbase/Classes/Core/Bootstrap.php line 173
     */
    public function run(string $content, array $configuration): string
    {
        $this->initialize($configuration);
        return $this->handleRequest();
    }

    /**
     * @return string
at TYPO3\CMS\Extbase\Core\Bootstrap->run('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'))
at call_user_func_array(array(object(TYPO3\CMS\Extbase\Core\Bootstrap), 'run'), array('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page')))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 5720
                if (is_object($classObj) && method_exists($classObj, $parts[1]) && is_callable($callable)) {
                    $classObj->cObj = $this;
                    $content = call_user_func_array($callable, [
                        $content,
                        $conf
                    ]);
                } else {
                    $this->getTimeTracker()->setTSlogMessage('Method "' . $parts[1] . '" did not exist in class "' . $parts[0] . '"', 3);
                }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction('TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'), '')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/UserContentObject.php line 43
        if ($this->cObj->getUserObjectType() === false) {
            // Come here only if we are not called from $TSFE->processNonCacheableContentPartsAndSubstituteContentMarkers()!
            $this->cObj->setUserObjectType(ContentObjectRenderer::OBJECTTYPE_USER);
        }
        $tempContent = $this->cObj->callUserFunction($conf['userFunc'], $conf, '');
        if ($this->cObj->doConvertToUserIntObject) {
            $this->cObj->doConvertToUserIntObject = false;
            $content = $this->cObj->cObjGetSingle('USER_INT', $conf);
        } else {
at TYPO3\CMS\Frontend\ContentObject\UserContentObject->render(array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 829
        }

        // Render content
        try {
            $content .= $contentObject->render($configuration);
        } catch (ContentRenderingException $exception) {
            // Content rendering Exceptions indicate a critical problem which should not be
            // caught e.g. when something went wrong with Exception handling itself
            throw $exception;
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->render(object(TYPO3\CMS\Frontend\ContentObject\UserContentObject), array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 743
                }
                if (!$hooked) {
                    $contentObject = $this->getContentObject($name);
                    if ($contentObject) {
                        $content .= $this->render($contentObject, $conf);
                    } else {
                        // Call hook functions for extra processing
                        if ($name) {
                            if (!empty($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['tslib/class.tslib_content.php']['cObjTypeAndClassDefault'])) {
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle('USER', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'), '5')
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php line 688
        foreach ($sKeyArray as $theKey) {
            $theValue = $setup[$theKey];
            if ((int)$theKey && strpos($theKey, '.') === false) {
                $conf = $setup[$theKey . '.'] ?? [];
                $content .= $this->cObjGetSingle($theValue, $conf, $addKey . $theKey);
            }
        }
        return $content;
    }
at TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet(array('typeNum' => '0', 'USER', '5.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Fluidpages', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'), 'includeCSS.' => array('social_gdpr' => 'EXT:social_gdpr/Resources/Public/Css/styles.css', 'femanagerMain' => 'EXT:femanager/Resources/Public/Css/Main.min.css', 'we_cookie_consent_style' => 'EXT:we_cookie_consent/Resources/Public/Stylesheet/style.css', 'simplepoll' => 'typo3conf/templates/_shared/ext/simplepool/Public/Css/simplepoll.css', 'waconcookiemanagement' => 'EXT:wacon_cookie_management/Resources/Public/Css/waconcookiemanagement.css', 'default' => 'typo3conf/templates/main/assets/css/etz.min.css', 'default.' => array('media' => 'all'), 'dev_review' => 'typo3conf/templates/_shared/css/_REVIEW.css'), 'includeJSFooter.' => array('social_gdpr' => 'EXT:social_gdpr/Resources/Public/JavaScript/decode.js', 'femanagerValidation' => 'EXT:femanager/Resources/Public/JavaScript/Validation.min.js', 'femanager' => 'EXT:femanager/Resources/Public/JavaScript/Femanager.min.js', 'tx_rxshariff_shariff' => 'EXT:rx_shariff/Resources/Public/JavaScript/shariff.complete.js', 'simplepoll' => 'EXT:simplepoll/Resources/Public/JavaScript/main.js', 'solr-uri' => 'EXT:solr/Resources/Public/JavaScript/JQuery/URI.min.js', 'solr-uri-jquery' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery.URI.min.js', 'solr-ajaxify' => 'typo3conf/templates/_shared/JavaScript/search_controller.js', 'solr-autocomplete' => 'EXT:solr/Resources/Public/JavaScript/JQuery/jquery.autocomplete.min.js', 'solr-suggest' => 'typo3conf/templates/_shared/JavaScript/suggest_controller.js', 'waconcookiemanagement' => 'EXT:wacon_cookie_management/Resources/Public/JavaScript/waconcookiemanagement.js', 'gmapClustering' => 'EXT:referenzen/Resources/Public/Scripts/markerclusterer.js', 'gmap' => 'EXT:referenzen/Resources/Public/Scripts/gmap.js'), 'config.' => array('doctype' => '<!doctype html>', 'xhtml_cleaning' => 'all', 'xmlprologue' => 'none', 'htmlTag_stdWrap.' => array('setContentToCurrent' => '1', 'cObject' => 'COA', 'cObject.' => array('temp' => 'TEXT', 'temp.' => array('addParams.' => array('class' => 'no-js'), 'append' => 'TEXT', 'append.' => array('char' => '10'), 'current' => '1'), 'TEXT', '70.' => array('addParams.' => array('class' => 'no-js'), 'append' => 'TEXT', 'append.' => array('char' => '10'), 'current' => '1'))), 'no_cache' => '0', 'cache_period' => '604800', 'cache_clearAtMidnight' => '1', 'sendCacheHeaders' => '1', 'absRefPrefix' => '/', 'headerComment' => 'TYPO3 by Q3i - http://www.q3i.de', 'pageTitlefirst' => '1', 'noPageTitle' => '2', 'inlineStyle2Tempfile' => '1', 'removeDefaultJS' => 'external', 'simulateStaticDocuments' => '0', 'frontend_editing' => '1', 'uniqueLinkVars' => '1', 'spamProtectEmailAddresses' => '1', 'spamProtectEmailAddresses_atSubst' => '<span>&#064;</span>', 'metaCharset' => 'utf-8', 'renderCharset' => 'utf-8', 'index_enable' => '1', 'index_externals' => '1', 'admPanel' => '1', 'concatenateJs' => '1', 'concatenateCss' => '1', 'compressJs' => '1', 'compressCss' => '1', 'linkVars' => 'L(0-99)', 'sys_language_uid' => '0', 'language' => 'de', 'locale_all' => 'de_DE.UTF-8', 'sys_language_mode' => 'strict', 'sys_language_overlay' => 'hideNonTranslated', 'fileTarget' => '_blank', 'intTarget' => '_top'), 'includeJS.' => array(), 'meta.' => array('robots.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => 'noindex', 'if.' => array('equals.' => array('field' => 'no_index'), 'value' => '1')), 'TEXT', '11.' => array('value' => 'index', 'if.' => array('equals.' => array('field' => 'no_index'), 'value' => '0'), 'override' => 'noindex', 'override.' => array('if.' => array('isFalse' => '1'))), 'TEXT', '20.' => array('value' => ','), 'TEXT', '30.' => array('value' => 'nofollow', 'if.' => array('equals.' => array('field' => 'no_follow'), 'value' => '1')), 'TEXT', '31.' => array('value' => 'follow', 'if.' => array('equals.' => array('field' => 'no_follow'), 'value' => '0'), 'override' => 'nofollow', 'override.' => array('if.' => array('isFalse' => '1')))), 'override' => 'index,follow', 'override.' => array('if.' => array('isTrue' => '1'))), 'og:image.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array('table' => 'pages', 'uid.' => array('data' => 'page:uid'), 'fieldName' => 'og_image'), 'renderObj' => 'TEXT', 'renderObj.' => array('typolink.' => array('parameter.' => array('stdWrap.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'file:current:uid'), 'treatIdAsReference' => '1', 'cropVariant' => 'social', 'maxW' => '1200', 'maxH' => '628')))), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1'))), 'attribute' => 'property'), 'twitter:image.' => array('cObject' => 'FILES', 'cObject.' => array('references.' => array('table' => 'pages', 'uid.' => array('data' => 'page:uid'), 'fieldName' => 'twitter_image'), 'maxItems' => '1', 'renderObj' => 'TEXT', 'renderObj.' => array('typolink.' => array('parameter.' => array('stdWrap.' => array('cObject' => 'IMG_RESOURCE', 'cObject.' => array('file.' => array('import.' => array('data' => 'file:current:uid'), 'treatIdAsReference' => '1', 'cropVariant' => 'social', 'maxW' => '1200', 'maxH' => '628')))), 'returnLast' => 'url', 'forceAbsoluteUrl' => '1')))), 'viewport' => 'width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no', 'X-UA-Compatible' => 'IE=edge', 'robots' => 'noindex,nofollow', 'author' => 'VDE VERLAG GMBH', 'author.' => array('override.' => array('data' => 'field:author'), 'cObject' => '< lib.yoastSEO.author'), 'twitter:title.' => array('cObject' => '< lib.yoastSEO.pageTitle'), 'twitter:description.' => array('cObject' => '< lib.yoastSEO.description')), 'jsInline.' => array('TEXT', '30.' => array('value' => ' (function(e,t,n){var r=e.querySelectorAll("html")[0]; r.className=r.className.replace(/(^|\\s)no-js(\\s|$)/,"$1js$2")})(document,window,0);')), 'bodyTagCObject' => 'CASE', 'bodyTagCObject.' => array('key.' => array('data' => 'levelfield:-1, tx_fed_page_controller_action, slide', 'substring' => '22,20'), 'default' => 'TEXT', 'default.' => array('value' => '<body id="top">'), 'default_wrapped' => 'COA', 'default_wrapped.' => array('wrap' => '<body id="top" class="pid-|">', 'TEXT', '10.' => array('data' => 'field:uid', 'insertData' => '1'), 'TEXT', '20.' => array('value' => 'default', 'wrap' => '|')), '2Col' => 'COA', '2Col.' => array('wrap' => '<body class="antialiased hide-extras pid-|">', 'TEXT', '10.' => array('data' => 'field:uid', 'insertData' => '1'), 'TEXT', '20.' => array('value' => 'layout-2Col', 'wrap' => '|')), 'Developer' => 'COA', 'Developer.' => array('wrap' => '<body class="antialiased hide-extras pid-|">', 'TEXT', '10.' => array('data' => 'field:uid', 'insertData' => '1'), 'TEXT', '20.' => array('value' => 'layout-Developer', 'wrap' => '|')), 'TEXT', '0.' => array('value' => '<body id="top">')), 'bodyTag' => '<body id="top">', 'shortcutIcon' => '', '10.' => array('file.' => array('stdWrap.' => array('cObject' => 'CASE', 'cObject.' => array('key.' => array('data' => 'levelfield:-1, backend_layout_next_level, slide', 'override.' => array('field' => 'backend_layout')), 'default' => 'TEXT', 'default.' => array('value' => 'typo3conf/templates/_shared/Fluid/Page/Default.html'), 'TEXT', '1.' => array('value' => 'typo3conf/templates/_shared/Fluid/Page/Default.html'))))), 'headerData.' => array('COA', '5.' => array('TEXT', '20.' => array('value' => '<link rel="icon" type="image/x-icon" href="/favicon.ico">', 'noTrimWrap' => '|||'), 'COA', '999.' => array('stdWrap.' => array('if.' => array('isTrue' => '1'), 'wrap' => '<!-- analytics BEGIN --> | <!- analytics END- -->'), 'USER', '10.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderGa')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000'))), 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderPiwik')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000'))), 'USER', '30.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'vendorName' => 'Q3i', 'extensionName' => 'Q3iAnalytics', 'pluginName' => 'Renderer', 'controller' => 'Renderer', 'switchableControllerActions.' => array('Renderer.' => array('renderEtracker')), 'view.' => array('templateRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Templates/', ''), 'partialRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Partials/', ''), 'layoutRootPaths.' => array('EXT:q3i_analytics/Resources/Private/Layouts/', '')), 'persistence.' => array(), 'settings.' => array('enableWaconCookieManagement' => '0', 'etracker.' => array('enable' => '1', 'secureCode' => 'OBVbo9', 'params.' => array('et_areas' => '', 'et_pagename' => 'NONE', 'et_ilevel' => '0', 'et_tval' => '0', 'et_tsale' => '0', 'et_cust' => '0', 'et_popto' => '1000', 'et_se' => '0'), 'pageNamePrefix' => '', 'homePID' => '1', 'rootPID' => '1', 'blockCookies' => '{$plugin.tx_q3ianalytics.etracker.blockCookies}'), 'piwik.' => array('enable' => '0', 'apiEndpoint' => 'https://piwik.somesite.info', 'siteId' => '0'), 'ga.' => array('enable' => '0', 'apiKey' => '0000000-0', 'anonymizeIp' => '1'), 'gtagManager.' => array('enable' => '0', 'apiKey' => '0000000-0', 'tagIds' => ' { "ga": "UA-0000000-X", "tag1": "SOME_TAG_1", "tag2": "SOME_TAG_2" }', 'tagsToRender' => 'ga,tag2'), 'fbPixel.' => array('enable' => '0', 'id' => '0000000000000000000')))), '< lib.yoastSEO.pageTitle', '10.' => array('wrap' => '<title>|</title>', 'noTrimWrap' => '|||'), 'TEXT', '21.' => array('value' => '<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">', 'noTrimWrap' => '|||'), 'TEXT', '22.' => array('value' => '<link rel="icon" type="image/x-icon" sizes="192x192" href="/typo3conf/templates/_shared/gfx/icons/favicon-192.png">', 'noTrimWrap' => '|||'), 'TEXT', '23.' => array('value' => '<link rel="apple-touch-icon" sizes="180x180" href="/typo3conf/templates/_shared/gfx/icons/favicon-180-precomposed.png">', 'noTrimWrap' => '|||'), 'TEXT', '24.' => array('value' => '<meta name="msapplication-TileImage" content="/typo3conf/templates/_shared/gfx/icons/favicon-114-precomposed.png">', 'noTrimWrap' => '|||'), 'TEXT', '25.' => array('value' => '<meta name="msapplication-TileColor" content="#FFFFFF">', 'noTrimWrap' => '|||'))), 'footerData.' => array('COA', '20.' => array('TEXT', '10.' => array('value' => '<!-- visitor-analytics disabled -->'))), 'includeJSFooterlibs.' => array('ie' => 'typo3conf/templates/_shared/JavaScript/ie.js', 'app' => 'typo3conf/templates/main/assets/js/app.min.js'), 'jsFooterInline.' => array(), 'CONTENT', '9999.' => array('table' => 'tt_content', 'select.' => array('pidInList' => '44', 'where' => 'colPos = 1')), 'COA', '3.' => array()))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 232
     * @return string
     */
    protected function generatePageBodyContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageBodyContent(object(Q3i\Q3iBase\Ext\Typo3\Frontend\Controller\TypoScriptFrontendController))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 198
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(Q3i\Q3iBase\Ext\Typo3\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 134
            // Content generation
            $this->timeTracker->incStackPointer();
            $this->timeTracker->push($controller->sPre, 'PAGE');

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

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

at TYPO3\CMS\Frontend\Http\RequestHandler->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 48
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_smart-production/live/typo3conf/ext/solr/Classes/Middleware/PageIndexerFinisher.php line 54
     * @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(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelDataPersister.php line 45
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelDataPersister->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/adminpanel/Classes/Middleware/AdminPanelRenderer.php line 47
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)
at TYPO3\CMS\Adminpanel\Middleware\AdminPanelRenderer->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/ContentLengthResponseHeader.php line 47
     * @return ResponseInterface
     */
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
    {
        $response = $handler->handle($request);
        if (
            !($response instanceof NullResponse)
            && $GLOBALS['TSFE'] instanceof TypoScriptFrontendController
            && $GLOBALS['TSFE']->isOutputting(true)) {
at TYPO3\CMS\Frontend\Middleware\ContentLengthResponseHeader->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/ShortcutAndMountPointRedirect.php line 69
                return new RedirectResponse($externalUrl, 303);
            }
        }

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

    protected function getRedirectUri(ServerRequestInterface $request): ?string
    {
at TYPO3\CMS\Frontend\Middleware\ShortcutAndMountPointRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_smart-production/live/typo3conf/ext/shortcut_statuscodes/Classes/Middleware/ShortcutRedirect.php line 48

            return new RedirectResponse($redirectToUri, $statusCode);
        }

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

    /**
     * Return the uri to redirect to.
at WebitDe\ShortcutStatuscodes\Middleware\ShortcutRedirect->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/PrepareTypoScriptFrontendRendering.php line 86
                $this->convertCharsetRecursivelyToUtf8($parsedBody, $this->controller->metaCharset);
                $request = $request->withParsedBody($parsedBody);
            }
        }
        return $handler->handle($request);
    }

    /**
     * Small helper function to convert charsets for arrays to UTF-8
at TYPO3\CMS\Frontend\Middleware\PrepareTypoScriptFrontendRendering->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/TypoScriptFrontendInitialization.php line 108
        }

        // Make TSFE globally available
        $GLOBALS['TSFE'] = $controller;
        return $handler->handle($request);
    }

    /**
     * Register the backend user as aspect
at TYPO3\CMS\Frontend\Middleware\TypoScriptFrontendInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_smart-production/live/typo3conf/ext/yoast_seo/Classes/Middleware/PageRequestMiddleware.php line 31
        if (YoastRequestHash::isValid($request->getServerParams())) {
            $context = GeneralUtility::makeInstance(Context::class);
            $context->setAspect('visibility', new VisibilityAspect(true));
        }
        return $handler->handle($request);
    }
}
at YoastSeoForTypo3\YoastSeo\Middleware\PageRequestMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_smart-production/live/typo3conf/ext/solr/Classes/Middleware/PageIndexerInitialization.php line 78
            }
            $pageIndexerRequestHandler->run();
        }

        return $handler->handle($request);
    }
}
at ApacheSolrForTypo3\Solr\Middleware\PageIndexerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_smart-production/live/typo3conf/ext/solr/Classes/Middleware/FrontendUserAuthenticator.php line 82
    {
        if (Util::getIsTYPO3VersionBelow10()
            || !$request->hasHeader(PageIndexerRequest::SOLR_INDEX_HEADER)
        ) {
            return $handler->handle($request);
        }

        // disable TSFE cache for TYPO3 v10
        $request = $request->withAttribute('noCache', true);
at ApacheSolrForTypo3\Solr\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/workspaces/Classes/Middleware/WorkspacePreviewPermissions.php line 47
        $pageArguments = $request->getAttribute('routing', null);
        if ($pageArguments instanceof PageArguments && $GLOBALS['BE_USER'] instanceof PreviewUserAuthentication) {
            $GLOBALS['BE_USER']->setWebmounts([$pageArguments->getPageId()]);
        }
        return $handler->handle($request);
    }
}
at TYPO3\CMS\Workspaces\Middleware\WorkspacePreviewPermissions->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/PageArgumentValidator.php line 131
            }
        }

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

    /**
     * Filters out the arguments that are necessary for calculating cHash
at TYPO3\CMS\Frontend\Middleware\PageArgumentValidator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/workspaces/Classes/Middleware/WorkspacePreview.php line 127
            $addInformationAboutDisabledCache = true;
            $setCookieOnCurrentRequest = false;
        }

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

        if ($GLOBALS['TSFE'] instanceof TypoScriptFrontendController && $addInformationAboutDisabledCache) {
            $GLOBALS['TSFE']->set_no_cache('GET Parameter ADMCMD_prev=LIVE was given', true);
        }
at TYPO3\CMS\Workspaces\Middleware\WorkspacePreview->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/FrontendUserAuthenticator.php line 83
        // Register the frontend user as aspect and within the session
        $this->setFrontendUserAspect($frontendUser);
        $request = $request->withAttribute('frontend.user', $frontendUser);

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

        // Store session data for fe_users if it still exists
        if ($frontendUser instanceof FrontendUserAuthentication) {
            $frontendUser->storeSessionData();
at TYPO3\CMS\Frontend\Middleware\FrontendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Middleware/BackendUserAuthenticator.php line 66
            Bootstrap::loadExtTables();
            $this->setBackendUserAspect($GLOBALS['BE_USER']);
        }

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

        // If, when building the response, the user is still available, then ensure that the headers are sent properly
        if ($this->context->getAspect('backend.user')->isLoggedIn()) {
            return $this->applyHeadersToResponse($response);
at TYPO3\CMS\Frontend\Middleware\BackendUserAuthenticator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

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

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$392->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/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/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/AbstractApplication.php line 85
     * @return ResponseInterface
     */
    protected function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->requestHandler->handle($request);
    }

    /**
     * Set up the application and shut it down afterwards
at TYPO3\CMS\Core\Http\AbstractApplication->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/frontend/Classes/Http/Application.php line 69
        // Create new request object having applicationType "I am a frontend request" attribute.
        $request = $request->withAttribute('applicationType', SystemEnvironmentBuilder::REQUESTTYPE_FE);

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

    /**
     * Check if LocalConfiguration.php and PackageStates.php exist
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/typo3/sysext/core/Classes/Http/AbstractApplication.php line 97
    final public function run(callable $execute = null)
    {
        try {
            $response = $this->handle(
                ServerRequestFactory::fromGlobals()
            );
            if ($execute !== null) {
                call_user_func($execute);
            }
at TYPO3\CMS\Core\Http\AbstractApplication->run()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/index.php line 25
// Set up the application for the frontend
call_user_func(function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /html/_DEPLOY/TYPO3_SRC/typo3_src-10.4.41/index.php line 26
call_user_func(function () {
    $classLoader = require __DIR__.'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});