Whoops, looks like something went wrong.

Get help in the TYPO3 Documentation

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

Find a solution for this exception in the TYPO3 Documentation.

(1/1) #1313855175 TYPO3\CMS\Extbase\Mvc\Exception\InvalidActionNameException

The action "list" (controller "ONM\OnmPortfolio\Controller\ProjectController") is not allowed by this plugin / module. Please check TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin() in your ext_localconf.php / TYPO3\CMS\Extbase\Utility\ExtensionUtility::configureModule() in your ext_tables.php.

in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/extbase/Classes/Mvc/Web/RequestBuilder.php line 308
            }
            if (isset($configuration['mvc']['callDefaultActionIfActionCantBeResolved']) && (bool)$configuration['mvc']['callDefaultActionIfActionCantBeResolved']) {
                return $defaultActionName;
            }
            throw new InvalidActionNameException('The action "' . $actionName . '" (controller "' . $controllerClassName . '") is not allowed by this plugin / module. Please check TYPO3\\CMS\\Extbase\\Utility\\ExtensionUtility::configurePlugin() in your ext_localconf.php / TYPO3\\CMS\\Extbase\\Utility\\ExtensionUtility::configureModule() in your ext_tables.php.', 1313855175);
        }
        return filter_var($actionName, FILTER_SANITIZE_STRING);
    }

at TYPO3\CMS\Extbase\Mvc\Web\RequestBuilder->resolveActionName('ONM\\OnmPortfolio\\Controller\\ProjectController', array('action' => 'list', 'controller' => 'Project', 'framework' => '5', 'type' => '5', 'customer' => '16'))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/extbase/Classes/Mvc/Web/RequestBuilder.php line 212
            $parameters = array_replace_recursive($parameters, $files[$pluginNamespace]);
        }

        $controllerClassName = $this->resolveControllerClassName($parameters);
        $actionName = $this->resolveActionName($controllerClassName, $parameters);

        $baseUri = GeneralUtility::getIndpEnv('TYPO3_SITE_URL');
        if ($this->environmentService->isEnvironmentInBackendMode()) {
            $baseUri .= TYPO3_mainDir;
at TYPO3\CMS\Extbase\Mvc\Web\RequestBuilder->build()
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/extbase/Classes/Mvc/Web/FrontendRequestHandler.php line 47
     * @return \TYPO3\CMS\Extbase\Mvc\ResponseInterface|null
     */
    public function handleRequest()
    {
        $request = $this->requestBuilder->build();
        if ($this->isActionCacheable($request->getControllerObjectName(), $request->getControllerActionName())) {
            $request->setIsCached(true);
        } else {
            $contentObject = $this->configurationManager->getContentObject();
at TYPO3\CMS\Extbase\Mvc\Web\FrontendRequestHandler->handleRequest()
in /usr/www/users/onmde/www.onm.de/releases/7/public/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 /usr/www/users/onmde/www.onm.de/releases/7/public/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' => 'OnmPortfolio', 'pluginName' => 'Referenzen'))
at call_user_func_array(array(object(TYPO3\CMS\Extbase\Core\Bootstrap), 'run'), array('', array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmPortfolio', 'pluginName' => 'Referenzen')))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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' => 'OnmPortfolio', 'pluginName' => 'Referenzen'), '')
in /usr/www/users/onmde/www.onm.de/releases/7/public/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' => 'OnmPortfolio', 'pluginName' => 'Referenzen'))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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' => 'OnmPortfolio', 'pluginName' => 'Referenzen'))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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' => 'OnmPortfolio', 'pluginName' => 'Referenzen'), 'tt_content.list.20.onmportfolio_referenzen')
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/fluid/Classes/ViewHelpers/CObjectViewHelper.php line 193
        if ($timeTracker->LR) {
            $timeTracker->push('/f:cObject/', '<' . $typoscriptObjectPath);
        }
        $timeTracker->incStackPointer();
        $content = $contentObjectRenderer->cObjGetSingle($setup[$lastSegment], $setup[$lastSegment . '.'] ?? [], $typoscriptObjectPath);
        $timeTracker->decStackPointer();
        if ($timeTracker->LR) {
            $timeTracker->pull($content);
        }
at TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderContentObject(object(TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer), array('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'onm_redirect' => 'USER', 'onm_redirect.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Redirect'), 'onmcontact_contacts' => 'USER', 'onmcontact_contacts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Contacts'), 'onmcontact_form' => 'USER', 'onmcontact_form.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Form'), 'onmcontact_api' => 'USER', 'onmcontact_api.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Api'), 'onmjobs_onmjobs' => 'USER', 'onmjobs_onmjobs.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmJobs', 'pluginName' => 'OnmJobs'), 'onmportfolio_referenzen' => 'USER', 'onmportfolio_referenzen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmPortfolio', 'pluginName' => 'Referenzen'), 'onmsocialfeed_socialfeed' => 'USER', 'onmsocialfeed_socialfeed.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmSocialfeed', 'pluginName' => 'Socialfeed')), 'tt_content.list.20.onmportfolio_referenzen', 'onmportfolio_referenzen')
in /usr/www/users/onmde/www.onm.de/releases/7/public/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' => 106, 'pid' => 61, '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, 'tstamp' => 1465464301, 'crdate' => 1465391902, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 1792, 'CType' => 'list', 'header' => '', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 102, 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'image_noRows' => 0, 'image_effects' => 0, 'image_compression' => 0, 'header_layout' => '0', 'menu_type' => '0', 'list_type' => 'onmportfolio_referenzen', 'table_border' => 0, 'table_cellspacing' => 0, 'table_cellpadding' => 0, 'table_bgColor' => 0, 'select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'section_frame' => 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="switchableControllerActions"> <value index="vDEF">Project-&gt;topTile</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:31:{s:5:"CType";N;s:6:"colPos";N;s:16:"sys_language_uid";N;s:6:"header";N;s:9:"subheader";N;s:13:"header_layout";N;s:17:"tx_onm_headertype";N;s:11:"header_link";N;s:14:"rowDescription";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:10:"select_key";N;s:5:"pages";N;s:9:"recursive";N;s:6:"layout";N;s:11:"spaceBefore";N;s:13:"section_frame";N;s:13:"tx_onm_curves";N;s:23:"tx_onm_curves_randomize";N;s:21:"tx_onm_curves_animate";N;s:22:"tx_onm_curves_position";N;s:25:"tx_onm_curves_transparent";N;s:12:"sectionIndex";N;s:9:"linkToTop";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:16:"tx_flux_children";N;}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'tx_flux_column' => '', 'tx_flux_parent' => 0, 'tx_flux_children' => 0, 'tx_fed_fcefile' => '', 'tx_news_related_news' => 0, 'tx_onmstyledcontent_images_cropping' => 0, 'tx_onmstyledcontent_images_ratio' => 0, 'tx_onm_headertype' => 0, 'tx_onm_curves' => 0, 'tx_onm_curves_animate' => '', 'tx_onm_curves_randomize' => '', 'tx_onm_curves_position' => 0, 'tx_onm_curves_transparent' => 0, 'tx_onmstyledcontent_hide_viewport' => null, 'tx_hsmail_form_groupid' => '', 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'filelink_sorting_direction' => '', 'table_class' => '', 'tx_flux_migrated_version' => null, 'l10n_source' => 0, 'tx_hsmail_form' => 0), 'typoscriptObjectPath' => 'tt_content.list.20.onmportfolio_referenzen', 'currentValueKey' => null, 'table' => 'tt_content'), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/www/users/onmde/www.onm.de/releases/7/var/cache/code/fluid_template/Standard_action_list_9474e9eeb4a1fa1f45ad72a9ade3d2dbeeafdd4a.php line 74
$array11 = array (
);$arguments7['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array11);
$arguments7['table'] = 'tt_content';
$renderChildrenClosure8 = ($arguments7['data'] !== null) ? function() use ($arguments7) { return $arguments7['data']; } : $renderChildrenClosure8;
$output6 .= TYPO3\CMS\Fluid\ViewHelpers\CObjectViewHelper::renderStatic($arguments7, $renderChildrenClosure8, $renderingContext);

$output6 .= '
    ';
return $output6;
at Standard_action_list_9474e9eeb4a1fa1f45ad72a9ade3d2dbeeafdd4a->{closure}()
in /usr/www/users/onmde/www.onm.de/releases/7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 79
            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 /usr/www/users/onmde/www.onm.de/releases/7/var/cache/code/fluid_template/Standard_action_list_9474e9eeb4a1fa1f45ad72a9ade3d2dbeeafdd4a.php line 99
     $renderingContext
    );
$arguments1['__thenClosure'] = $renderChildrenClosure2;

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

$output0 .= '

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

$output13 .= TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper::renderStatic($arguments40, $renderChildrenClosure41, $renderingContext);

$output13 .= '
                    ';
// Rendering ViewHelper TYPO3\CMS\Fluid\ViewHelpers\RenderViewHelper
at layout_Default_html_d5a4ddc38d59fcacc5e6a450821c4a2a85655511->{closure}()
in /usr/www/users/onmde/www.onm.de/releases/7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 297
    public function renderChildren()
    {
        if ($this->renderChildrenClosure !== null) {
            $closure = $this->renderChildrenClosure;
            return $closure();
        }
        return $this->viewHelperNode->evaluateChildNodes($this->renderingContext);
    }

at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->renderChildren()
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3conf/ext/onm/Classes/ViewHelpers/ContentTagViewHelper.php line 89
  if ($innerWrapClass != '') {
   $content .= "<div class=\"{$innerWrapClass}\">";
  }

  $content .= $this->renderChildren();

  if ($innerWrapClass != '') {
   $content .= "</div>";
  }
at ONM\Onm\ViewHelpers\ContentTagViewHelper->render()
at call_user_func(array(object(ONM\Onm\ViewHelpers\ContentTagViewHelper), 'render'))
in /usr/www/users/onmde/www.onm.de/releases/7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 258
     */
    protected function callRenderMethod()
    {
        if (method_exists($this, 'render')) {
            return call_user_func([$this, 'render']);
        }
        if ((new \ReflectionMethod($this, 'renderStatic'))->getDeclaringClass()->getName() !== AbstractViewHelper::class) {
            // Method is safe to call - will not recurse through ViewHelperInvoker via the default
            // implementation of renderStatic() on this class.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->callRenderMethod()
in /usr/www/users/onmde/www.onm.de/releases/7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 246
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /usr/www/users/onmde/www.onm.de/releases/7/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 80
            }
            $viewHelper->setRenderingContext($renderingContext);
            $viewHelper->setArguments($evaluatedArguments);
            $viewHelper->handleAdditionalArguments($undeclaredArguments);
            return $viewHelper->initializeArgumentsAndRender();
        } catch (Exception $error) {
            return $renderingContext->getErrorHandler()->handleViewHelperError($error);
        }
    }
at TYPO3Fluid\Fluid\Core\ViewHelper\ViewHelperInvoker->invoke('ONM\\Onm\\ViewHelpers\\ContentTagViewHelper', array('additionalAttributes' => null, 'data' => array('uid' => 106, 'pid' => 61, '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, 'tstamp' => 1465464301, 'crdate' => 1465391902, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 1792, 'CType' => 'list', 'header' => '', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 102, 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'image_noRows' => 0, 'image_effects' => 0, 'image_compression' => 0, 'header_layout' => '0', 'menu_type' => '0', 'list_type' => 'onmportfolio_referenzen', 'table_border' => 0, 'table_cellspacing' => 0, 'table_cellpadding' => 0, 'table_bgColor' => 0, 'select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'section_frame' => 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="switchableControllerActions"> <value index="vDEF">Project-&gt;topTile</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:31:{s:5:"CType";N;s:6:"colPos";N;s:16:"sys_language_uid";N;s:6:"header";N;s:9:"subheader";N;s:13:"header_layout";N;s:17:"tx_onm_headertype";N;s:11:"header_link";N;s:14:"rowDescription";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:10:"select_key";N;s:5:"pages";N;s:9:"recursive";N;s:6:"layout";N;s:11:"spaceBefore";N;s:13:"section_frame";N;s:13:"tx_onm_curves";N;s:23:"tx_onm_curves_randomize";N;s:21:"tx_onm_curves_animate";N;s:22:"tx_onm_curves_position";N;s:25:"tx_onm_curves_transparent";N;s:12:"sectionIndex";N;s:9:"linkToTop";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:16:"tx_flux_children";N;}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'tx_flux_column' => '', 'tx_flux_parent' => 0, 'tx_flux_children' => 0, 'tx_fed_fcefile' => '', 'tx_news_related_news' => 0, 'tx_onmstyledcontent_images_cropping' => 0, 'tx_onmstyledcontent_images_ratio' => 0, 'tx_onm_headertype' => 0, 'tx_onm_curves' => 0, 'tx_onm_curves_animate' => '', 'tx_onm_curves_randomize' => '', 'tx_onm_curves_position' => 0, 'tx_onm_curves_transparent' => 0, 'tx_onmstyledcontent_hide_viewport' => null, 'tx_hsmail_form_groupid' => '', 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'filelink_sorting_direction' => '', 'table_class' => '', 'tx_flux_migrated_version' => null, 'l10n_source' => 0, 'tx_hsmail_form' => 0), 'aria' => null, 'additionalClass' => null, 'tagName' => null, 'class' => null, 'innerWrapClass' => null), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext), object(Closure))
in /usr/www/users/onmde/www.onm.de/releases/7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 515
     */
    public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
    {
        $viewHelperClassName = get_called_class();
        return $renderingContext->getViewHelperInvoker()->invoke($viewHelperClassName, $arguments, $renderingContext, $renderChildrenClosure);
    }

    /**
     * Save the associated ViewHelper node in a static public class variable.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper::renderStatic(array('additionalAttributes' => null, 'data' => array('uid' => 106, 'pid' => 61, '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, 'tstamp' => 1465464301, 'crdate' => 1465391902, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 1792, 'CType' => 'list', 'header' => '', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 102, 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'image_noRows' => 0, 'image_effects' => 0, 'image_compression' => 0, 'header_layout' => '0', 'menu_type' => '0', 'list_type' => 'onmportfolio_referenzen', 'table_border' => 0, 'table_cellspacing' => 0, 'table_cellpadding' => 0, 'table_bgColor' => 0, 'select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'section_frame' => 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="switchableControllerActions"> <value index="vDEF">Project-&gt;topTile</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:31:{s:5:"CType";N;s:6:"colPos";N;s:16:"sys_language_uid";N;s:6:"header";N;s:9:"subheader";N;s:13:"header_layout";N;s:17:"tx_onm_headertype";N;s:11:"header_link";N;s:14:"rowDescription";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:10:"select_key";N;s:5:"pages";N;s:9:"recursive";N;s:6:"layout";N;s:11:"spaceBefore";N;s:13:"section_frame";N;s:13:"tx_onm_curves";N;s:23:"tx_onm_curves_randomize";N;s:21:"tx_onm_curves_animate";N;s:22:"tx_onm_curves_position";N;s:25:"tx_onm_curves_transparent";N;s:12:"sectionIndex";N;s:9:"linkToTop";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:16:"tx_flux_children";N;}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'tx_flux_column' => '', 'tx_flux_parent' => 0, 'tx_flux_children' => 0, 'tx_fed_fcefile' => '', 'tx_news_related_news' => 0, 'tx_onmstyledcontent_images_cropping' => 0, 'tx_onmstyledcontent_images_ratio' => 0, 'tx_onm_headertype' => 0, 'tx_onm_curves' => 0, 'tx_onm_curves_animate' => '', 'tx_onm_curves_randomize' => '', 'tx_onm_curves_position' => 0, 'tx_onm_curves_transparent' => 0, 'tx_onmstyledcontent_hide_viewport' => null, 'tx_hsmail_form_groupid' => '', 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'filelink_sorting_direction' => '', 'table_class' => '', 'tx_flux_migrated_version' => null, 'l10n_source' => 0, 'tx_hsmail_form' => 0), 'aria' => null, 'additionalClass' => null, 'tagName' => null, 'class' => null, 'innerWrapClass' => null), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/www/users/onmde/www.onm.de/releases/7/var/cache/code/fluid_template/layout_Default_html_d5a4ddc38d59fcacc5e6a450821c4a2a85655511.php line 2796
$arguments10['innerWrapClass'] = NULL;
$array12 = array (
);$arguments10['data'] = $renderingContext->getVariableProvider()->getByPath('data', $array12);

$output9 .= ONM\Onm\ViewHelpers\ContentTagViewHelper::renderStatic($arguments10, $renderChildrenClosure11, $renderingContext);

$output9 .= '
            ';
return $output9;
at layout_Default_html_d5a4ddc38d59fcacc5e6a450821c4a2a85655511->{closure}()
in /usr/www/users/onmde/www.onm.de/releases/7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 79
            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 /usr/www/users/onmde/www.onm.de/releases/7/var/cache/code/fluid_template/layout_Default_html_d5a4ddc38d59fcacc5e6a450821c4a2a85655511.php line 3187
            ';
return $output60;
};

$output6 .= TYPO3Fluid\Fluid\ViewHelpers\IfViewHelper::renderStatic($arguments7, $renderChildrenClosure8, $renderingContext);

$output6 .= '
    ';
return $output6;
at layout_Default_html_d5a4ddc38d59fcacc5e6a450821c4a2a85655511->{closure}()
in /usr/www/users/onmde/www.onm.de/releases/7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 137
    private static function evaluateElseClosures(array $closures, array $conditionClosures, RenderingContextInterface $renderingContext)
    {
        foreach ($closures as $elseNodeIndex => $elseNodeClosure) {
            if (!isset($conditionClosures[$elseNodeIndex])) {
                return $elseNodeClosure();
            }
            if ($conditionClosures[$elseNodeIndex]()) {
                return $elseNodeClosure();
            }
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractConditionViewHelper::evaluateElseClosures(array(object(Closure)), array(), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/www/users/onmde/www.onm.de/releases/7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractConditionViewHelper.php line 83
                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 /usr/www/users/onmde/www.onm.de/releases/7/var/cache/code/fluid_template/layout_Default_html_d5a4ddc38d59fcacc5e6a450821c4a2a85655511.php line 3194
    ';
return $output6;
};

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

$output0 .= '

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

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /usr/www/users/onmde/www.onm.de/releases/7/public/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 /usr/www/users/onmde/www.onm.de/releases/7/public/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:onm/Resources/Private/Templates/FluidStyledContent/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:onm/Resources/Private/Partials/FluidStyledContent/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:onm/Resources/Private/Layouts/FluidStyledContent/'), 'settings.' => array('defaultHeaderType' => '2', '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('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'onm_redirect' => 'USER', 'onm_redirect.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Redirect'), 'onmcontact_contacts' => 'USER', 'onmcontact_contacts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Contacts'), 'onmcontact_form' => 'USER', 'onmcontact_form.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Form'), 'onmcontact_api' => 'USER', 'onmcontact_api.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Api'), 'onmjobs_onmjobs' => 'USER', 'onmjobs_onmjobs.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmJobs', 'pluginName' => 'OnmJobs'), 'onmportfolio_referenzen' => 'USER', 'onmportfolio_referenzen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmPortfolio', 'pluginName' => 'Referenzen'), 'onmsocialfeed_socialfeed' => 'USER', 'onmsocialfeed_socialfeed.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmSocialfeed', 'pluginName' => 'Socialfeed'))))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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:onm/Resources/Private/Templates/FluidStyledContent/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:onm/Resources/Private/Partials/FluidStyledContent/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:onm/Resources/Private/Layouts/FluidStyledContent/'), 'settings.' => array('defaultHeaderType' => '2', '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('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'onm_redirect' => 'USER', 'onm_redirect.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Redirect'), 'onmcontact_contacts' => 'USER', 'onmcontact_contacts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Contacts'), 'onmcontact_form' => 'USER', 'onmcontact_form.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Form'), 'onmcontact_api' => 'USER', 'onmcontact_api.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Api'), 'onmjobs_onmjobs' => 'USER', 'onmjobs_onmjobs.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmJobs', 'pluginName' => 'OnmJobs'), 'onmportfolio_referenzen' => 'USER', 'onmportfolio_referenzen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmPortfolio', 'pluginName' => 'Referenzen'), 'onmsocialfeed_socialfeed' => 'USER', 'onmsocialfeed_socialfeed.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmSocialfeed', 'pluginName' => 'Socialfeed'))))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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:onm/Resources/Private/Templates/FluidStyledContent/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:onm/Resources/Private/Partials/FluidStyledContent/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:onm/Resources/Private/Layouts/FluidStyledContent/'), 'settings.' => array('defaultHeaderType' => '2', '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('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'onm_redirect' => 'USER', 'onm_redirect.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Redirect'), 'onmcontact_contacts' => 'USER', 'onmcontact_contacts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Contacts'), 'onmcontact_form' => 'USER', 'onmcontact_form.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Form'), 'onmcontact_api' => 'USER', 'onmcontact_api.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Api'), 'onmjobs_onmjobs' => 'USER', 'onmjobs_onmjobs.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmJobs', 'pluginName' => 'OnmJobs'), 'onmportfolio_referenzen' => 'USER', 'onmportfolio_referenzen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmPortfolio', 'pluginName' => 'Referenzen'), 'onmsocialfeed_socialfeed' => 'USER', 'onmsocialfeed_socialfeed.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmSocialfeed', 'pluginName' => 'Socialfeed'))), 'lib.contentElement')
in /usr/www/users/onmde/www.onm.de/releases/7/public/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:onm/Resources/Private/Templates/FluidStyledContent/'), 'partialRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Partials/', 'EXT:onm/Resources/Private/Partials/FluidStyledContent/'), 'layoutRootPaths.' => array('EXT:fluid_styled_content/Resources/Private/Layouts/', 'EXT:onm/Resources/Private/Layouts/FluidStyledContent/'), 'settings.' => array('defaultHeaderType' => '2', '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('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'onm_redirect' => 'USER', 'onm_redirect.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Redirect'), 'onmcontact_contacts' => 'USER', 'onmcontact_contacts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Contacts'), 'onmcontact_form' => 'USER', 'onmcontact_form.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Form'), 'onmcontact_api' => 'USER', 'onmcontact_api.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Api'), 'onmjobs_onmjobs' => 'USER', 'onmjobs_onmjobs.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmJobs', 'pluginName' => 'OnmJobs'), 'onmportfolio_referenzen' => 'USER', 'onmportfolio_referenzen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmPortfolio', 'pluginName' => 'Referenzen'), 'onmsocialfeed_socialfeed' => 'USER', 'onmsocialfeed_socialfeed.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmSocialfeed', 'pluginName' => 'Socialfeed'))), 'list')
in /usr/www/users/onmde/www.onm.de/releases/7/public/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')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap' => '', 'innerWrap.' => array('cObject.' => array('TEXT', '0.' => array('value' => '|')))), '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'))), '20.' => array('rendering.' => array('singleNoCaption.' => array('allStdWrap.' => array('dataWrap.' => array('override' => '<div class="csc-textpic-imagewrap" data-csc-images="{register:imageCount}" data-csc-cols="{field:imagecols}"><div class="csc-textpic-imagerow"> | </div></div>')), 'rowStdWrap.' => array('wrap' => '|'), 'lastRowStdWrap.' => array('wrap' => '|')), 'noCaption.' => array('allStdWrap.' => array('dataWrap.' => array('override' => '<div class="csc-textpic-imagewrap" data-csc-images="{register:imageCount}" data-csc-cols="{field:imagecols}"><div class="csc-textpic-imagerow"> | </div></div>')), 'rowStdWrap.' => array('wrap' => '|'), 'lastRowStdWrap.' => array('wrap' => '|')), 'splitCaption.' => array('rowStdWrap.' => array('wrap' => '|'), 'lastRowStdWrap.' => array('wrap' => '|'))))), '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('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'onm_redirect' => 'USER', 'onm_redirect.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Redirect'), 'onmcontact_contacts' => 'USER', 'onmcontact_contacts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Contacts'), 'onmcontact_form' => 'USER', 'onmcontact_form.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Form'), 'onmcontact_api' => 'USER', 'onmcontact_api.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Api'), 'onmjobs_onmjobs' => 'USER', 'onmjobs_onmjobs.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmJobs', 'pluginName' => 'OnmJobs'), 'onmportfolio_referenzen' => 'USER', 'onmportfolio_referenzen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmPortfolio', 'pluginName' => 'Referenzen'), 'onmsocialfeed_socialfeed' => 'USER', 'onmsocialfeed_socialfeed.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmSocialfeed', 'pluginName' => 'Socialfeed'))), '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'))), '20.' => array('text.' => array('10.' => array()))), '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'))), '20.' => array('renderObj.' => array('20.' => array('override.' => array('data' => 'file:current:title'), 'typolink.' => array('ATagParams' => 'target="_blank"'))))), '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')), 'hsmail_form' => '< lib.contentElement', 'hsmail_form.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Hsmail', 'pluginName' => 'Form')), 'onm_blockquote' => '< lib.contentElement', 'onm_blockquote.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Blockquote')), 'onm_chart' => '< lib.contentElement', 'onm_chart.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Chart')), 'onm_chartslider' => '< lib.contentElement', 'onm_chartslider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Chartslider')), 'onm_devicegroup' => '< lib.contentElement', 'onm_devicegroup.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Devicegroup')), 'onm_group' => '< lib.contentElement', 'onm_group.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Group')), 'onm_map' => '< lib.contentElement', 'onm_map.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Map')), 'onm_multicolumn' => '< lib.contentElement', 'onm_multicolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Multicolumn')), 'onm_slider' => '< lib.contentElement', 'onm_slider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Slider')), 'onm_split' => '< lib.contentElement', 'onm_split.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Split')), 'onm_teaser' => '< lib.contentElement', 'onm_teaser.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Teaser')), 'onm_teaserlist' => '< lib.contentElement', 'onm_teaserlist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Teaserlist')), 'onm_tile' => '< lib.contentElement', 'onm_tile.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Tile')), 'onm_tilegroup' => '< lib.contentElement', 'onm_tilegroup.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Tilegroup')), 'menu.' => array('20.' => array('HMENU', '4.' => array('special' => 'directory', 'special.' => array('value.' => array('data' => 'field:pages // page:content_from_pid // page:uid', 'insertData' => '1')), 'stdWrap.' => array('wrap' => '<nav class="teaser-list">|</nav>', 'required' => '1'), 'TMENU', '1.' => array('stdWrap.' => array('wrap' => '<ul>|</ul>', 'required' => '1'), 'NO' => '1', 'NO.' => array('ATagBeforeWrap' => '1', 'wrapItemAndSub.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '<li class="teaser-list-teaser">|</li>'))), 'stdWrap.' => array('wrap.' => array('cObject' => 'COA', 'cObject.' => array('FILES', '10.' => array('references.' => array('table' => 'pages', 'uid.' => array(*DEEP NESTED ARRAY*), 'fieldName' => 'media'), 'renderObj' => '< plugin.tx_onmstyledcontent.image.renderObj'), 'TEXT', '14.' => array('value' => '<div class="teaser-list-text">'), 'TEXT', '15.' => array('value' => '<h5 class="teaser-list-header">|</h5>'), 'TEXT', '20.' => array('data' => 'field:abstract // field:description', 'wrap' => '<p>|</p>', 'stdWrap.' => array('required' => '1')), 'TEXT', '30.' => array('value' => '</div>'))), 'if.' => array('isTrue.' => array('field' => 'media')))))), 'default' => 'HMENU', 'default.' => array('special' => 'list', 'special.' => array('value.' => array('data' => 'field:pages // page:content_from_pid // page:uid', 'insertData' => '1')), 'stdWrap.' => array('wrap' => '<nav class="teaser-list">|</nav>', 'required' => '1'), 'TMENU', '1.' => array('stdWrap.' => array('wrap' => '<ul>|</ul>', 'required' => '1'), 'NO' => '1', 'NO.' => array('ATagBeforeWrap' => '1', 'wrapItemAndSub.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '<li class="teaser-list-teaser">|</li>'))), 'stdWrap.' => array('wrap.' => array('cObject' => 'COA', 'cObject.' => array('FILES', '10.' => array('references.' => array('table' => 'pages', 'uid.' => array(*DEEP NESTED ARRAY*), 'fieldName' => 'media'), 'renderObj' => '< plugin.tx_onmstyledcontent.image.renderObj'), 'TEXT', '14.' => array('value' => '<div class="teaser-list-text">'), 'TEXT', '15.' => array('value' => '<h5 class="teaser-list-header">|</h5>'), 'TEXT', '20.' => array('data' => 'field:abstract // field:description', 'wrap' => '<p>|</p>', 'stdWrap.' => array('required' => '1')), 'TEXT', '30.' => array('value' => '</div>'))), 'if.' => array('isTrue.' => array('field' => 'media'))))), 'includeNotInMenu' => '1'))), 'fluidcontent_content.' => array()))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap' => '', 'innerWrap.' => array('cObject.' => array('TEXT', '0.' => array('value' => '|')))), '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'))), '20.' => array('rendering.' => array('singleNoCaption.' => array('allStdWrap.' => array('dataWrap.' => array('override' => '<div class="csc-textpic-imagewrap" data-csc-images="{register:imageCount}" data-csc-cols="{field:imagecols}"><div class="csc-textpic-imagerow"> | </div></div>')), 'rowStdWrap.' => array('wrap' => '|'), 'lastRowStdWrap.' => array('wrap' => '|')), 'noCaption.' => array('allStdWrap.' => array('dataWrap.' => array('override' => '<div class="csc-textpic-imagewrap" data-csc-images="{register:imageCount}" data-csc-cols="{field:imagecols}"><div class="csc-textpic-imagerow"> | </div></div>')), 'rowStdWrap.' => array('wrap' => '|'), 'lastRowStdWrap.' => array('wrap' => '|')), 'splitCaption.' => array('rowStdWrap.' => array('wrap' => '|'), 'lastRowStdWrap.' => array('wrap' => '|'))))), '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('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'onm_redirect' => 'USER', 'onm_redirect.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Redirect'), 'onmcontact_contacts' => 'USER', 'onmcontact_contacts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Contacts'), 'onmcontact_form' => 'USER', 'onmcontact_form.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Form'), 'onmcontact_api' => 'USER', 'onmcontact_api.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Api'), 'onmjobs_onmjobs' => 'USER', 'onmjobs_onmjobs.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmJobs', 'pluginName' => 'OnmJobs'), 'onmportfolio_referenzen' => 'USER', 'onmportfolio_referenzen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmPortfolio', 'pluginName' => 'Referenzen'), 'onmsocialfeed_socialfeed' => 'USER', 'onmsocialfeed_socialfeed.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmSocialfeed', 'pluginName' => 'Socialfeed'))), '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'))), '20.' => array('text.' => array('10.' => array()))), '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'))), '20.' => array('renderObj.' => array('20.' => array('override.' => array('data' => 'file:current:title'), 'typolink.' => array('ATagParams' => 'target="_blank"'))))), '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')), 'hsmail_form' => '< lib.contentElement', 'hsmail_form.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Hsmail', 'pluginName' => 'Form')), 'onm_blockquote' => '< lib.contentElement', 'onm_blockquote.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Blockquote')), 'onm_chart' => '< lib.contentElement', 'onm_chart.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Chart')), 'onm_chartslider' => '< lib.contentElement', 'onm_chartslider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Chartslider')), 'onm_devicegroup' => '< lib.contentElement', 'onm_devicegroup.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Devicegroup')), 'onm_group' => '< lib.contentElement', 'onm_group.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Group')), 'onm_map' => '< lib.contentElement', 'onm_map.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Map')), 'onm_multicolumn' => '< lib.contentElement', 'onm_multicolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Multicolumn')), 'onm_slider' => '< lib.contentElement', 'onm_slider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Slider')), 'onm_split' => '< lib.contentElement', 'onm_split.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Split')), 'onm_teaser' => '< lib.contentElement', 'onm_teaser.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Teaser')), 'onm_teaserlist' => '< lib.contentElement', 'onm_teaserlist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Teaserlist')), 'onm_tile' => '< lib.contentElement', 'onm_tile.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Tile')), 'onm_tilegroup' => '< lib.contentElement', 'onm_tilegroup.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Tilegroup')), 'menu.' => array('20.' => array('HMENU', '4.' => array('special' => 'directory', 'special.' => array('value.' => array('data' => 'field:pages // page:content_from_pid // page:uid', 'insertData' => '1')), 'stdWrap.' => array('wrap' => '<nav class="teaser-list">|</nav>', 'required' => '1'), 'TMENU', '1.' => array('stdWrap.' => array('wrap' => '<ul>|</ul>', 'required' => '1'), 'NO' => '1', 'NO.' => array('ATagBeforeWrap' => '1', 'wrapItemAndSub.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '<li class="teaser-list-teaser">|</li>'))), 'stdWrap.' => array('wrap.' => array('cObject' => 'COA', 'cObject.' => array('FILES', '10.' => array('references.' => array('table' => 'pages', 'uid.' => array(*DEEP NESTED ARRAY*), 'fieldName' => 'media'), 'renderObj' => '< plugin.tx_onmstyledcontent.image.renderObj'), 'TEXT', '14.' => array('value' => '<div class="teaser-list-text">'), 'TEXT', '15.' => array('value' => '<h5 class="teaser-list-header">|</h5>'), 'TEXT', '20.' => array('data' => 'field:abstract // field:description', 'wrap' => '<p>|</p>', 'stdWrap.' => array('required' => '1')), 'TEXT', '30.' => array('value' => '</div>'))), 'if.' => array('isTrue.' => array('field' => 'media')))))), 'default' => 'HMENU', 'default.' => array('special' => 'list', 'special.' => array('value.' => array('data' => 'field:pages // page:content_from_pid // page:uid', 'insertData' => '1')), 'stdWrap.' => array('wrap' => '<nav class="teaser-list">|</nav>', 'required' => '1'), 'TMENU', '1.' => array('stdWrap.' => array('wrap' => '<ul>|</ul>', 'required' => '1'), 'NO' => '1', 'NO.' => array('ATagBeforeWrap' => '1', 'wrapItemAndSub.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '<li class="teaser-list-teaser">|</li>'))), 'stdWrap.' => array('wrap.' => array('cObject' => 'COA', 'cObject.' => array('FILES', '10.' => array('references.' => array('table' => 'pages', 'uid.' => array(*DEEP NESTED ARRAY*), 'fieldName' => 'media'), 'renderObj' => '< plugin.tx_onmstyledcontent.image.renderObj'), 'TEXT', '14.' => array('value' => '<div class="teaser-list-text">'), 'TEXT', '15.' => array('value' => '<h5 class="teaser-list-header">|</h5>'), 'TEXT', '20.' => array('data' => 'field:abstract // field:description', 'wrap' => '<p>|</p>', 'stdWrap.' => array('required' => '1')), 'TEXT', '30.' => array('value' => '</div>'))), 'if.' => array('isTrue.' => array('field' => 'media'))))), 'includeNotInMenu' => '1'))), 'fluidcontent_content.' => array()))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap' => '', 'innerWrap.' => array('cObject.' => array('TEXT', '0.' => array('value' => '|')))), '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'))), '20.' => array('rendering.' => array('singleNoCaption.' => array('allStdWrap.' => array('dataWrap.' => array('override' => '<div class="csc-textpic-imagewrap" data-csc-images="{register:imageCount}" data-csc-cols="{field:imagecols}"><div class="csc-textpic-imagerow"> | </div></div>')), 'rowStdWrap.' => array('wrap' => '|'), 'lastRowStdWrap.' => array('wrap' => '|')), 'noCaption.' => array('allStdWrap.' => array('dataWrap.' => array('override' => '<div class="csc-textpic-imagewrap" data-csc-images="{register:imageCount}" data-csc-cols="{field:imagecols}"><div class="csc-textpic-imagerow"> | </div></div>')), 'rowStdWrap.' => array('wrap' => '|'), 'lastRowStdWrap.' => array('wrap' => '|')), 'splitCaption.' => array('rowStdWrap.' => array('wrap' => '|'), 'lastRowStdWrap.' => array('wrap' => '|'))))), '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('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'onm_redirect' => 'USER', 'onm_redirect.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Redirect'), 'onmcontact_contacts' => 'USER', 'onmcontact_contacts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Contacts'), 'onmcontact_form' => 'USER', 'onmcontact_form.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Form'), 'onmcontact_api' => 'USER', 'onmcontact_api.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Api'), 'onmjobs_onmjobs' => 'USER', 'onmjobs_onmjobs.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmJobs', 'pluginName' => 'OnmJobs'), 'onmportfolio_referenzen' => 'USER', 'onmportfolio_referenzen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmPortfolio', 'pluginName' => 'Referenzen'), 'onmsocialfeed_socialfeed' => 'USER', 'onmsocialfeed_socialfeed.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmSocialfeed', 'pluginName' => 'Socialfeed'))), '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'))), '20.' => array('text.' => array('10.' => array()))), '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'))), '20.' => array('renderObj.' => array('20.' => array('override.' => array('data' => 'file:current:title'), 'typolink.' => array('ATagParams' => 'target="_blank"'))))), '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')), 'hsmail_form' => '< lib.contentElement', 'hsmail_form.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Hsmail', 'pluginName' => 'Form')), 'onm_blockquote' => '< lib.contentElement', 'onm_blockquote.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Blockquote')), 'onm_chart' => '< lib.contentElement', 'onm_chart.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Chart')), 'onm_chartslider' => '< lib.contentElement', 'onm_chartslider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Chartslider')), 'onm_devicegroup' => '< lib.contentElement', 'onm_devicegroup.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Devicegroup')), 'onm_group' => '< lib.contentElement', 'onm_group.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Group')), 'onm_map' => '< lib.contentElement', 'onm_map.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Map')), 'onm_multicolumn' => '< lib.contentElement', 'onm_multicolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Multicolumn')), 'onm_slider' => '< lib.contentElement', 'onm_slider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Slider')), 'onm_split' => '< lib.contentElement', 'onm_split.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Split')), 'onm_teaser' => '< lib.contentElement', 'onm_teaser.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Teaser')), 'onm_teaserlist' => '< lib.contentElement', 'onm_teaserlist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Teaserlist')), 'onm_tile' => '< lib.contentElement', 'onm_tile.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Tile')), 'onm_tilegroup' => '< lib.contentElement', 'onm_tilegroup.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Tilegroup')), 'menu.' => array('20.' => array('HMENU', '4.' => array('special' => 'directory', 'special.' => array('value.' => array('data' => 'field:pages // page:content_from_pid // page:uid', 'insertData' => '1')), 'stdWrap.' => array('wrap' => '<nav class="teaser-list">|</nav>', 'required' => '1'), 'TMENU', '1.' => array('stdWrap.' => array('wrap' => '<ul>|</ul>', 'required' => '1'), 'NO' => '1', 'NO.' => array('ATagBeforeWrap' => '1', 'wrapItemAndSub.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '<li class="teaser-list-teaser">|</li>'))), 'stdWrap.' => array('wrap.' => array('cObject' => 'COA', 'cObject.' => array('FILES', '10.' => array('references.' => array('table' => 'pages', 'uid.' => array(*DEEP NESTED ARRAY*), 'fieldName' => 'media'), 'renderObj' => '< plugin.tx_onmstyledcontent.image.renderObj'), 'TEXT', '14.' => array('value' => '<div class="teaser-list-text">'), 'TEXT', '15.' => array('value' => '<h5 class="teaser-list-header">|</h5>'), 'TEXT', '20.' => array('data' => 'field:abstract // field:description', 'wrap' => '<p>|</p>', 'stdWrap.' => array('required' => '1')), 'TEXT', '30.' => array('value' => '</div>'))), 'if.' => array('isTrue.' => array('field' => 'media')))))), 'default' => 'HMENU', 'default.' => array('special' => 'list', 'special.' => array('value.' => array('data' => 'field:pages // page:content_from_pid // page:uid', 'insertData' => '1')), 'stdWrap.' => array('wrap' => '<nav class="teaser-list">|</nav>', 'required' => '1'), 'TMENU', '1.' => array('stdWrap.' => array('wrap' => '<ul>|</ul>', 'required' => '1'), 'NO' => '1', 'NO.' => array('ATagBeforeWrap' => '1', 'wrapItemAndSub.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '<li class="teaser-list-teaser">|</li>'))), 'stdWrap.' => array('wrap.' => array('cObject' => 'COA', 'cObject.' => array('FILES', '10.' => array('references.' => array('table' => 'pages', 'uid.' => array(*DEEP NESTED ARRAY*), 'fieldName' => 'media'), 'renderObj' => '< plugin.tx_onmstyledcontent.image.renderObj'), 'TEXT', '14.' => array('value' => '<div class="teaser-list-text">'), 'TEXT', '15.' => array('value' => '<h5 class="teaser-list-header">|</h5>'), 'TEXT', '20.' => array('data' => 'field:abstract // field:description', 'wrap' => '<p>|</p>', 'stdWrap.' => array('required' => '1')), 'TEXT', '30.' => array('value' => '</div>'))), 'if.' => array('isTrue.' => array('field' => 'media'))))), 'includeNotInMenu' => '1'))), 'fluidcontent_content.' => array()), 'tt_content')
in /usr/www/users/onmde/www.onm.de/releases/7/public/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')), 'stdWrap.' => array('editPanel' => '1', 'editPanel.' => array('allow' => 'move, new, edit, hide, delete', 'label' => '%s', 'onlyCurrentPid' => '1', 'previewBorder' => '1', 'edit.' => array('displayRecord' => '1')), 'wrap' => '', 'innerWrap.' => array('cObject.' => array('TEXT', '0.' => array('value' => '|')))), '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'))), '20.' => array('rendering.' => array('singleNoCaption.' => array('allStdWrap.' => array('dataWrap.' => array('override' => '<div class="csc-textpic-imagewrap" data-csc-images="{register:imageCount}" data-csc-cols="{field:imagecols}"><div class="csc-textpic-imagerow"> | </div></div>')), 'rowStdWrap.' => array('wrap' => '|'), 'lastRowStdWrap.' => array('wrap' => '|')), 'noCaption.' => array('allStdWrap.' => array('dataWrap.' => array('override' => '<div class="csc-textpic-imagewrap" data-csc-images="{register:imageCount}" data-csc-cols="{field:imagecols}"><div class="csc-textpic-imagerow"> | </div></div>')), 'rowStdWrap.' => array('wrap' => '|'), 'lastRowStdWrap.' => array('wrap' => '|')), 'splitCaption.' => array('rowStdWrap.' => array('wrap' => '|'), 'lastRowStdWrap.' => array('wrap' => '|'))))), '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('news_pi1' => 'USER', 'news_pi1.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'News', 'pluginName' => 'Pi1'), 'flux_page' => 'USER', 'flux_page.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Flux', 'pluginName' => 'Page'), 'onm_redirect' => 'USER', 'onm_redirect.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Redirect'), 'onmcontact_contacts' => 'USER', 'onmcontact_contacts.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Contacts'), 'onmcontact_form' => 'USER', 'onmcontact_form.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Form'), 'onmcontact_api' => 'USER', 'onmcontact_api.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmContact', 'pluginName' => 'Api'), 'onmjobs_onmjobs' => 'USER', 'onmjobs_onmjobs.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmJobs', 'pluginName' => 'OnmJobs'), 'onmportfolio_referenzen' => 'USER', 'onmportfolio_referenzen.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmPortfolio', 'pluginName' => 'Referenzen'), 'onmsocialfeed_socialfeed' => 'USER', 'onmsocialfeed_socialfeed.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'OnmSocialfeed', 'pluginName' => 'Socialfeed'))), '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'))), '20.' => array('text.' => array('10.' => array()))), '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'))), '20.' => array('renderObj.' => array('20.' => array('override.' => array('data' => 'file:current:title'), 'typolink.' => array('ATagParams' => 'target="_blank"'))))), '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')), 'hsmail_form' => '< lib.contentElement', 'hsmail_form.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Hsmail', 'pluginName' => 'Form')), 'onm_blockquote' => '< lib.contentElement', 'onm_blockquote.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Blockquote')), 'onm_chart' => '< lib.contentElement', 'onm_chart.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Chart')), 'onm_chartslider' => '< lib.contentElement', 'onm_chartslider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Chartslider')), 'onm_devicegroup' => '< lib.contentElement', 'onm_devicegroup.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Devicegroup')), 'onm_group' => '< lib.contentElement', 'onm_group.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Group')), 'onm_map' => '< lib.contentElement', 'onm_map.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Map')), 'onm_multicolumn' => '< lib.contentElement', 'onm_multicolumn.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Multicolumn')), 'onm_slider' => '< lib.contentElement', 'onm_slider.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Slider')), 'onm_split' => '< lib.contentElement', 'onm_split.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Split')), 'onm_teaser' => '< lib.contentElement', 'onm_teaser.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Teaser')), 'onm_teaserlist' => '< lib.contentElement', 'onm_teaserlist.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Teaserlist')), 'onm_tile' => '< lib.contentElement', 'onm_tile.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Tile')), 'onm_tilegroup' => '< lib.contentElement', 'onm_tilegroup.' => array('templateName' => 'Generic', 'USER', '20.' => array('userFunc' => 'TYPO3\\CMS\\Extbase\\Core\\Bootstrap->run', 'extensionName' => 'Onm', 'pluginName' => 'Tilegroup')), 'menu.' => array('20.' => array('HMENU', '4.' => array('special' => 'directory', 'special.' => array('value.' => array('data' => 'field:pages // page:content_from_pid // page:uid', 'insertData' => '1')), 'stdWrap.' => array('wrap' => '<nav class="teaser-list">|</nav>', 'required' => '1'), 'TMENU', '1.' => array('stdWrap.' => array('wrap' => '<ul>|</ul>', 'required' => '1'), 'NO' => '1', 'NO.' => array('ATagBeforeWrap' => '1', 'wrapItemAndSub.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '<li class="teaser-list-teaser">|</li>'))), 'stdWrap.' => array('wrap.' => array('cObject' => 'COA', 'cObject.' => array('FILES', '10.' => array('references.' => array('table' => 'pages', 'uid.' => array(*DEEP NESTED ARRAY*), 'fieldName' => 'media'), 'renderObj' => '< plugin.tx_onmstyledcontent.image.renderObj'), 'TEXT', '14.' => array('value' => '<div class="teaser-list-text">'), 'TEXT', '15.' => array('value' => '<h5 class="teaser-list-header">|</h5>'), 'TEXT', '20.' => array('data' => 'field:abstract // field:description', 'wrap' => '<p>|</p>', 'stdWrap.' => array('required' => '1')), 'TEXT', '30.' => array('value' => '</div>'))), 'if.' => array('isTrue.' => array('field' => 'media')))))), 'default' => 'HMENU', 'default.' => array('special' => 'list', 'special.' => array('value.' => array('data' => 'field:pages // page:content_from_pid // page:uid', 'insertData' => '1')), 'stdWrap.' => array('wrap' => '<nav class="teaser-list">|</nav>', 'required' => '1'), 'TMENU', '1.' => array('stdWrap.' => array('wrap' => '<ul>|</ul>', 'required' => '1'), 'NO' => '1', 'NO.' => array('ATagBeforeWrap' => '1', 'wrapItemAndSub.' => array('cObject' => 'COA', 'cObject.' => array('TEXT', '10.' => array('value' => '<li class="teaser-list-teaser">|</li>'))), 'stdWrap.' => array('wrap.' => array('cObject' => 'COA', 'cObject.' => array('FILES', '10.' => array('references.' => array('table' => 'pages', 'uid.' => array(*DEEP NESTED ARRAY*), 'fieldName' => 'media'), 'renderObj' => '< plugin.tx_onmstyledcontent.image.renderObj'), 'TEXT', '14.' => array('value' => '<div class="teaser-list-text">'), 'TEXT', '15.' => array('value' => '<h5 class="teaser-list-header">|</h5>'), 'TEXT', '20.' => array('data' => 'field:abstract // field:description', 'wrap' => '<p>|</p>', 'stdWrap.' => array('required' => '1')), 'TEXT', '30.' => array('value' => '</div>'))), 'if.' => array('isTrue.' => array('field' => 'media'))))), 'includeNotInMenu' => '1'))), 'fluidcontent_content.' => array()), '')
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/frontend/Classes/ContentObject/RecordsContentObject.php line 119
                            $cObj->parentRecordNumber = $this->cObj->currentRecordNumber;
                            $GLOBALS['TSFE']->currentRecord = $val['table'] . ':' . $val['id'];
                            $this->cObj->lastChanged($row['tstamp']);
                            $cObj->start($row, $val['table']);
                            $tmpValue = $cObj->cObjGetSingle($renderObjName, $renderObjConf, $renderObjKey);
                            $theValue .= $tmpValue;
                        }
                    }
                }
at TYPO3\CMS\Frontend\ContentObject\RecordsContentObject->render(array('tables' => 'tt_content', 'source' => 106, 'dontCheckPid' => 1))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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\RecordsContentObject), array('tables' => 'tt_content', 'source' => 106, 'dontCheckPid' => 1))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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('RECORDS', array('tables' => 'tt_content', 'source' => 106, 'dontCheckPid' => 1))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3conf/ext/vhs/Classes/ViewHelpers/Content/AbstractContentViewHelper.php line 236
        // It's should not be allowed to do this again then!!
        if (false === empty($parent)) {
            ++$GLOBALS['TSFE']->recordRegister[$parent];
        }
        $html = $GLOBALS['TSFE']->cObj->cObjGetSingle('RECORDS', $conf);

        $GLOBALS['TSFE']->currentRecord = $parent;
        if (false === empty($parent)) {
            --$GLOBALS['TSFE']->recordRegister[$parent];
at FluidTYPO3\Vhs\ViewHelpers\Content\AbstractContentViewHelper::renderRecord(array('uid' => 106, 'pid' => 61, '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, 'tstamp' => 1465464301, 'crdate' => 1465391902, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 1792, 'CType' => 'list', 'header' => '', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 102, 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'image_noRows' => 0, 'image_effects' => 0, 'image_compression' => 0, 'header_layout' => '0', 'menu_type' => '0', 'list_type' => 'onmportfolio_referenzen', 'table_border' => 0, 'table_cellspacing' => 0, 'table_cellpadding' => 0, 'table_bgColor' => 0, 'select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'section_frame' => 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="switchableControllerActions"> <value index="vDEF">Project-&gt;topTile</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:31:{s:5:"CType";N;s:6:"colPos";N;s:16:"sys_language_uid";N;s:6:"header";N;s:9:"subheader";N;s:13:"header_layout";N;s:17:"tx_onm_headertype";N;s:11:"header_link";N;s:14:"rowDescription";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:10:"select_key";N;s:5:"pages";N;s:9:"recursive";N;s:6:"layout";N;s:11:"spaceBefore";N;s:13:"section_frame";N;s:13:"tx_onm_curves";N;s:23:"tx_onm_curves_randomize";N;s:21:"tx_onm_curves_animate";N;s:22:"tx_onm_curves_position";N;s:25:"tx_onm_curves_transparent";N;s:12:"sectionIndex";N;s:9:"linkToTop";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:16:"tx_flux_children";N;}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'tx_flux_column' => '', 'tx_flux_parent' => 0, 'tx_flux_children' => 0, 'tx_fed_fcefile' => '', 'tx_news_related_news' => 0, 'tx_onmstyledcontent_images_cropping' => 0, 'tx_onmstyledcontent_images_ratio' => 0, 'tx_onm_headertype' => 0, 'tx_onm_curves' => 0, 'tx_onm_curves_animate' => '', 'tx_onm_curves_randomize' => '', 'tx_onm_curves_position' => 0, 'tx_onm_curves_transparent' => 0, 'tx_onmstyledcontent_hide_viewport' => null, 'tx_hsmail_form_groupid' => '', 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'filelink_sorting_direction' => '', 'table_class' => '', 'tx_flux_migrated_version' => null, 'l10n_source' => 0, 'tx_hsmail_form' => 0))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3conf/ext/vhs/Classes/ViewHelpers/Content/AbstractContentViewHelper.php line 203
            $this->contentObject->cObjGetSingle('LOAD_REGISTER', $this->arguments['loadRegister']);
        }
        $elements = [];
        foreach ($rows as $row) {
            array_push($elements, static::renderRecord($row));
        }
        if (false === empty($this->arguments['loadRegister'])) {
            $this->contentObject->cObjGetSingle('RESTORE_REGISTER', '');
        }
at FluidTYPO3\Vhs\ViewHelpers\Content\AbstractContentViewHelper->getRenderedRecords(array(array('uid' => 136, 'pid' => 61, '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, 'tstamp' => 1478195356, 'crdate' => 1465992052, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 1280, 'CType' => 'onm_chartslider', 'header' => 'Referenzen', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => null, 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'image_noRows' => 0, 'image_effects' => 0, 'image_compression' => 0, 'header_layout' => '0', 'menu_type' => '0', 'list_type' => '', 'table_border' => 0, 'table_cellspacing' => 0, 'table_cellpadding' => 0, 'table_bgColor' => 0, 'select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'section_frame' => 102, '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="options"> <language index="lDEF"> <field index="height"> <value index="vDEF">0</value> </field> <field index="darken"> <value index="vDEF">0</value> </field> <field index="contentVisual"> <value index="vDEF">1</value> </field> <field index="shuffle"> <value index="vDEF">1</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:26:{s:5:"CType";N;s:14:"tx_fed_fcefile";N;s:6:"colPos";N;s:16:"sys_language_uid";N;s:6:"header";N;s:13:"header_layout";N;s:17:"tx_onm_headertype";N;s:11:"header_link";N;s:9:"subheader";N;s:11:"pi_flexform";N;s:6:"layout";N;s:11:"spaceBefore";N;s:13:"section_frame";N;s:13:"tx_onm_curves";N;s:23:"tx_onm_curves_randomize";N;s:21:"tx_onm_curves_animate";N;s:22:"tx_onm_curves_position";N;s:25:"tx_onm_curves_transparent";N;s:6:"hidden";N;s:12:"sectionIndex";N;s:9:"linkToTop";N;s:9:"starttime";N;s:7:"endtime";N;s:8:"fe_group";N;s:8:"editlock";N;s:16:"tx_flux_children";N;}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => null, 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'tx_flux_column' => '', 'tx_flux_parent' => 0, 'tx_flux_children' => 4, 'tx_fed_fcefile' => 'ONM.Onm:ChartSlider.html', 'tx_news_related_news' => 0, 'tx_onmstyledcontent_images_cropping' => 0, 'tx_onmstyledcontent_images_ratio' => 0, 'tx_onm_headertype' => 0, 'tx_onm_curves' => 0, 'tx_onm_curves_animate' => '', 'tx_onm_curves_randomize' => '', 'tx_onm_curves_position' => 0, 'tx_onm_curves_transparent' => 0, 'tx_onmstyledcontent_hide_viewport' => null, 'tx_hsmail_form_groupid' => '', 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'filelink_sorting_direction' => '', 'table_class' => '', 'tx_flux_migrated_version' => null, 'l10n_source' => 0, 'tx_hsmail_form' => 0), array('uid' => 114, 'pid' => 61, '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' => 110, 'tstamp' => 1471534235, 'crdate' => 1465464198, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 1536, 'CType' => 'textmedia', 'header' => 'Portfolio', 'header_position' => '', 'bodytext' => ' ', 'image' => 0, 'imagewidth' => 0, 'imageorient' => 17, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => '', 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => 'Ein Projekt sagt mehr als tausend Worte', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'image_noRows' => 0, 'image_effects' => 0, 'image_compression' => 0, 'header_layout' => '1', 'menu_type' => '0', 'list_type' => '', 'table_border' => 0, 'table_cellspacing' => 0, 'table_cellpadding' => 0, 'table_bgColor' => 0, 'select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => '', 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'section_frame' => 0, 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:34:{s:5:"CType";N;s:6:"colPos";N;s:16:"sys_language_uid";N;s:6:"header";N;s:9:"subheader";N;s:13:"header_layout";N;s:17:"tx_onm_headertype";N;s:11:"header_link";N;s:14:"rowDescription";N;s:8:"bodytext";N;s:6:"assets";N;s:10:"image_zoom";N;s:6:"layout";N;s:11:"spaceBefore";N;s:13:"section_frame";N;s:13:"tx_onm_curves";N;s:23:"tx_onm_curves_randomize";N;s:21:"tx_onm_curves_animate";N;s:22:"tx_onm_curves_position";N;s:25:"tx_onm_curves_transparent";N;s:11:"imageborder";N;s:11:"imageorient";N;s:9:"imagecols";N;s:35:"tx_onmstyledcontent_images_cropping";N;s:32:"tx_onmstyledcontent_images_ratio";N;s:12:"sectionIndex";N;s:9:"linkToTop";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:16:"tx_flux_children";N;}', 'selected_categories' => '', 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => 'Schauen Sie sich in unserer umfangreichen Referenzdatenbank um und entdecken Sie Projekte aus den Bereichen TYPO3, Hotelbuchungssysteme, Mobile Webseiten, Social Media, Corporate Websites, Webportale u.v.m.', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'tx_flux_column' => '', 'tx_flux_parent' => 0, 'tx_flux_children' => 0, 'tx_fed_fcefile' => '', 'tx_news_related_news' => 0, 'tx_onmstyledcontent_images_cropping' => 0, 'tx_onmstyledcontent_images_ratio' => 0, 'tx_onm_headertype' => 1, 'tx_onm_curves' => 0, 'tx_onm_curves_animate' => '', 'tx_onm_curves_randomize' => '', 'tx_onm_curves_position' => 0, 'tx_onm_curves_transparent' => 0, 'tx_onmstyledcontent_hide_viewport' => null, 'tx_hsmail_form_groupid' => '', 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'filelink_sorting_direction' => '', 'table_class' => '', 'tx_flux_migrated_version' => null, 'l10n_source' => 0, 'tx_hsmail_form' => 0), array('uid' => 106, 'pid' => 61, '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, 'tstamp' => 1465464301, 'crdate' => 1465391902, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 1792, 'CType' => 'list', 'header' => '', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 102, 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'image_noRows' => 0, 'image_effects' => 0, 'image_compression' => 0, 'header_layout' => '0', 'menu_type' => '0', 'list_type' => 'onmportfolio_referenzen', 'table_border' => 0, 'table_cellspacing' => 0, 'table_cellpadding' => 0, 'table_bgColor' => 0, 'select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'section_frame' => 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="switchableControllerActions"> <value index="vDEF">Project-&gt;topTile</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:31:{s:5:"CType";N;s:6:"colPos";N;s:16:"sys_language_uid";N;s:6:"header";N;s:9:"subheader";N;s:13:"header_layout";N;s:17:"tx_onm_headertype";N;s:11:"header_link";N;s:14:"rowDescription";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:10:"select_key";N;s:5:"pages";N;s:9:"recursive";N;s:6:"layout";N;s:11:"spaceBefore";N;s:13:"section_frame";N;s:13:"tx_onm_curves";N;s:23:"tx_onm_curves_randomize";N;s:21:"tx_onm_curves_animate";N;s:22:"tx_onm_curves_position";N;s:25:"tx_onm_curves_transparent";N;s:12:"sectionIndex";N;s:9:"linkToTop";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:16:"tx_flux_children";N;}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'tx_flux_column' => '', 'tx_flux_parent' => 0, 'tx_flux_children' => 0, 'tx_fed_fcefile' => '', 'tx_news_related_news' => 0, 'tx_onmstyledcontent_images_cropping' => 0, 'tx_onmstyledcontent_images_ratio' => 0, 'tx_onm_headertype' => 0, 'tx_onm_curves' => 0, 'tx_onm_curves_animate' => '', 'tx_onm_curves_randomize' => '', 'tx_onm_curves_position' => 0, 'tx_onm_curves_transparent' => 0, 'tx_onmstyledcontent_hide_viewport' => null, 'tx_hsmail_form_groupid' => '', 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'filelink_sorting_direction' => '', 'table_class' => '', 'tx_flux_migrated_version' => null, 'l10n_source' => 0, 'tx_hsmail_form' => 0), array('uid' => 110, 'pid' => 61, '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, 'tstamp' => 1471534470, 'crdate' => 1465394133, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 2048, 'CType' => 'textmedia', 'header' => 'Kunden', 'header_position' => '', 'bodytext' => '', 'image' => 0, 'imagewidth' => 0, 'imageorient' => 17, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => null, 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => 'Eine Auswahl unserer Kunden', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'image_noRows' => 0, 'image_effects' => 0, 'image_compression' => 0, 'header_layout' => '2', 'menu_type' => '0', 'list_type' => '', 'table_border' => 0, 'table_cellspacing' => 0, 'table_cellpadding' => 0, 'table_bgColor' => 0, 'select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'section_frame' => 0, 'date' => 0, 'recursive' => 0, 'imageheight' => 0, 'sys_language_uid' => 0, 'tx_impexp_origuid' => 0, 'pi_flexform' => null, 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:34:{s:5:"CType";N;s:6:"colPos";N;s:16:"sys_language_uid";N;s:6:"header";N;s:9:"subheader";N;s:13:"header_layout";N;s:17:"tx_onm_headertype";N;s:11:"header_link";N;s:14:"rowDescription";N;s:8:"bodytext";N;s:6:"assets";N;s:10:"image_zoom";N;s:6:"layout";N;s:11:"spaceBefore";N;s:13:"section_frame";N;s:13:"tx_onm_curves";N;s:23:"tx_onm_curves_randomize";N;s:21:"tx_onm_curves_animate";N;s:22:"tx_onm_curves_position";N;s:25:"tx_onm_curves_transparent";N;s:11:"imageborder";N;s:11:"imageorient";N;s:9:"imagecols";N;s:35:"tx_onmstyledcontent_images_cropping";N;s:32:"tx_onmstyledcontent_images_ratio";N;s:12:"sectionIndex";N;s:9:"linkToTop";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:16:"tx_flux_children";N;}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'tx_flux_column' => '', 'tx_flux_parent' => 0, 'tx_flux_children' => 0, 'tx_fed_fcefile' => '', 'tx_news_related_news' => 0, 'tx_onmstyledcontent_images_cropping' => 0, 'tx_onmstyledcontent_images_ratio' => 0, 'tx_onm_headertype' => 2, 'tx_onm_curves' => 0, 'tx_onm_curves_animate' => '', 'tx_onm_curves_randomize' => '', 'tx_onm_curves_position' => 0, 'tx_onm_curves_transparent' => 0, 'tx_onmstyledcontent_hide_viewport' => null, 'tx_hsmail_form_groupid' => '', 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'filelink_sorting_direction' => '', 'table_class' => '', 'tx_flux_migrated_version' => null, 'l10n_source' => 0, 'tx_hsmail_form' => 0), array('uid' => 107, 'pid' => 61, '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, 'tstamp' => 1465464272, 'crdate' => 1465391934, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 2304, 'CType' => 'list', 'header' => '', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 102, 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => '', 'spaceBefore' => 0, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'image_noRows' => 0, 'image_effects' => 0, 'image_compression' => 0, 'header_layout' => '0', 'menu_type' => '0', 'list_type' => 'onmportfolio_referenzen', 'table_border' => 0, 'table_cellspacing' => 0, 'table_cellpadding' => 0, 'table_bgColor' => 0, 'select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'section_frame' => 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="switchableControllerActions"> <value index="vDEF">Customer-&gt;top</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:31:{s:5:"CType";N;s:6:"colPos";N;s:16:"sys_language_uid";N;s:6:"header";N;s:9:"subheader";N;s:13:"header_layout";N;s:17:"tx_onm_headertype";N;s:11:"header_link";N;s:14:"rowDescription";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:10:"select_key";N;s:5:"pages";N;s:9:"recursive";N;s:6:"layout";N;s:11:"spaceBefore";N;s:13:"section_frame";N;s:13:"tx_onm_curves";N;s:23:"tx_onm_curves_randomize";N;s:21:"tx_onm_curves_animate";N;s:22:"tx_onm_curves_position";N;s:25:"tx_onm_curves_transparent";N;s:12:"sectionIndex";N;s:9:"linkToTop";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:16:"tx_flux_children";N;}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'tx_flux_column' => '', 'tx_flux_parent' => 0, 'tx_flux_children' => 0, 'tx_fed_fcefile' => '', 'tx_news_related_news' => 0, 'tx_onmstyledcontent_images_cropping' => 0, 'tx_onmstyledcontent_images_ratio' => 0, 'tx_onm_headertype' => 0, 'tx_onm_curves' => 0, 'tx_onm_curves_animate' => '', 'tx_onm_curves_randomize' => '', 'tx_onm_curves_position' => 0, 'tx_onm_curves_transparent' => 0, 'tx_onmstyledcontent_hide_viewport' => null, 'tx_hsmail_form_groupid' => '', 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'filelink_sorting_direction' => '', 'table_class' => '', 'tx_flux_migrated_version' => null, 'l10n_source' => 0, 'tx_hsmail_form' => 0), array('uid' => 111, 'pid' => 61, '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, 'tstamp' => 1477921227, 'crdate' => 1465396399, 'cruser_id' => 2, 'hidden' => 0, 'sorting' => 2560, 'CType' => 'list', 'header' => 'Fragen?', 'header_position' => '', 'bodytext' => null, 'image' => 0, 'imagewidth' => 0, 'imageorient' => 0, 'imagecols' => 2, 'imageborder' => 0, 'media' => 0, 'layout' => 0, 'deleted' => 0, 'cols' => 0, 'records' => null, 'pages' => '', 'starttime' => 0, 'endtime' => 0, 'colPos' => 0, 'subheader' => 'Ihr Ansprechpartner', 'spaceBefore' => 1, 'spaceAfter' => 0, 'fe_group' => '', 'header_link' => '', 'image_zoom' => 0, 'image_noRows' => 0, 'image_effects' => 0, 'image_compression' => 0, 'header_layout' => '0', 'menu_type' => '0', 'list_type' => 'onmcontact_contacts', 'table_border' => 0, 'table_cellspacing' => 0, 'table_cellpadding' => 0, 'table_bgColor' => 0, 'select_key' => '', 'sectionIndex' => 1, 'linkToTop' => 0, 'file_collections' => null, 'filelink_size' => 0, 'filelink_sorting' => '', 'target' => '', 'section_frame' => 103, '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.contact"> <value index="vDEF">12</value> </field> <field index="settings.showaddress"> <value index="vDEF">0</value> </field> <field index="settings.flexform.modclass"> <value index="vDEF"/> </field> <field index="switchableControllerActions"> <value index="vDEF">Contact-&gt;show</value> </field> <field index="settings.list"> <value index="vDEF"/> </field> <field index="settings.listTemplate"> <value index="vDEF">0</value> </field> <field index="settings.main"> <value index="vDEF">0</value> </field> <field index="settings.showdescription"> <value index="vDEF">0</value> </field> <field index="settings.googleprofile"> <value index="vDEF">0</value> </field> </language> </sheet> </data></T3FlexForms>', 'accessibility_title' => '', 'accessibility_bypass' => 0, 'accessibility_bypass_text' => '', 'l18n_parent' => 0, 'l18n_diffsource' => 'a:31:{s:5:"CType";N;s:6:"colPos";N;s:16:"sys_language_uid";N;s:6:"header";N;s:9:"subheader";N;s:13:"header_layout";N;s:17:"tx_onm_headertype";N;s:11:"header_link";N;s:14:"rowDescription";N;s:9:"list_type";N;s:11:"pi_flexform";N;s:10:"select_key";N;s:5:"pages";N;s:9:"recursive";N;s:6:"layout";N;s:11:"spaceBefore";N;s:13:"section_frame";N;s:13:"tx_onm_curves";N;s:23:"tx_onm_curves_randomize";N;s:21:"tx_onm_curves_animate";N;s:22:"tx_onm_curves_position";N;s:25:"tx_onm_curves_transparent";N;s:12:"sectionIndex";N;s:9:"linkToTop";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:16:"tx_flux_children";N;}', 'selected_categories' => null, 'category_field' => '', 'categories' => 0, 'editlock' => 0, 'rowDescription' => '', 'table_caption' => null, 'table_delimiter' => 124, 'table_enclosure' => 0, 'table_header_position' => 0, 'table_tfoot' => 0, 'bullets_type' => 0, 'uploads_description' => 0, 'uploads_type' => 0, 'assets' => 0, 'tx_flux_column' => '', 'tx_flux_parent' => 0, 'tx_flux_children' => 0, 'tx_fed_fcefile' => '', 'tx_news_related_news' => 0, 'tx_onmstyledcontent_images_cropping' => 0, 'tx_onmstyledcontent_images_ratio' => 0, 'tx_onm_headertype' => 2, 'tx_onm_curves' => 101, 'tx_onm_curves_animate' => '', 'tx_onm_curves_randomize' => '', 'tx_onm_curves_position' => 0, 'tx_onm_curves_transparent' => 1, 'tx_onmstyledcontent_hide_viewport' => null, 'tx_hsmail_form_groupid' => '', 'l10n_state' => null, 'frame_class' => 'default', 'space_before_class' => '', 'space_after_class' => '', 'filelink_sorting_direction' => '', 'table_class' => '', 'tx_flux_migrated_version' => null, 'l10n_source' => 0, 'tx_hsmail_form' => 0)))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3conf/ext/vhs/Classes/ViewHelpers/Content/AbstractContentViewHelper.php line 110
            $contentRecords = $this->getSlideRecords($pageUid, $limit);
        }

        if (true === (boolean) $this->arguments['render']) {
            $contentRecords = $this->getRenderedRecords($contentRecords);
        }

        return $contentRecords;
    }
at FluidTYPO3\Vhs\ViewHelpers\Content\AbstractContentViewHelper->getContentRecords()
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3conf/ext/vhs/Classes/ViewHelpers/Content/RenderViewHelper.php line 49
        if ('BE' === TYPO3_MODE) {
            return '';
        }

        $content = $this->getContentRecords();
        if (false === $this->hasArgument('as')) {
            return implode(LF, $content);
        }

at FluidTYPO3\Vhs\ViewHelpers\Content\RenderViewHelper->render()
at call_user_func(array(object(FluidTYPO3\Vhs\ViewHelpers\Content\RenderViewHelper), 'render'))
in /usr/www/users/onmde/www.onm.de/releases/7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 258
     */
    protected function callRenderMethod()
    {
        if (method_exists($this, 'render')) {
            return call_user_func([$this, 'render']);
        }
        if ((new \ReflectionMethod($this, 'renderStatic'))->getDeclaringClass()->getName() !== AbstractViewHelper::class) {
            // Method is safe to call - will not recurse through ViewHelperInvoker via the default
            // implementation of renderStatic() on this class.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->callRenderMethod()
in /usr/www/users/onmde/www.onm.de/releases/7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 246
    {
        $this->validateArguments();
        $this->initialize();

        return $this->callRenderMethod();
    }

    /**
     * Call the render() method and handle errors.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper->initializeArgumentsAndRender()
in /usr/www/users/onmde/www.onm.de/releases/7/vendor/typo3fluid/fluid/src/Core/ViewHelper/ViewHelperInvoker.php line 80
            }
            $viewHelper->setRenderingContext($renderingContext);
            $viewHelper->setArguments($evaluatedArguments);
            $viewHelper->handleAdditionalArguments($undeclaredArguments);
            return $viewHelper->initializeArgumentsAndRender();
        } catch (Exception $error) {
            return $renderingContext->getErrorHandler()->handleViewHelperError($error);
        }
    }
at TYPO3Fluid\Fluid\Core\ViewHelper\ViewHelperInvoker->invoke('FluidTYPO3\\Vhs\\ViewHelpers\\Content\\RenderViewHelper', array('column' => 0, 'order' => 'sorting', 'sortDirection' => 'ASC', 'pageUid' => 0, 'contentUids' => null, 'sectionIndexOnly' => false, 'loadRegister' => null, 'render' => true, 'hideUntranslated' => false, 'limit' => null, 'slide' => 0, 'slideCollect' => 0, 'slideCollectReverse' => false, 'as' => null), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext), object(Closure))
in /usr/www/users/onmde/www.onm.de/releases/7/vendor/typo3fluid/fluid/src/Core/ViewHelper/AbstractViewHelper.php line 515
     */
    public static function renderStatic(array $arguments, \Closure $renderChildrenClosure, RenderingContextInterface $renderingContext)
    {
        $viewHelperClassName = get_called_class();
        return $renderingContext->getViewHelperInvoker()->invoke($viewHelperClassName, $arguments, $renderingContext, $renderChildrenClosure);
    }

    /**
     * Save the associated ViewHelper node in a static public class variable.
at TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper::renderStatic(array('column' => 0, 'order' => 'sorting', 'sortDirection' => 'ASC', 'pageUid' => 0, 'contentUids' => null, 'sectionIndexOnly' => false, 'loadRegister' => null, 'render' => true, 'hideUntranslated' => false, 'limit' => null, 'slide' => 0, 'slideCollect' => 0, 'slideCollectReverse' => false, 'as' => null), object(Closure), object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/www/users/onmde/www.onm.de/releases/7/var/cache/code/fluid_template/Page_action_singleCol_d4216d1f3b14b083a8984bbc5ebb804c790af282.php line 232
$arguments21['slideCollectReverse'] = false;
$arguments21['as'] = NULL;
$arguments21['column'] = 0;

$output20 .= FluidTYPO3\Vhs\ViewHelpers\Content\RenderViewHelper::renderStatic($arguments21, $renderChildrenClosure22, $renderingContext);

$output20 .= '
      </article>

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

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

$output0 .= '
    <!--TYPO3SEARCH_end-->

at layout_Page_Default_html_2b40301a4531abf17528642153903b5a355d0267->render(object(TYPO3\CMS\Fluid\Core\Rendering\RenderingContext))
in /usr/www/users/onmde/www.onm.de/releases/7/vendor/typo3fluid/fluid/src/View/AbstractTemplateView.php line 200
            } catch (PassthroughSourceException $error) {
                return $error->getSource();
            }
            $this->startRendering(self::RENDERING_LAYOUT, $parsedTemplate, $this->baseRenderingContext);
            $output = $parsedLayout->render($this->baseRenderingContext);
            $this->stopRendering();
        }

        return $output;
at TYPO3Fluid\Fluid\View\AbstractTemplateView->render()
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3conf/ext/flux/Classes/Controller/AbstractFluxController.php line 363
                );
                $paths->fillDefaultsByPackageName(GeneralUtility::camelCaseToLowerCaseUnderscored($vendorLessExtensionName));
                $paths->setTemplatePathAndFilename($templatePathAndFilename);
            }
            $content = $this->view->render();
        } else {
            $foreignControllerClass = $this->configurationService
                ->getResolver()
                ->resolveFluxControllerClassNameByExtensionKeyAndControllerName(
at FluidTYPO3\Flux\Controller\AbstractFluxController->performSubRendering('ONM.Onm', 'Page', 'singleCol', 'tx_onm_page')
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3conf/ext/flux/Classes/Controller/AbstractFluxController.php line 314
        $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 /usr/www/users/onmde/www.onm.de/releases/7/public/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 /usr/www/users/onmde/www.onm.de/releases/7/public/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 /usr/www/users/onmde/www.onm.de/releases/7/public/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 /usr/www/users/onmde/www.onm.de/releases/7/public/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 /usr/www/users/onmde/www.onm.de/releases/7/public/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 /usr/www/users/onmde/www.onm.de/releases/7/public/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' => 'Flux', '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' => 'Flux', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page')))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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' => 'Flux', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'), '')
in /usr/www/users/onmde/www.onm.de/releases/7/public/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' => 'Flux', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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' => 'Flux', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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' => 'Flux', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'), '5')
in /usr/www/users/onmde/www.onm.de/releases/7/public/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' => 'Flux', 'vendorName' => 'FluidTYPO3', 'pluginName' => 'Page'), 'headTag.' => array('append' => 'TEXT', 'append.' => array('value' => ' <script src="https://cookiemanager.onm.de/public/ccm19.js?apiKey=c96c109bb76966196a53c64f26bb088a1459775c4c3b16c1&amp;domain=83195ec" referrerpolicy="origin"></script> ')), 'includeCSS.' => array('main' => 'styleguide/Assets/css/main.css'), 'headerData.' => array('TEXT', '10.' => array('value' => ' <meta name="viewport" content="width=device-width, initial-scale=1.0"> '), 'TEXT', '20.' => array('value' => ' <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!--[if lt IE 9]> <script src="styleguide/_contrib/polyfills/html5shiv.js"></script><![endif]--> '), 'FLUIDTEMPLATE', '1478620306.' => array('file' => 'styleguide/Assets/js/modernizr-custom.js', 'stdWrap.' => array('wrap' => '<script type="text/javascript">|</script>'))), 'jsInline.' => array()))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 232
     * @return string
     */
    protected function generatePageBodyContent(TypoScriptFrontendController $controller): string
    {
        $pageContent = $controller->cObj->cObjGet($controller->pSetup) ?: '';
        if ($controller->pSetup['wrap'] ?? false) {
            $pageContent = $controller->cObj->wrap($pageContent, $controller->pSetup['wrap']);
        }
        if ($controller->pSetup['stdWrap.'] ?? false) {
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageBodyContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/frontend/Classes/Http/RequestHandler.php line 198
    protected function generatePageContent(TypoScriptFrontendController $controller, ServerRequestInterface $request): string
    {
        // Generate the main content between the <body> tags
        // This has to be done first, as some additional TSFE-related code could have been written
        $pageContent = $this->generatePageBodyContent($controller);
        // If 'disableAllHeaderCode' is set, all the pageRenderer settings are not evaluated
        if ($controller->config['config']['disableAllHeaderCode'] ?? false) {
            return $pageContent;
        }
at TYPO3\CMS\Frontend\Http\RequestHandler->generatePageContent(object(TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController), object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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 /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/frontend/Classes/Middleware/OutputCompression.php line 48
        // Throw away all output that may have happened during bootstrapping by weird extensions
        ob_clean();
        // Initialize output compression if configured
        $this->initializeOutputCompression();
        return $handler->handle($request);
    }

    /**
     * Initialize output compression if configured
at TYPO3\CMS\Frontend\Middleware\OutputCompression->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(TYPO3\CMS\Frontend\Http\RequestHandler))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

    /**
     * Simulate dates for preview functionality
at TYPO3\CMS\Frontend\Middleware\PreviewSimulator->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

        return $handler->handle($request);
    }
}
at TYPO3\CMS\Frontend\Middleware\PageResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/redirects/Classes/Http/Middleware/RedirectHandler.php line 102
                unset($GLOBALS['TYPO3_REQUEST']);
            }
        }

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

    /**
     * Creates a PSR-7 compatible Response object
at TYPO3\CMS\Redirects\Http\Middleware\RedirectHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/frontend/Classes/Middleware/StaticRouteResolver.php line 80

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

    /**
     * Find the proper configuration for the static route in the static route configuration. Mainly:
at TYPO3\CMS\Frontend\Middleware\StaticRouteResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

    /**
     * Checks if the language is allowed in Frontend, if not, check if there is valid BE user
at TYPO3\CMS\Frontend\Middleware\SiteBaseRedirectResolver->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

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

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

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

        // Remove any output produced until now
        ob_clean();
at TYPO3\CMS\Frontend\Middleware\EidHandler->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

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

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/frontend/Classes/Middleware/TimeTrackerInitialization.php line 58
        $this->timeTracker->setEnabled($timeTrackingEnabled);
        $this->timeTracker->start(microtime(true));
        $this->timeTracker->push('');

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

        // Finish time tracking
        $this->timeTracker->pull();
        $this->timeTracker->finish();
at TYPO3\CMS\Frontend\Middleware\TimeTrackerInitialization->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3conf/ext/onm/Classes/Request/Middleware/BasicAuthMiddleware.php line 39
                exit;
            }
        }

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

    protected function getPasswordsByEnv() : array
    {
at ONM\Onm\Request\Middleware\BasicAuthMiddleware->process(object(TYPO3\CMS\Core\Http\ServerRequest), object(class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 172

                if (!$middleware instanceof MiddlewareInterface) {
                    throw new \InvalidArgumentException(get_class($middleware) . ' does not implement ' . MiddlewareInterface::class, 1516821342);
                }
                return $middleware->process($request, $this->next);
            }
        };
    }
}
at class@anonymous/usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php:138$235->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/core/Classes/Http/MiddlewareDispatcher.php line 78
     * @return ResponseInterface
     */
    public function handle(ServerRequestInterface $request): ResponseInterface
    {
        return $this->tip->handle($request);
    }

    /**
     * Seed the middleware stack with the inner request handler
at TYPO3\CMS\Core\Http\MiddlewareDispatcher->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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 /usr/www/users/onmde/www.onm.de/releases/7/public/typo3/sysext/frontend/Classes/Http/Application.php line 69
        // Create new request object having applicationType "I am a frontend request" attribute.
        $request = $request->withAttribute('applicationType', SystemEnvironmentBuilder::REQUESTTYPE_FE);

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

    /**
     * Check if LocalConfiguration.php and PackageStates.php exist
at TYPO3\CMS\Frontend\Http\Application->handle(object(TYPO3\CMS\Core\Http\ServerRequest))
in /usr/www/users/onmde/www.onm.de/releases/7/public/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 /usr/www/users/onmde/www.onm.de/releases/7/public/index.php line 54
// Set up the application for the frontend
call_user_func(function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});
at {closure}()
in /usr/www/users/onmde/www.onm.de/releases/7/public/index.php line 55
call_user_func(function () {
    $classLoader = require dirname(__DIR__).'/vendor/autoload.php';
    \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::run(0, \TYPO3\CMS\Core\Core\SystemEnvironmentBuilder::REQUESTTYPE_FE);
    \TYPO3\CMS\Core\Core\Bootstrap::init($classLoader)->get(\TYPO3\CMS\Frontend\Http\Application::class)->run();
});